.find-2025-section {
    padding: 60px 20px;
    background: #fff;
    display: flex;
    justify-content: center;
    font-family: sans-serif;
    box-sizing: border-box;
}

.find-2025-section * {
    box-sizing: border-box;
}

.find-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.find-text-col {
    flex: 1;
}

.find-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.find-title {
    font-family: "Times New Roman", Times, serif;
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 30px;
    color: #000;
    line-height: 1.2;
}

.find-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.find-list li {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.find-list li strong {
    font-size: 17px;
    color: #000;
    font-weight: 700;
    display: inline;
}

.find-video-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.find-video {
    width: 100%;
    max-width: 400px;
    height: 500px;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

@media (max-width: 900px) {
    .find-2025-section {
        padding: 30px 20px 0 20px;
    }

    .find-container {
        flex-direction: column;
        gap: 30px;
    }

    .find-text-col {
        order: 2;
    }

    .find-video-col {
        order: 1;
        width: 100%;
    }

    .find-video {
        max-width: 100%;
    }

    .find-title {
        font-size: 32px;
    }
}