/* Highlight Section */
.highlight-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.highlight-container {
    background-color: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
}

.highlight-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 350px;
}

.highlight-image-box {
    flex: 1;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-image: url('../../assets/owner_portrait.png');
    /* Placeholder reference */
    min-width: 350px;
}

/* Headline & Subtext styles */
.highlight-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Button override if needed */
.highlight-content .btn-cta {
    align-self: flex-start;
}

/* Variants */
.highlight_default .highlight-container {
    flex-direction: row;
}

.highlight_mirror .highlight-container {
    flex-direction: row-reverse;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .highlight-container {
        flex-direction: column !important;
        border-radius: 20px;
    }

    .highlight-content {
        padding: 40px 30px;
        order: 2;
        /* Text below image on mobile */
    }

    .highlight-image-box {
        min-height: 400px;
        order: 1;
    }

    .highlight-content h2 {
        font-size: 2.2rem;
    }
}