/* Reusable css */
.section-common {
    padding: 10rem 0;
}

.section-content {
    display: flex;
    flex-wrap: wrap;
    gap: 6.6rem;
}

.section-left {
    width: calc(50% - 3.3rem);
}

.section-right {
    width: calc(50% - 3.3rem);
}

.section-content-header h3 {
    color: var(--primary-color);
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    font-weight: 600;
    line-height: 2.2rem;
    margin-bottom: 1.9rem;
}

.section-content-header h2 {
    font-size: clamp(3rem, 3vw, 3.6rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--light);
    margin-bottom: 2.5rem;
}

.section-content-desc {
    font-size: clamp(1.3rem, 1.8vw, 1.6rem);
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF99;
}

.quote-text {
    padding: 0.5rem 1.2rem;
    margin: 3.3rem 0;
    border-left: 0.2rem solid var(--primary-color);
    font-size: clamp(1.5rem, 1.8vw, 2rem);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.section-right {
    position: relative;
}

.section-right img {
    border-radius: 1rem;
}

.image-overlay {
    position: absolute;
    inset: auto 2.8rem 2.8rem 2.8rem;
    border-radius: 1.2rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.80);
    padding: 1.4rem 2.4rem;

    h4 {
        color: rgba(255, 255, 255, 0.50);
        font-size: clamp(1rem, 1vw, 1.3rem);
        font-weight: 700;
        line-height: 1.5;
        letter-spacing: 0.22rem;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }

    p {
        font-size: clamp(1.3rem, 1.8vw, 1.6rem);
        font-weight: 400;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.8);
    }
}

@media(max-width: 1300px) {
    .section-common {
        padding: 5rem 2rem;
    }
}

@media(max-width: 991px) {

    .section-content {
        justify-content: center;
        gap: 3rem;
    }

    .section-left {
        width: 100%;
    }

    .section-right {
        width: 100%;
    }
}

/* Buyers Guide Intro */
.buyers-guide-intro {
    background: #060606;
}

.buyers-guide-intro .section-content {
    align-items: center;
}

.intro-right-quote {
    padding-left: 1.8rem;
    border-left: 0.2rem solid var(--primary-color);
}

.intro-right-quote p {
    color: #FFFFFFA6;
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    font-weight: 400;
    line-height: 1.6;
}

.buyers-guide-cta-btn-group {
    margin-top: 3.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.2rem;
}

.btn-outline-faded {
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    color: var(--light);
    border: 0.1rem solid rgba(255, 255, 255, 0.15);
    padding: 1.4rem 2.8rem;
    border-radius: 5rem;
}

.btn-outline-faded:hover {
    color: var(--light);
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
}

.buyers-guide-cta .cta-image {
    border-radius: 1.6rem;
    width: 100%;
    object-fit: cover;
}