/* Buttons */
.buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid #fff;
    line-height: 1.5;
    letter-spacing: 1.65px;
    transition: all 0.2s ease;
}

.buy-btn-filled,
.buy-btn-outline:hover {
    background: #fff;
    color: var(--active);
    text-decoration: none;
}

.buy-btn-outline,
.buy-btn-filled:hover {
    background: transparent;
    color: #fff;
    text-decoration: none;
}

.buy-btn-active {
    background: var(--active);
    border-color: var(--active);
    color: #fff;
    text-decoration: none;
}

.buy-btn-active:hover {
    background: transparent;
    color: var(--active);
    text-decoration: none;
}

/* Hero Section */
.buy-hero {
    position: relative;
    background-color: var(--active);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 56px 0;
    color: #fff;
}

.buy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #0E143E 0%, #0E143EE6 40%, #0E143E40 100%);
}

.buy-hero .container {
    position: relative;
}

.buy-hero-title {
    font-size: 3.4rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.buy-hero-intro {
    max-width: 490px;
    margin-bottom: 32px;
    color: #FFFFFFBF;
}

.buy-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Features Section */
.buy-features {
    background: #fff;
    padding: 88px 0;
}

.buy-features-heading {
    font-size: 2.4rem;
    line-height: 1.45;
    margin-bottom: 56px;
    color: var(--active);
}

.buy-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--border_gray);
}

.buy-feature {
    background: #fff;
    padding: 48px;
}

.buy-feature-icon {
    margin-bottom: 20px;
}

.buy-feature-title {
    margin-bottom: 20px;
    color: var(--active);
}

.buy-feature-body {
    margin-bottom: 0;
    color: var(--gray);
}

/* Viewings Section */
.buy-viewings {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.buy-viewings-photo {
    position: relative;
    overflow: hidden;
}

.buy-viewings-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.buy-viewings-panel {
    background: var(--active);
    padding: 80px 64px;
    color: #fff;
}

.buy-viewings-eyebrow {
    margin-bottom: 16px;
    letter-spacing: 2.5px;
    color: #FFFFFF80;
}

.buy-viewings-heading {
    font-size: 2.4rem;
    line-height: 1.45;
    margin-bottom: 24px;
}

.buy-viewings-body {
    margin-bottom: 20px;
    color: #FFFFFFBF;
}

.buy-viewings-hours {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0 0;
    padding-top: 32px;
    border-top: 1px solid #FFFFFF40;
}

.buy-viewings-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.buy-viewings-hours dt,
.buy-viewings-hours-closed {
    font-weight: 400;
    color: #FFFFFF80;
}

.buy-viewings-hours dd {
    margin-bottom: 0;
    text-align: right;
}

.buy-viewings-address {
    margin: 20px 0 32px;
    font-style: normal;
    color: #FFFFFF80;
}

/* Bidding Steps Section */
.buy-steps {
    background: var(--light);
    padding: 88px 0;
}

.buy-steps-eyebrow {
    margin-bottom: 16px;
    letter-spacing: 2.5px;
    color: #0E143E80;
}

.buy-steps-heading {
    font-size: 2.4rem;
    line-height: 1.45;
    margin-bottom: 56px;
    color: var(--active);
}

.buy-steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.buy-step {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px;
}

.buy-step:nth-child(even) .buy-step-photo {
    order: 2;
}

.buy-step-photo {
    position: relative;
    overflow: hidden;
}

.buy-step-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.buy-step-panel {
    background: #fff;
    padding: 40px;
}

.buy-step-number {
    margin-bottom: 8px;
    letter-spacing: 2.5px;
}

.buy-step-title {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    color: var(--active);
}

.buy-step-body {
    margin-bottom: 0;
    color: var(--gray);
}

.buy-steps-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border_gray);
}

.buy-steps-cta-text {
    max-width: 384px;
    margin-bottom: 0;
    color: var(--gray);
}

/* Reviews Section */
.buy-reviews {
    background: var(--flat);
    padding: 88px 0;
}

.buy-reviews-heading {
    font-size: 2.4rem;
    line-height: 1.5;
    max-width: 480px;
    margin: 0 auto 56px;
    color: var(--active);
}

.buy-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.buy-review {
    display: flex;
    flex-direction: column;
    background: #fff;
    margin-bottom: 0;
    padding: 33px;
}

.buy-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
}

.buy-review-quote {
    flex: 1;
    margin-bottom: 20px;
    color: var(--gray);
}

.buy-review-author {
    padding-top: 20px;
    border-top: 1px solid var(--border_gray);
    color: var(--text);
}

.buy-review-source {
    margin-top: 4px;
}

/* FAQ Section */
.buy-faqs {
    background: #fff;
    padding: 88px 0;
}

.buy-faqs-heading {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom: 56px;
    color: var(--active);
}

.buy-faqs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.buy-faq {
    background: var(--flat);
}

.buy-faq-question {
    position: relative;
    padding: 20px 64px 20px 24px;
    cursor: pointer;
    color: var(--active);
}

.buy-faq-question::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    width: 21px;
    height: 21px;
    border: 1px solid currentColor;
    border-radius: 50%;
    background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
    background-size: 9px 1px, 1px 9px;
    background-position: center;
    background-repeat: no-repeat;
    color: #adb5bd;
    transform: translateY(-50%);
    transition: transform 0.3s ease, color 0.3s ease;
}

.buy-faq-question[aria-expanded="true"]::after {
    color: var(--active);
    transform: translateY(-50%) rotate(45deg);
}

.buy-faq-answer {
    padding: 0 24px 20px;
    color: var(--gray);
}

.buy-faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    /* Page gutters */
    .buy-hero .container,
    .buy-features .container,
    .buy-steps .container,
    .buy-reviews .container,
    .buy-faqs .container {
        padding-right: 24px;
        padding-left: 24px;
    }

    /* Hero Section */
    .buy-hero.no_banner_container {
        margin-top: 0 !important;
    }

    .buy-hero {
        background-position: right center;
    }

    .buy-hero-title {
        font-size: 2.15rem;
        margin-bottom: 16px;
    }

    .buy-hero-intro {
        margin-bottom: 28px;
    }

    /* Features Section */
    .buy-features {
        padding: 56px 0;
    }

    .buy-features-heading {
        font-size: 1.9rem;
        margin-bottom: 40px;
    }

    .buy-features-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .buy-feature {
        padding: 28px;
    }

    /* Viewings Section */
    .buy-viewings {
        grid-template-columns: minmax(0, 1fr);
    }

    .buy-viewings-photo {
        height: 240px;
    }

    .buy-viewings-panel {
        padding: 40px 24px;
    }

    .buy-viewings-heading {
        font-size: 1.9rem;
    }

    /* Bidding Steps Section */
    .buy-steps {
        padding: 56px 0;
    }

    .buy-steps-heading {
        font-size: 1.9rem;
        margin-bottom: 40px;
    }

    .buy-steps-list {
        gap: 24px;
    }

    .buy-step {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .buy-step:nth-child(even) .buy-step-photo {
        order: 0;
    }

    .buy-step-photo {
        height: 208px;
    }

    .buy-step-panel {
        padding: 32px 24px;
    }

    .buy-steps-cta {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 32px;
        padding-top: 32px;
    }

    /* Reviews Section */
    .buy-reviews {
        padding: 56px 0;
    }

    .buy-reviews-heading {
        font-size: 1.9rem;
        max-width: 346px;
        margin-bottom: 40px;
    }

    .buy-reviews-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    /* FAQ Section */
    .buy-faqs {
        padding: 56px 0;
    }

    .buy-faqs-heading {
        font-size: 1.9rem;
        margin-bottom: 40px;
    }
}
