/* ── CONTENT ── */
.content {
    max-width: 620px;
    margin: 0 auto;
    padding: 20px 40px 80px;
    text-align: center;
}

.section-block {
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(28px);
}

.section-block h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(22px, 4vw, 28px);
    color: var(--dark);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.section-block p {
    font-size: 15.5px;
    line-height: 1.78;
    color: var(--mid);
    font-weight: 300;
    margin-bottom: 14px;
}

.career-para p a{
    color: #1a1a18;
    transition: all 0.3s ease;
}

.career-para p a:hover{
    color: #2dba7e;
}

/* real estate */

.real-estate-header{
    display: flex;
    gap: 20px;
    align-items: center;
}

.real-estate-header .dot{
    width: 6px;
    height: 6px;
    background-color: black;
    border-radius: 50%;
}

.real-estate-header .vertical-line{
    width: 6px;
    height: 45px;
    background-color: #eeeeee;
    border-radius: 8px;
}

.real-estate-header h3{
    font-size: 24px;
    font-weight: 600;
    color: #333;
    padding-top: 8px;
}

.real-estate-para p{
    font-size: 20px;
    color: #201f1f;
    font-weight: 300;
    line-height: 26px;
    padding: 15px 0px 0px 25px;
}

.real-estate-image img{
    width: 100%;
    height: auto;
}

.real-estate-content {
    max-width: 100%;
}

/* Force all inner elements to behave */
.real-estate-content * {
    max-width: 100% !important;
    box-sizing: border-box;
}

/* Images fix */
.real-estate-content img {
    width: 100% !important;
    height: auto !important;
    display: block;
}

/* Text styling */
.real-estate-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #201f1f;
}

/* Headings */
.real-estate-content h1,
.real-estate-content h2,
.real-estate-content h3 {
    font-size: 22px;
    line-height: 1.4;
}

.real-estate-content .row {
    display: flex !important;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* Desktop layout: text left, image right */
.real-estate-content .col-lg-8 {
    flex: 0 0 66.666% !important;
    max-width: 66.666% !important;
}

.real-estate-content .col-lg-4 {
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
}

/* Kill Summernote inline width chaos */
.real-estate-content [style*="width: 760px"],
.real-estate-content [style*="width: 380px"] {
    width: auto !important;
}

/* Image safety */
.real-estate-content img {
    width: 100% !important;
    height: auto !important;
    display: block;
}

@media (max-width: 768px) {

    .real-estate-content .row {
        flex-direction: column !important;
    }

    .real-estate-content .col-lg-8,
    .real-estate-content .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* ─── MOBILE (≤ 576px) ───────────────────────────────────────────── */
@media (max-width: 576px) {

    .engage-para br {
        display: none;
    }

    .real-estate-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .real-estate-content h1,
    .real-estate-content h2,
    .real-estate-content h3 {
        font-size: 18px;
    }

    .card-back span:nth-child(1){
        font-size: 10px !important;
    }

}