/* Buy Or Rent CTA - Product Page (1440px baseline) */

.buy-rent-cta-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 4.444vw 0; /* 64px / 1440 */
    display: flex;
    justify-content: center;
}

.buy-rent-cta-container {
    width: 100%;
    /* Alignment: 22px margins to match Hero = 1.528vw */
    padding: 0 1.528vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT CONTENT */
.cta-text-content {
    max-width: 44.444vw; /* 640px / 1440 */
}

.cta-text-content h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.667vw; /* 24px / 1440 */
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    margin: 0 0 1.042vw 0; /* 15px gap below */
}

.cta-text-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.111vw; /* 16px / 1440 */
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    margin: 0;
}

/* RIGHT BUTTONS */
.cta-buttons-wrap {
    display: flex;
    gap: 0.833vw; /* 12px / 1440 */
    align-items: center;
}

.cta-btn {
    width: 15.486vw; /* 223px / 1440 */
    height: 2.917vw; /* 42px / 1440 */
    border-radius: 0.278vw; /* 4px / 1440 */
    font-family: 'Open Sans', sans-serif;
    font-size: 1.111vw; /* 16px / 1440 */
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cta-btn-buy {
    background-color: #CC4443;
    color: #FFFFFF;
    border: 1px solid #CC4443;
}

.cta-btn-buy:hover {
    background-color: #b33231;
    border-color: #b33231;
}

.cta-btn-rent {
    background-color: transparent;
    color: #D3423D;
    border: 1px solid #D3423D;
}

.cta-btn-rent:hover {
    background-color: rgba(211, 66, 61, 0.05);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .buy-rent-cta-container { flex-direction: column; align-items: center; text-align: center; gap: 40px; padding: 0 5%; }
    .cta-text-content { max-width: 100%; }
    .cta-text-content h2 { font-size: 22px; }
    .cta-text-content p { font-size: 16px; }
    .cta-buttons-wrap { flex-direction: column; width: 100%; }
    .cta-btn { width: 100%; height: 50px; font-size: 16px; border-radius: 4px; }
}
