/* ─── Image wrappers ──────────────────────────────────────── */
.shnc-img-wrap {
    overflow: hidden;
    border-radius: 10px;
    min-height: 280px;
    height: 100%;
}
.shnc-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── Section eyebrow labels ──────────────────────────────── */
.shnc-eyebrow {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #c19b76;
    margin-bottom: 14px;
}
.shnc-eyebrow--sm { margin-bottom: 12px; }

/* ─── Dark section text ───────────────────────────────────── */
.shnc-dark-lead {
    color: rgba(245,236,224,.78);
    max-width: 780px;
    margin-bottom: 6px;
}
.shnc-dark-lead--narrow {
    color: rgba(245,236,224,.78);
    max-width: 720px;
    margin-bottom: 0;
}
.shnc-dark-sub  { color: rgba(245,236,224,.6);  margin-bottom: 0; }
.shnc-dark-note { color: rgba(245,236,224,.72); margin: 28px 0 32px; }

/* ─── Dark blocks grid (What to Look For section) ────────── */
.le-block h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 8px 0 6px;
}
.le-dark-section--what-to-look::before {
    background-image: url('/images/venta-de-quinta-en-morelos/quinta-de-noche.jpg');
    background-position: center 50%;
}
.le-dark-block {
    border: 1px solid rgba(193,155,118,.22);
    border-radius: 12px;
    padding: 20px 18px;
    background: rgba(255,255,255,.04);
    transition: border-color .2s ease, background .2s ease;
}
.le-dark-block:hover {
    border-color: rgba(193,155,118,.5);
    background: rgba(193,155,118,.07);
}
.le-dark-block-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
    color: #c19b76;
}
.le-dark-block h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f5ece0;
    margin: 0 0 8px;
}
.le-dark-block span {
    font-family: 'Jost', sans-serif;
    font-size: .85rem;
    color: rgba(245,236,224,.7);
    line-height: 1.55;
}

/* ─── Fit grid + items (Is Quinta JR right for you?) ─────── */
.le-fit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 28px 0 36px;
}
.le-fit-item {
    border: 1px solid rgba(193,155,118,.22);
    border-radius: 12px;
    padding: 20px 14px;
    text-align: center;
    background: rgba(255,255,255,.04);
    transition: border-color .2s ease, background .2s ease;
}
.le-fit-item:hover {
    border-color: rgba(193,155,118,.5);
    background: rgba(193,155,118,.07);
}
.le-fit-item i {
    font-size: 1.4rem;
    color: #c19b76;
    display: block;
    margin-bottom: 10px;
}
.le-fit-item span {
    font-family: 'Jost', sans-serif;
    font-size: .83rem;
    color: rgba(245,236,224,.78);
    line-height: 1.45;
}

/* ─── Price block ─────────────────────────────────────────── */
.le-fit-price {
    border-left: 4px solid #c19b76;
    padding: 22px 32px;
    margin: 0 0 32px;
    background: rgba(193,155,118,.08);
    border-radius: 0 12px 12px 0;
}
.le-fit-price-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #c19b76;
    margin: 0 0 8px;
    display: block;
}
.le-fit-price-amount {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #f5ece0;
    margin: 0 0 6px;
    line-height: 1.05;
}
.le-fit-price-amount sup {
    font-size: 1rem;
    font-weight: 400;
    color: #c19b76;
    vertical-align: super;
    margin-left: 4px;
}
.le-fit-price-note {
    font-family: 'Jost', sans-serif;
    font-size: .84rem;
    font-weight: 300;
    color: rgba(245,236,224,.5);
    margin: 0;
}

/* ─── FAQ accordion ───────────────────────────────────────── */
.blog-faq details {
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
    background: #fff;
    cursor: pointer;
}
.blog-faq summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: block;
    position: relative;
    padding-right: 28px;
}
.blog-faq summary::after {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    transition: transform .2s ease;
}
.blog-faq details[open] summary::after {
    transform: translateY(-35%) rotate(-135deg);
}
.blog-faq summary::-webkit-details-marker { display: none; }
.blog-faq p,
.blog-faq ul {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: .93rem;
    color: #555;
    line-height: 1.7;
}
.blog-faq a       { color: #c19b76; }
.blog-faq a:hover { color: #a8845f; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 767px) {
    .le-fit-grid { grid-template-columns: repeat(2, 1fr); }
}
