/* =========================================================
   Ideazia — Blog Component Styles
   Matches Ideazia's dark/green (home-six home-green) theme
   ========================================================= */

/* ── Page Layout ───────────────────────────────────────── */
.blog-detail-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.blog-detail-main {
    flex: 1;
    min-width: 0;
}

.blog-detail-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}

@media (max-width: 991px) {
    .blog-detail-layout {
        flex-direction: column;
    }
    .blog-detail-sidebar {
        width: 100%;
        position: static;
    }
}

/* ── Blog Section Card ─────────────────────────────────── */
.blog-component-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.blog-component-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
}

.blog-component-body {
    padding: 30px 32px;
}

/* ── Section Heading ───────────────────────────────────── */
.blog-section-heading {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 18px 32px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-bottom: 3px solid var(--color-primary, #4caf50);
}

/* ── Text Component ────────────────────────────────────── */
.blog-text-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    line-height: 1.4;
}

.blog-text-content {
    font-size: 16px;
    color: #4a4a5a;
    line-height: 1.9;
}

.blog-text-content p {
    margin-bottom: 14px;
}

.blog-text-content h2,
.blog-text-content h3,
.blog-text-content h4 {
    color: #1a1a2e;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.blog-text-content ul,
.blog-text-content ol {
    padding-left: 20px;
    margin-bottom: 14px;
}
.blog-text-content ul {
    list-style-type: disc;
}

.blog-text-content ol {
    list-style-type: decimal;
}
.blog-text-content ul li,
.blog-text-content ol li {
    margin-bottom: 6px;
}

.blog-text-content a {
    color: var(--color-primary, #4caf50);
    text-decoration: underline;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 11px 26px;
    background: #1a1a2e;
    color: #ffffff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.25s ease, transform 0.2s ease;
}

.blog-btn:hover {
    background: var(--color-primary, #4caf50);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ── Image Component ───────────────────────────────────── */
.blog-image-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
}

.blog-image-wrap {
    text-align: center;
}

.blog-image-wrap img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.blog-image-caption {
    font-size: 13px;
    color: #888;
    margin-top: 8px;
    font-style: italic;
    text-align: center;
}

/* ── Image + Text Component ────────────────────────────── */
.blog-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.blog-main-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin-bottom: 18px;
}

/* ── Gallery Component ─────────────────────────────────── */
.blog-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    flex: 1 1 auto;
    min-height: 180px;
}

.blog-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-gallery-item:hover img {
    transform: scale(1.05);
}

.blog-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.blog-gallery-item:hover .blog-gallery-overlay {
    opacity: 1;
}

.blog-gallery-overlay i {
    color: #ffffff;
    font-size: 24px;
}

.blog-gallery-caption {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 6px;
    font-style: italic;
}

/* ── Carousel Component (Swiper) ───────────────────────── */
.blog-carousel-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.blog-carousel-wrap .swiper {
    border-radius: 8px;
}

.blog-carousel-wrap .swiper-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.blog-carousel-caption {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

.blog-carousel-wrap .swiper-button-next,
.blog-carousel-wrap .swiper-button-prev {
    color: #ffffff;
    background: rgba(26, 26, 46, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.25s ease;
}

.blog-carousel-wrap .swiper-button-next:hover,
.blog-carousel-wrap .swiper-button-prev:hover {
    background: var(--color-primary, #4caf50);
}

.blog-carousel-wrap .swiper-button-next::after,
.blog-carousel-wrap .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 700;
}

.blog-carousel-wrap .swiper-pagination-bullet {
    background: #cccccc;
    opacity: 1;
}

.blog-carousel-wrap .swiper-pagination-bullet-active {
    background: var(--color-primary, #4caf50);
}

@media (max-width: 768px) {
    .blog-carousel-wrap .swiper-slide img {
        height: 240px;
    }
}

/* ── Video Component ───────────────────────────────────── */
.blog-video-center {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.blog-video-center iframe,
.blog-video-center video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.blog-video-short-con {
    display: flex;
    justify-content: center;
}

.blog-video-short {
    position: relative;
    width: 100%;
    max-width: 340px;
    padding-bottom: min(177.78%, 600px);
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.blog-video-short iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.blog-video-side {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.blog-video-side iframe,
.blog-video-side video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.blog-video-short-side-con {
    display: flex;
    justify-content: center;
    height: 100%;
}

.blog-video-short-side {
    position: relative;
    width: 100%;
    max-width: 260px;
    padding-bottom: min(177.78%, 460px);
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.blog-video-short-side iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Video Gallery Component ───────────────────────────── */
.blog-video-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.blog-vgal-yt-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.blog-vgal-yt-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.blog-vgal-yt-short {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    max-height: 480px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.blog-vgal-yt-short iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.blog-vgal-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.blog-vgal-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Sidebar TOC ───────────────────────────────────────── */
.blog-toc-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.blog-toc-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 16px 22px;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 3px solid var(--color-primary, #4caf50);
}

.blog-toc-body {
    padding: 18px 22px;
}

.blog-toc-head {
    margin-bottom: 14px;
}

.blog-toc-head-label {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-toc-head-label::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-primary, #4caf50);
    border-radius: 50%;
    flex-shrink: 0;
}

.blog-toc-values {
    list-style: none;
    padding: 0;
    margin: 0 0 0 14px;
}

.blog-toc-values li {
    font-size: 13px;
    color: #555;
    padding: 3px 0;
    border-bottom: 1px dashed #eee;
}

.blog-toc-values li:last-child {
    border-bottom: none;
}

.blog-toc-values a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-toc-values a:hover {
    color: var(--color-primary, #4caf50);
}

.blog-toc-value-text {
    font-size: 13px;
    color: #555;
    margin-top: 4px;
    line-height: 1.6;
}


/* ── Related Posts ─────────────────────────────────────── */
.blog-related-section {
    padding: 60px 0 40px;
}

.blog-related-section .section-title-area {
    margin-bottom: 40px;
}

.blog-related-section .sub-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary, #4caf50);
    margin-bottom: 8px;
    display: block;
}

.blog-related-section .section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
}

/* ── Utility ───────────────────────────────────────────── */
.blog-row-split {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.blog-row-split > * {
    flex: 1;
    min-width: 0;
}

@media (max-width: 767px) {
    .blog-row-split {
        flex-direction: column;
    }
    .blog-component-body {
        padding: 20px 18px;
    }
}


/* ==========================================================
   BLOG TYPE GROUPS — Scoped text styles per type
   Only .blog-text-content ul/ol/headings are affected.
   Cards, fonts, colors are NOT changed.
   ========================================================== */

/* ── Base reset for all groups ─────────────────────────── */
[class*="blog-group-"] .blog-text-content ul,
[class*="blog-group-"] .blog-text-content ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

[class*="blog-group-"] .blog-text-content ul li,
[class*="blog-group-"] .blog-text-content ol li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 28px;
}


/* ────────────────────────────────────────────────────────
   GROUP A: blog / case-study
   Professional — filled green circle + numbered badge
   ──────────────────────────────────────────────────────── */

.blog-group-blog .blog-text-content ul li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 8px;
    width: 9px;
    height: 9px;
    background: var(--color-primary, #4caf50);
    border-radius: 50%;
}

.blog-group-blog .blog-text-content ol { counter-reset: grp-a; }
.blog-group-blog .blog-text-content ol li {
    counter-increment: grp-a;
    padding-left: 36px;
}
.blog-group-blog .blog-text-content ol li::before {
    content: counter(grp-a);
    position: absolute;
    left: 0; top: 1px;
    width: 22px; height: 22px;
    background: var(--color-primary, #4caf50);
    color: #fff;
    border-radius: 50%;
    font-size: 11px; font-weight: 700;
    text-align: center; line-height: 22px;
}


/* ────────────────────────────────────────────────────────
   GROUP B: studio
   Creative — › arrow only + outline box number
   ──────────────────────────────────────────────────────── */

.blog-group-studio .blog-text-content ul { padding-left: 18px; }
.blog-group-studio .blog-text-content ul li {
    padding-left: 26px;
    margin-bottom: 10px;
}
.blog-group-studio .blog-text-content ul li::before {
    content: '›';
    position: absolute;
    left: 0; top: -4px;
    font-size: 24px;
    color: var(--color-primary, #4caf50);
    font-weight: 700; line-height: 1.4;
}

.blog-group-studio .blog-text-content ol { counter-reset: grp-b; }
.blog-group-studio .blog-text-content ol li {
    counter-increment: grp-b;
    padding-left: 36px;
}
.blog-group-studio .blog-text-content ol li::before {
    content: counter(grp-b);
    position: absolute;
    left: 0; top: 2px;
    width: 22px; height: 22px;
    border: 2px solid var(--color-primary, #4caf50);
    color: var(--color-primary, #4caf50);
    border-radius: 4px;
    font-size: 11px; font-weight: 700;
    text-align: center; line-height: 18px;
}

.blog-group-studio .blog-section-heading {
    border-bottom: none;
    border-left: 4px solid var(--color-primary, #4caf50);
}


/* ────────────────────────────────────────────────────────
   GROUP C: ties
   Corporate — dark square bullet + dark badge leading-zero
   ──────────────────────────────────────────────────────── */

.blog-group-ties .blog-text-content ul li::before {
    content: '';
    position: absolute;
    left: 2px; top: 8px;
    width: 8px; height: 8px;
    background: #1a1a2e;
    border-radius: 2px;
}

.blog-group-ties .blog-text-content ol { counter-reset: grp-c; }
.blog-group-ties .blog-text-content ol li {
    counter-increment: grp-c;
    padding-left: 44px;
    margin-bottom: 12px;
}
.blog-group-ties .blog-text-content ol li::before {
    content: counter(grp-c, decimal-leading-zero);
    position: absolute;
    left: 0; top: 0;
    background: #1a1a2e;
    color: var(--color-primary, #4caf50);
    border-radius: 4px;
    font-size: 11px; font-weight: 800;
    padding: 2px 6px;
    letter-spacing: 1px; line-height: 20px;
}

.blog-group-ties .blog-section-heading {
    border-top: 3px solid var(--color-primary, #4caf50);
    border-bottom: 3px solid var(--color-primary, #4caf50);
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}


/* ────────────────────────────────────────────────────────
   GROUP D: academy
   Educational — green diamond bullet + dark circle outline
   ──────────────────────────────────────────────────────── */

.blog-group-academy .blog-text-content ul li::before {
    content: '◆';
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: var(--color-primary, #4caf50);
    line-height: 1;
}

.blog-group-academy .blog-text-content ol { counter-reset: grp-d; }
.blog-group-academy .blog-text-content ol li {
    counter-increment: grp-d;
    padding-left: 40px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e0e0e0;
    min-height: 28px;
}
.blog-group-academy .blog-text-content ol li:last-child { border-bottom: none; }
.blog-group-academy .blog-text-content ol li::before {
    content: counter(grp-d);
    position: absolute;
    left: 2px; top: 1px;
    width: 26px; height: 26px;
    background: #fff;
    border: 2px solid #1a1a2e;
    color: #1a1a2e;
    border-radius: 50%;
    font-size: 11px; font-weight: 700;
    text-align: center; line-height: 22px;
}

.blog-group-academy .blog-section-heading {
    border-bottom: 3px dotted var(--color-primary, #4caf50);
}


/* ────────────────────────────────────────────────────────
   GROUP E: live
   Events — ▶ play triangle + green rounded badge number
   ──────────────────────────────────────────────────────── */

.blog-group-live .blog-text-content ul li {
    margin-bottom: 8px;
}
.blog-group-live .blog-text-content ul li::before {
    content: '▶';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9px;
    color: var(--color-primary, #4caf50);
    line-height: 1;
}

.blog-group-live .blog-text-content ol { counter-reset: grp-e; }
.blog-group-live .blog-text-content ol li {
    counter-increment: grp-e;
    padding-left: 40px;
    padding-top: 5px; padding-bottom: 5px;
    margin-bottom: 8px;
    background: rgba(76,175,80,0.05);
    border-radius: 6px;
}
.blog-group-live .blog-text-content ol li::before {
    content: counter(grp-e);
    position: absolute;
    left: 8px; top: 6px;
    width: 22px; height: 22px;
    background: var(--color-primary, #4caf50);
    color: #fff;
    border-radius: 6px;
    font-size: 11px; font-weight: 700;
    text-align: center; line-height: 22px;
}

.blog-group-live .blog-section-heading {
    border-bottom: none;
    border-right: 4px solid var(--color-primary, #4caf50);
}


/* ────────────────────────────────────────────────────────
   GROUP F: work
   Portfolio — em-dash bullet + [01] bracket number
   ──────────────────────────────────────────────────────── */

.blog-group-work .blog-text-content ul li::before {
    content: '\2014';
    position: absolute;
    left: 0; top: 0;
    font-size: 14px;
    color: var(--color-primary, #4caf50);
    font-weight: 700; line-height: 1.6;
}

.blog-group-work .blog-text-content ol { counter-reset: grp-f; }
.blog-group-work .blog-text-content ol li {
    counter-increment: grp-f;
    padding-left: 46px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}
.blog-group-work .blog-text-content ol li:last-child { border-bottom: none; }
.blog-group-work .blog-text-content ol li::before {
    content: '[' counter(grp-f, decimal-leading-zero) ']';
    position: absolute;
    left: 0; top: 0;
    font-size: 12px; font-weight: 800;
    color: #1a1a2e;
    line-height: 1.7; letter-spacing: 0.5px;
}

.blog-group-work .blog-section-heading {
    border-left: 4px solid var(--color-primary, #4caf50);
    border-bottom: 3px solid var(--color-primary, #4caf50);
}


/* ==========================================================
   PER-GROUP HEADING STYLES
   h2 / h3 / h4 inside .blog-text-content get a distinct
   accent per group. Font, size, color unchanged.
   ========================================================== */

/* GROUP A: blog / case-study — no extra styling on h2/h3, keep them clean */

/* GROUP B: studio — no extra styling on h2/h3, keep them clean */

/* GROUP C: ties — no border on h2/h3, keep letter-spacing only */
.blog-group-ties .blog-text-content h2 {
    letter-spacing: 0.4px;
}
.blog-group-ties .blog-text-content h3 {
    letter-spacing: 0.3px;
}

/* GROUP D: academy — no extra styling on h2/h3, keep them clean */

/* GROUP E: live — no extra styling on h2/h3, keep them clean */

/* GROUP F: work — no extra styling on h2/h3, keep them clean */


/* ==========================================================
   PER-GROUP — p · blockquote · .blog-text-title · .blog-btn
   Theme colors kept. Only shape/spacing/accent varies.
   ========================================================== */

/* ── GROUP A: blog / case-study ─────────────────────────
   Clean professional — green left-bar blockquote           */

.blog-group-blog .blog-text-content blockquote {
    border-left: 4px solid var(--color-primary, #4caf50);
    background: rgba(76,175,80,0.04);
    padding: 12px 18px;
    margin: 18px 0;
    border-radius: 0 6px 6px 0;
    font-style: italic;
}

.blog-group-blog .blog-text-title {
    padding-bottom: 8px;
    border-bottom: 2px solid #1a1a2e;
}

/* btn — standard rounded (unchanged base) */


/* ── GROUP B: studio ─────────────────────────────────────
   Creative — pill button, top+bottom blockquote bars       */

.blog-group-studio .blog-text-content p {
    line-height: 2;
}

.blog-group-studio .blog-text-content blockquote {
    border-left: none;
    border-top: 2px solid var(--color-primary, #4caf50);
    border-bottom: 2px solid var(--color-primary, #4caf50);
    padding: 14px 22px;
    margin: 18px 0;
    font-style: italic;
    text-align: center;
}

.blog-group-studio .blog-text-title {
    padding-bottom: 8px;
    border-bottom: 2px solid #1a1a2e;
}

.blog-group-studio .blog-btn {
    border-radius: 50px;
    padding: 11px 34px;
    letter-spacing: 0.4px;
}


/* ── GROUP C: ties ───────────────────────────────────────
   Corporate — sharp button, formal spacing, dark blockquote */

.blog-group-ties .blog-text-content p {
    letter-spacing: 0.15px;
}

.blog-group-ties .blog-text-content blockquote {
    border-left: 4px solid #1a1a2e;
    background: rgba(26,26,46,0.03);
    padding: 10px 18px;
    margin: 18px 0;
}

.blog-group-ties .blog-text-title {
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-size: 18px;
    padding-left: 12px;
    border-left: 3px solid #1a1a2e;
}

.blog-group-ties .blog-btn {
    border-radius: 2px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 12px 28px;
}


/* ── GROUP D: academy ────────────────────────────────────
   Educational — indented paragraphs, dashed blockquote     */

.blog-group-academy .blog-text-content p {
    text-indent: 1.5em;
}
.blog-group-academy .blog-text-content p:first-child {
    text-indent: 0;
}

.blog-group-academy .blog-text-content blockquote {
    border: 1px dashed rgba(76,175,80,0.55);
    padding: 14px 20px;
    margin: 18px 0;
    border-radius: 4px;
    font-style: italic;
    background: rgba(76,175,80,0.02);
}

.blog-group-academy .blog-text-title {
    padding-bottom: 8px;
    border-bottom: 2px solid #1a1a2e;
}

.blog-group-academy .blog-btn {
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.2);
}


/* ── GROUP E: live ───────────────────────────────────────
   Events — green bg blockquote, bold button               */

.blog-group-live .blog-text-content blockquote {
    border-left: 4px solid var(--color-primary, #4caf50);
    background: rgba(76,175,80,0.07);
    padding: 12px 18px;
    margin: 18px 0;
    border-radius: 4px;
}

.blog-group-live .blog-text-title {
    padding-bottom: 8px;
    border-bottom: 2px solid #1a1a2e;
}

.blog-group-live .blog-btn {
    border-radius: 8px;
    font-weight: 800;
    letter-spacing: 0.3px;
}


/* ── GROUP F: work ───────────────────────────────────────
   Portfolio — minimal blockquote, square outlined button   */

.blog-group-work .blog-text-content blockquote {
    border-left: 3px solid #1a1a2e;
    padding: 8px 16px;
    margin: 18px 0;
    font-size: 15px;
    opacity: 0.85;
}

.blog-group-work .blog-text-title {
    padding-left: 12px;
    border-left: 3px solid #1a1a2e;
}

.blog-group-work .blog-btn {
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}


/* ==========================================================
   BLOG DETAIL PAGE — Breadcrumb responsive overrides
   Smaller title + smaller crumb links on all screen sizes
   ========================================================== */

/* ── Title (h1) ─────────────────────────────────────────── */
.breadcrumb-style-1 .title {
    font-size: clamp(20px, 3.5vw, 36px);
    line-height: 1.3;
    word-break: break-word;
}

/* ── Breadcrumb list ────────────────────────────────────── */
.breadcrumb-style-1 .page-breadcrumb {
    flex-wrap: wrap;
    row-gap: 4px;
}

.breadcrumb-style-1 .page-breadcrumb li {
    font-size: 13px;
    line-height: 1.5;
}

.breadcrumb-style-1 .page-breadcrumb li a {
    font-size: 13px;
}

.breadcrumb-style-1 .page-breadcrumb li:last-of-type {
    font-size: 13px;
    opacity: 0.75;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {
    .breadcrumb-style-1 .title {
        font-size: clamp(18px, 4vw, 28px);
    }
    .breadcrumb-style-1 .page-breadcrumb li,
    .breadcrumb-style-1 .page-breadcrumb li a {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .breadcrumb-style-1 .title {
        font-size: clamp(16px, 5vw, 22px);
    }
    .breadcrumb-style-1 .page-breadcrumb li,
    .breadcrumb-style-1 .page-breadcrumb li a {
        font-size: 11px;
    }
}
