/* =====================================================================
   BOOKING PAGE — Brand colors, readable text, styled inputs
   ===================================================================== */
.content strong,.service-details strong,.box strong {color: #43403b;}
.booking-page-vars { --x: 0; } /* noop anchor */
.booking-hero, .booking-section, .booking-form-box, .booking-info-box {
    --ink: #2b2016;
    --muted: #6f665c;
    --line: #eee5da;
    --cream: #faf7f2;
    --accent: var(--secondary-color, #FF8C00);
    --primary: var(--primary-color, #8B4513);
    --input-bg: #f5f0e8;
}

/* ── Hero: cream dotted pattern matching contact/blog ──────────── */
.booking-hero {
    background-color: var(--cream);
    background-image: radial-gradient(#e7ddd1 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    padding: 72px 0 52px;
}
.booking-hero__eyebrow {
    font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
    font-weight: 700; color: var(--accent); margin-bottom: 14px;
}
.booking-hero__title {
    font-family: 'Playfair Display', Georgia, serif; font-weight: 700;
    font-size: clamp(2.1rem, 4vw, 3.2rem); line-height: 1.15;
    color: var(--ink); margin-bottom: 12px;
}
.booking-hero__sub {
    color: var(--muted); font-size: 1.1rem;
}

/* ── Booking section spacing ───────────────────────────────────── */
.booking-section {
    padding-top: 48px;
    padding-bottom: 64px;
}

/* =====================================================================
   BOOKING PAGE BODY — brand overrides for the Bulma/FullCalendar
   elements actually used by booking/create.blade.php (no blade edits)
   ===================================================================== */
.booking-section { color: #43403b; }

/* ── Headings, labels, icons: dark & readable ────────────────────── */
.booking-section .title,
.booking-section .subtitle { color: #2b2016; }
.booking-section .label { color: #2b2016; font-weight: 600; font-size: .95rem;padding-top: 15px; }
.booking-section .label .icon,
.booking-section .icon.has-text-primary,
.booking-section .has-text-primary { color: var(--secondary-color, #FF8C00) !important; }

/* ── Inputs: cream background, sharp border, dark text (kills black) ── */
.booking-section .input,
.booking-section .textarea,
.booking-section .select select {
    background-color: #f5f0e8 !important;
    border: 1px solid #e0d6c9 !important;
    color: #2b2016 !important;
    border-radius: 6px;
    font-size: .95rem;
    padding: 12px 14px;
    height: auto;
    box-shadow: none;
}
.booking-section .input:focus,
.booking-section .textarea:focus,
.booking-section .select select:focus {
    border-color: var(--secondary-color, #FF8C00) !important;
    box-shadow: 0 0 0 3px rgba(255,140,0,.12) !important;
    outline: none;
}
.booking-section .input::placeholder,
.booking-section .textarea::placeholder { color: #a89f94; }
.booking-section .select:not(.is-multiple):not(.is-loading)::after { border-color: var(--secondary-color, #FF8C00); }

/* ── Muted copy & help text ──────────────────────────────────────── */
.booking-section .help { color: #8a8177; }
.booking-section .has-text-grey { color: #6f665c !important; }
.booking-section .content, .booking-section .content li { color: #43403b; font-size: var(--bulma-size-normal); }
.booking-section hr { background-color: #eee5da; }

/* ── Links: brand orange instead of green/teal ───────────────────── */
.booking-section .content a,
.booking-section a.has-text-primary,
.booking-section .menu-list a { color: var(--secondary-color, #FF8C00); }
.booking-section .content a:hover,
.booking-section a.has-text-primary:hover { color: var(--primary-color, #8B4513); text-decoration: underline; }

/* ── Buttons: brown primary, readable disabled state ─────────────── */
.booking-section .button.is-primary {
    background-color: var(--primary-color, #8B4513);
    border-color: var(--primary-color, #8B4513);
    color: #fff; font-weight: 700;
}
.booking-section .button.is-primary:hover:not([disabled]) {
    background-color: var(--secondary-color, #FF8C00);
    border-color: var(--secondary-color, #FF8C00);
    color: #fff; transform: translateY(-1px);
}
.booking-section .button.is-primary[disabled] {
    background-color: #e7dfd4; border-color: #e7dfd4;
    color: #8a8177; box-shadow: none;
}

/* ── Sidebar boxes ───────────────────────────────────────────────── */
.booking-section .box {
    background: #fff; border: 1px solid #eee5da; border-radius: 12px;
    padding: 30px 15px;
    box-shadow: 0 4px 16px rgba(43,32,22,.06);
}
.booking-section .box .title { color: #2b2016; }

/* ── Notifications: warm tones ───────────────────────────────────── */
.booking-section .notification.is-info { background-color: #faf7f2; color: #43403b; }
.booking-section .notification.is-warning { background-color: #fff8e6; color: #6b5200; }
/* ── Persistent Working Hours card ─────────────────────────────────
   Deliberately NOT a .notification, so the layout's 5s auto-dismiss
   script (which targets .notification) never removes it. */
.booking-hours {
    background: #faf7f2;
    border: 1px solid #eee5da;
    border-left: 4px solid var(--secondary-color, #FF8C00);
    border-radius: 8px;
    padding: 14px 18px;
    color: #43403b;
    font-size: .92rem;
    line-height: 1.6;
}
.booking-hours .fas { color: var(--secondary-color, #FF8C00); }
.booking-hours strong { color: #2b2016; }
/* ── FullCalendar: brand skin ────────────────────────────────────── */
.booking-section .fc {
    --fc-border-color: #e0d6c9;
    --fc-today-bg-color: #faf3e6;
    --fc-button-bg-color: #8B4513;
    --fc-button-border-color: #8B4513;
    --fc-button-hover-bg-color: #FF8C00;
    --fc-button-hover-border-color: #FF8C00;
    --fc-button-active-bg-color: #6d360f;
}
.booking-section .fc .fc-toolbar-title { font-family: 'Playfair Display', Georgia, serif; color: #2b2016; }
.booking-section .fc .fc-col-header-cell-cushion { color: #8B4513; font-weight: 700; }
.booking-section .fc .fc-daygrid-day-number { color: #6f665c; }
.booking-section .fc .fc-button-primary { color: #fff; text-transform: capitalize; }

/* ── Time slots: cream chips, brown when selected ────────────────── */
.booking-section .time-slot { background: #f5f0e8 !important; border: 1px solid #e0d6c9; color: #2b2016 !important; }
.booking-section .time-slot:hover { border-color: var(--secondary-color, #FF8C00); }
.booking-section .tag.is-success,
.booking-section .time-slot.is-success {
    background-color: var(--primary-color, #8B4513) !important;
    border-color: var(--primary-color, #8B4513) !important;
    color: #fff !important;
}
.booking-section .tag.is-light { background-color: #f5f0e8; color: #6f665c; }
.booking-section .tag.is-info { background-color: #faf7f2; color: #6f665c; }
/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .booking-hero {
        padding: 56px 20px 40px;
    }
    .booking-form-box,
    .booking-info-box {
        padding: 24px;
    }
}
/* =====================================================================
   ARTICLE DETAIL PAGE
   ===================================================================== */
.article-page { --ink:#2b2016; --muted:#8a8177; --line:#eee5da; --cream:#faf7f2; }

/* ── Split header: title left, photo right ─────────────────────────── */
.article-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.article-hero__left {
    background-color: var(--cream);
    background-image: radial-gradient(#e7ddd1 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    display: flex; align-items: center;
    padding: 56px 48px;
}
.article-hero__inner { max-width: 620px; }
.article-hero__edit { margin-bottom: 14px; }
.article-hero__edit a { font-size: .8rem; font-weight: 700; color: var(--secondary-color, #FF8C00); }
.article-hero__eyebrow {
    font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
    font-weight: 700; color: var(--primary-color, #8B4513); margin-bottom: 14px;
}
.article-hero__cats { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.article-hero__cats a { color: var(--primary-color, #8B4513); text-decoration: underline; }
.article-hero__cats a:hover { color: var(--secondary-color, #FF8C00); }
.article-hero__title {
    font-family: 'Playfair Display', Georgia, serif; font-weight: 700;
    font-size: clamp(2.1rem, 3.6vw, 3.3rem); line-height: 1.15;
    color: var(--ink); margin-bottom: 20px;
}
.article-hero__excerpt { font-size: 1.1rem; color: #6f665c; line-height: 1.7; margin-bottom: 22px; }
.article-hero__meta { color: var(--muted); font-size: .92rem; }
.article-hero__right { position: relative; overflow: hidden; }
.article-hero__right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ── Share bar ─────────────────────────────────────────────────────── */
.article-sharebar { background: #fff; border-bottom: 1px solid var(--line); padding: 16px 0; }
.article-sharebar__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.article-share { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.article-share__label { font-weight: 700; color: var(--ink); margin-right: 4px; }
.share-btn {
    width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: .9rem; transition: transform .15s ease, box-shadow .15s ease;
}
.share-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,.2); color: #fff; }
.share-btn--fb { background: #1877f2; }
.share-btn--x  { background: #0f1419; }
.share-btn--li { background: #0a66c2; }
.share-btn--wa { background: #25d366; }
.article-print {
    background: var(--primary-color, #8B4513); color: #fff; border: none;
    padding: 10px 22px; border-radius: 999px; font-weight: 700; cursor: pointer;
    transition: background .15s ease;
}
.article-print:hover { background: var(--secondary-color, #FF8C00); }

/* ── Body typography ───────────────────────────────────────────────── */
.article-body { max-width: 760px; font-size: 1.08rem; line-height: 1.9; color: #43403b; }
.article-body h2, .article-body h3 {
    font-family: 'Playfair Display', Georgia, serif; color: var(--ink); margin: 1.6em 0 .6em;
}
.article-body a {
    color: var(--secondary-color, #FF8C00); font-weight: 600; text-decoration: none;
    border-bottom: 2px solid rgba(255,140,0,.25);
}
.article-body a:hover { border-bottom-color: var(--secondary-color, #FF8C00); }
.article-body img { border-radius: 8px; max-width: 100%; height: auto; }
.article-body blockquote {
    border-left: 4px solid var(--secondary-color, #FF8C00); background: var(--cream);
    padding: 14px 22px; margin: 1.6em 0; font-style: italic; color: #5c554c; border-radius: 0 8px 8px 0;
}
.article-body table { width: 100%; border-collapse: collapse; margin: 1.6em 0; }
.article-body th, .article-body td { border: 1px solid #e7ddd1; padding: 10px 14px; }
.article-body th { background: var(--cream); }

/* ── Tag pills ─────────────────────────────────────────────────────── */
.tag-pill {
    display: inline-block; margin: 0 6px 8px 0; padding: 6px 13px; border-radius: 999px;
    background: var(--cream); border: 1px solid #eadfd2; color: var(--primary-color, #8B4513);
    font-size: .8rem; font-weight: 600; transition: all .15s ease;
}
.tag-pill:hover { background: var(--secondary-color, #FF8C00); border-color: var(--secondary-color, #FF8C00); color: #fff; }

/* ── CTA — cream background, dark text, sharp button ───────────────── */
.article-cta {
    margin: 48px 0 0; padding: 38px 30px; text-align: center;
    background: var(--cream); border: 1px solid var(--line); border-radius: 12px;
}
.article-cta h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.7rem; color: var(--ink); margin-bottom: 10px; }
.article-cta p { color: #6f665c; max-width: 560px; margin: 0 auto 22px; }
.article-cta__btn {
    display: inline-block; background: var(--primary-color, #8B4513); color: #fff;
    font-weight: 800; padding: 13px 28px; border-radius: 6px; letter-spacing: .02em;
    box-shadow: 0 6px 18px rgba(139,69,19,.3); transition: all .15s ease;
}
.article-cta__btn:hover { background: var(--secondary-color, #FF8C00); color: #fff; transform: translateY(-2px); }

/* ── Related grid: equal-height cards (thumb → meta line → title) ──── */
.related-section { margin-top: 64px; }
.related-section__title {
    font-family: 'Playfair Display', Georgia, serif; font-size: 1.8rem; color: var(--ink);
    padding-bottom: 12px; margin-bottom: 26px; border-bottom: 1px solid var(--line); position: relative;
}
.related-section__title::after {
    content: ''; position: absolute; left: 0; bottom: -1px; width: 56px; height: 3px;
    background: var(--secondary-color, #FF8C00);
}
.related-card {
    display: flex; flex-direction: column; height: 100%;
    background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(43,32,22,.12); }
.related-card__media { display: block; aspect-ratio: 16 / 9; background: linear-gradient(135deg, #8b4513, #ff8c00); }
.related-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.related-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.85); font-size: 2rem; }
.related-card__body { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 22px; }
.related-card__meta { color: var(--muted); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.related-card__title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.12rem; line-height: 1.4; color: var(--ink); font-weight: 700; }
.related-card:hover .related-card__title { color: var(--secondary-color, #FF8C00); }

/* ── Sidebar ───────────────────────────────────────────────────────── */
.sidebar-box { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 22px; margin-bottom: 26px; }
.sidebar-box__title {
    font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; color: var(--ink);
    padding-bottom: 12px; margin-bottom: 16px; border-bottom: 1px solid var(--line); position: relative;
}
.sidebar-box__title::after {
    content: ''; position: absolute; left: 0; bottom: -1px; width: 46px; height: 3px;
    background: var(--secondary-color, #FF8C00);
}
.recent-list { display: flex; flex-direction: column; gap: 12px; }
.recent-item {
    position: relative; display: flex; height: 96px; border-radius: 8px; overflow: hidden;
    background: #fff; border: 1px solid var(--line);
}
.recent-item__media { flex: 0 0 108px; }
.recent-item__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.recent-item__body { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 10px 14px; }
.recent-item__title {
    font-weight: 700; color: var(--ink); font-size: .92rem; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.recent-item__date { color: var(--muted); font-size: .75rem; }
.recent-item:hover .recent-item__title { color: var(--secondary-color, #FF8C00); }
.recent-item--overlay { background: linear-gradient(135deg, #8b4513 0%, #b0662a 55%, #ff8c00 130%); border: none; }
.recent-item--overlay .recent-item__body {
    position: absolute; inset: 0; justify-content: flex-end; padding: 12px 14px;
    background: linear-gradient(to top, rgba(43,32,22,.78), rgba(43,32,22,.05) 75%);
}
.recent-item--overlay .recent-item__title { color: #fff; }
.recent-item--overlay .recent-item__date { color: rgba(255,255,255,.85); }

/* ── Responsive: stack header, image below text ────────────────────── */
@media (max-width: 900px) {
    .article-hero { grid-template-columns: 1fr; }
    .article-hero__left { padding: 40px 24px; }
    .article-hero__right { min-height: 300px; }
}
/* ════════════════════════════════════════════════════════════════
   BLOG INDEX — Forefront pattern, Dyna brand palette
   ════════════════════════════════════════════════════════════════ */
.blog-page-vars { --x: 0; } /* noop anchor */
.blog-hero, .blog-featured, .blog-filterbar, .blog-list, .blog-pagination, .blog-cta {
    --ink: #2b2016; --muted: #8a8177; --line: #eee5da; --cream: #faf7f2;
    --accent: var(--secondary-color, #FF8C00); --primary: var(--primary-color, #8B4513);
}

/* Header */
.blog-hero {
    background-color: var(--cream);
    background-image: radial-gradient(#e7ddd1 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    padding: 72px 0 52px;
}
.blog-hero__eyebrow {
    font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
    font-weight: 700; color: var(--accent); margin-bottom: 14px;
}
.blog-hero__title {
    font-family: 'Playfair Display', Georgia, serif; font-weight: 700;
    font-size: clamp(2.1rem, 4vw, 3.2rem); line-height: 1.15; color: var(--ink); margin-bottom: 12px;
}
.blog-hero__sub { color: #6f665c; font-size: 1.1rem; }

/* Featured spotlight */
.blog-featured {
    display: grid; grid-template-columns: 1.15fr 1fr;
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    overflow: hidden; margin-bottom: 34px; box-shadow: 0 10px 30px rgba(43,32,22,.08);
}
.blog-featured__media { display: block; min-height: 320px; position: relative; background: linear-gradient(135deg, #8b4513, #ff8c00); }
.blog-featured__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-featured__placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.85); font-size: 3rem; }
.blog-featured__body { padding: 38px 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured__title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.7rem; line-height: 1.25; color: var(--ink); margin: 8px 0 10px; }
.blog-featured__title a { color: var(--ink); }
.blog-featured__title a:hover { color: var(--accent); }

/* Shared text bits */
.blog-cats { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--accent); }
.blog-cats a { color: var(--accent); }
.blog-cats a:hover { text-decoration: underline; }
.blog-meta { color: var(--muted); font-size: .85rem; margin-bottom: 10px; }
.blog-excerpt { color: #6f665c; line-height: 1.7; margin-bottom: 14px; }
.blog-more { color: var(--primary); font-weight: 700; font-size: .92rem; }
.blog-more:hover { color: var(--accent); }

/* Filter bar */
.blog-filterbar {
    display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
    background: #fff; border: 1px solid var(--line); border-radius: 10px;
    padding: 14px 18px; margin-bottom: 10px;
}
.blog-filterbar__search { flex: 1 1 260px; }
.blog-filterbar__search input {
    width: 100%; border: 1px solid #e0d6c9; border-radius: 6px; padding: 10px 14px; font-size: .95rem;
}
.blog-filterbar__search input:focus { outline: 2px solid rgba(255,140,0,.35); border-color: var(--accent); }
.blog-filterbar__select select {
    border: 1px solid #e0d6c9; border-radius: 6px; padding: 10px 12px; font-size: .9rem; background: #fff; color: var(--ink);
}
.blog-filterbar__meta { color: var(--muted); font-size: .9rem; margin-left: auto; }
.blog-filterbar__meta a { color: var(--accent); font-weight: 600; margin-left: 10px; }

/* Article rows */
.blog-row {
    display: flex; gap: 26px; align-items: flex-start;
    padding: 30px 0; border-bottom: 1px solid var(--line);
}
.blog-row__content { flex: 1; }
.blog-row__title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; line-height: 1.3; color: var(--ink); margin: 8px 0 8px; }
.blog-row__title a { color: var(--ink); }
.blog-row__title a:hover { color: var(--accent); }
.blog-row__thumb { flex: 0 0 190px; }
.blog-row__thumb img { width: 190px; height: 120px; object-fit: cover; border-radius: 8px; display: block; }
.blog-empty { padding: 60px 0; text-align: center; color: var(--muted); }

/* Pagination */
.blog-pagination { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 40px 0 10px; flex-wrap: wrap; }
.blog-pagination__info { color: var(--muted); font-size: .9rem; }
.blog-pagination__links { display: flex; gap: 6px; }
.pg {
    min-width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line); border-radius: 6px; color: var(--ink); font-weight: 600; font-size: .9rem;
    padding: 0 10px; background: #fff;
}
.pg:hover { border-color: var(--accent); color: var(--accent); }
.pg.is-current { background: var(--primary); border-color: var(--primary); color: #fff; }
.pg.is-disabled { opacity: .4; pointer-events: none; }

/* Closing CTA */
.blog-cta {
    margin-top: 56px; padding: 64px 20px;
    background: linear-gradient(135deg, var(--primary-color, #8B4513), var(--secondary-color, #FF8C00));
    color: #fff;
}
.blog-cta h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; color: #fff; margin-bottom: 10px; }
.blog-cta p { opacity: .92; max-width: 560px; margin: 0 auto 24px; }
.blog-cta__btn {
    display: inline-block; background: #fff; color: var(--primary-color, #8B4513);
    font-weight: 800; padding: 13px 28px; border-radius: 6px; box-shadow: 0 6px 18px rgba(0,0,0,.22);
}
.blog-cta__btn:hover { transform: translateY(-2px); color: var(--primary-color, #8B4513); }

/* Responsive */
@media (max-width: 900px) {
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured__media { min-height: 240px; }
    .blog-featured__body { padding: 26px 24px; }
    .blog-row__thumb { display: none; }
}
/* Additional spacing for blog sections */
.blog-hero {
    margin-bottom: 0;
}

.blog-content {
    background-color: #fafafa;
}
/* =====================================================================
   REPAIR BLOCK — restores grid rules lost to comment corruption above
   ===================================================================== */

/* ── Article grid: 3 columns, equal height ─────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 36px; }
.blog-card {
    display: flex; flex-direction: column; height: 100%;
    background: #fff; border: 1px solid #eee5da; border-radius: 10px; overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease; color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(43,32,22,.12); color: inherit; }
.blog-card__media { display: block; aspect-ratio: 16 / 9; position: relative; background: linear-gradient(135deg, #8b4513, #ff8c00); }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.85); font-size: 2rem; }
.blog-card__body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.blog-card__cats { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--secondary-color, #FF8C00); margin-bottom: 8px; }
.blog-card__title {
    font-family: 'Playfair Display', Georgia, serif; font-size: 1.18rem; line-height: 1.35;
    color: #2b2016; font-weight: 700; margin-bottom: 8px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    min-height: calc(2 * 1.35em); /* reserves two lines so all cards align */
}
.blog-card__meta { color: #8a8177; font-size: .8rem; margin-bottom: 10px; }
.blog-card__excerpt {
    color: #6f665c; font-size: .9rem; line-height: 1.6; margin-bottom: 14px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card__more { margin-top: auto; color: var(--primary-color, #8B4513); font-weight: 700; font-size: .9rem; }
.blog-card:hover .blog-card__title, .blog-card:hover .blog-card__more { color: var(--secondary-color, #FF8C00); }

/* ── Category pill super-imposed on photo (bottom-right) ───────────── */
.blog-card__tag {
    position: absolute; bottom: 12px; right: 12px;
    background: linear-gradient(135deg, #8b4513, #ff8c00);
    color: #fff; font-size: .68rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 6px 12px; border-radius: 999px;
    box-shadow: 0 3px 10px rgba(0,0,0,.28);
    max-width: 70%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    transition: transform .15s ease;
}
.blog-card:hover .blog-card__tag { transform: translateY(-2px); }

/* ── Responsive: grid collapses 3 → 2 → 1 ──────────────────────────── */
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; } }

/* ── Responsive restores (also swallowed by the corrupted comments) ── */
@media (max-width: 900px) {
    .article-hero { grid-template-columns: 1fr; }
    .article-hero__left { padding: 40px 24px; }
    .article-hero__right { min-height: 300px; }
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured__media { min-height: 240px; }
    .blog-featured__body { padding: 26px 24px; }
    .blog-row__thumb { display: none; }
}
.blog-card:hover .blog-card__tag { transform: translateY(-2px); }
/* =====================================================================
   DYNA SKIN CARE CLINIC — PRODUCTION STYLE OVERRIDES
   Loaded AFTER the Vite bundles so these rules win the cascade.
   Workflow: edit here → save → bump ?v= in app.blade.php → hard refresh.
   When you later run local Vite builds, fold these into frontend.scss
   and delete the <link> tag.
   ===================================================================== */

:root {
    --footer-bg:      #4a3f35;
    --footer-text:    #e8e2da;
    --footer-muted:   #cfc8bf;
    --footer-heading: #ffffff;
    --footer-accent:  var(--secondary-color, #FF8C00);
    --footer-serif:   'Playfair Display', Georgia, serif;
}
footer.footer {
    margin-top: 0;
}
/* ---- Footer normalisation: footer scheme beats per-block inline styles ---- */
footer .custom-html-section,
footer .section {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    color: var(--footer-text);
}

footer .custom-html-section > .container,
footer .section > .container {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

footer h1, footer h2, footer h3, footer h4,
footer .section-title h2 {
    color: var(--footer-heading);
    font-family: var(--footer-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.4rem;
}

footer p { color: var(--footer-muted); }

footer a { color: var(--footer-text); transition: color .2s ease; }
footer a:hover { color: var(--footer-accent); }

/* Equal-height footer columns so blocks balance */
footer .columns { align-items: stretch; }
footer .column  { display: flex; flex-direction: column; }
footer .column > div { flex: 1; }

/* ---- Component: about block (small logo left + brief right) ---- */
.footer-about { display: flex; align-items: stretch; gap: 1.25rem; height: 100%; }
.footer-about__logo-wrap { flex: 0 0 96px; display: flex; align-items: flex-start; }
.footer-about__logo {
    width: 96px; height: auto; background: #fff;
    padding: 8px; border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}
.footer-about__brief { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.footer-about__title {
    color: var(--footer-heading); font-family: var(--footer-serif);
    font-size: 1.5rem; margin-bottom: .9rem;
}
.footer-about__text { color: var(--footer-muted); font-size: .95rem; line-height: 1.75; margin-bottom: 1.1rem; }
.footer-about__social { display: flex; gap: .9rem; font-size: 1.15rem; }
.footer-about__social a { color: var(--footer-text); }
.footer-about__social a:hover { color: var(--footer-accent); }

/* ---- Component: quick links ---- */
.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: .85rem; }
.footer-links a { color: var(--footer-text); }
.footer-links a:hover { color: var(--footer-accent); }
.footer-links .fas { color: var(--footer-accent); font-size: .7em; margin-right: .55rem; }

/* ---- Component: contact list ---- */
.footer-contact p { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: 1rem; color: var(--footer-text); }
.footer-contact .fas { color: var(--footer-accent); margin-top: .2rem; }
.footer-contact a { color: var(--footer-text); }
.footer-contact a:hover { color: var(--footer-accent); }

/* ---- CKEditor-authored content rhythm (custom_html blocks) ---- */
.custom-html-section .content { color: inherit; }
.custom-html-section .content p { margin-bottom: .9rem; line-height: 1.7; }
.custom-html-section .content img { border-radius: 6px; height: auto; max-width: 100%; }

/* ---- Contextual edit buttons: keep above content, consistent chrome ---- */
.contextual-edit-btn {
    z-index: 40;
    opacity: .9;
}
.contextual-edit-btn:hover { opacity: 1; }

/* =====================================================================
   APPEND FUTURE OVERRIDES BELOW THIS LINE (then bump ?v=)
   ===================================================================== */