/* =================================
   MRC Home Intro Section
   Background: Light (#f5f4f0)
   ================================= */

.mrc-home-intro {
    background-color: #f5f4f0;
    padding: 100px 0 80px;
    position: relative;
}

/* Angled top overlap */
.mrc-home-intro::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #f5f4f0;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 3;
}

.mrc-home-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 80px;
}

.mrc-home-intro-content {
    flex: 1;
    max-width: 560px;
}

/* Title - red underline */
.mrc-home-intro-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--mrc-dark, #0f1117);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    position: relative;
    padding-bottom: 1.25rem;
}

.mrc-home-intro-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--mrc-red, #d42b2e);
    border-radius: 2px;
}

.mrc-home-intro-text {
    font-family: 'Barlow', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 2rem;
}

/* Button - red */
.mrc-home-intro-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--mrc-red, #d42b2e);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
}

.mrc-home-intro-button:hover {
    background-color: var(--mrc-red-hover, #b82426);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 43, 46, 0.3);
}

/* Image - clean, no decorative borders */
.mrc-home-intro-image {
    flex: 0 1 42%;
    min-width: 340px;
}

.mrc-home-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* =================================
   Tablet
   ================================= */
@media (max-width: 992px) {
    .mrc-home-intro {
        padding: 80px 0 60px;
    }

    .mrc-home-intro::before {
        top: -20px;
        height: 40px;
    }

    .mrc-home-intro-container {
        gap: 50px;
    }

    .mrc-home-intro-title {
        font-size: 2.1rem;
    }

    .mrc-home-intro-image {
        flex: 0 1 45%;
        min-width: 280px;
    }
}

/* =================================
   Mobile
   ================================= */
@media (max-width: 768px) {
    .mrc-home-intro {
        padding: 70px 0 50px;
    }

    .mrc-home-intro::before {
        top: -15px;
        height: 30px;
    }

    .mrc-home-intro-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 1.25rem;
    }

    .mrc-home-intro-content {
        text-align: center;
        max-width: 100%;
    }

    .mrc-home-intro-title {
        font-size: 1.85rem;
    }

    .mrc-home-intro-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .mrc-home-intro-text {
        max-width: 100%;
    }

    .mrc-home-intro-button {
        width: 100%;
        text-align: center;
    }

    .mrc-home-intro-image {
        min-width: 0;
        width: 100%;
    }
}
