﻿/* Blog article + author. Loaded on showfull. */

    .style-img-post {
        border-radius: 12px;
        box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        object-position: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .style-img-post:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    }

    @media (max-width: 768px) {
        .style-img-post {
            aspect-ratio: 4 / 3;
        }
    }
    
    .blog-article {
        color: #1a1a1a;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    }
    
    .blog-article p {
        line-height: 1.8;
        margin-bottom: 1em;
        color: #4a4a4a;
        font-size: 1.0625rem;
    }

.blog-article h2 {
    color: #1a1a1a;
    margin: .5em 0 .5em 0;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.blog-article h2:first-child {
    margin-top: 0;
}

.blog-article h3 {
    color: #2a2a2a;
    margin: 0em 0 0.8em 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.blog-article h4 {
    color: #2a2a2a;
    margin: .5em 0 0.5em 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-article strong {
    color: #1a1a1a;
    font-weight: 600;
}

.blog-article ul {
    margin: .5em 0 1em 0px;
    padding-left: 25px;
    list-style: none;
}

.blog-article li {
    margin-bottom: 1em;
    padding-left: 2em;
    position: relative;
    line-height: 1.8;
    color: #4a4a4a;
    font-size: 1.0625rem;
}

.blog-article li::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7ad1cd 0%, #9cddda 100%);
    transform: translateY(-50%);
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
}

.blog-article li:last-child {
    margin-bottom: 0;
}

.blog-article .stat-box {
    display: flex;
    align-items: stretch;
    background: #f6f7f7;
    border: 1px solid #e5e5e5;
    border-left: 3px solid #7ad1cd;
    border-radius: 0 8px 8px 0;
    margin: 2em 0;
    padding: 0;
}

.blog-article .stat-box strong {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 7.5rem;
    padding: 1.5rem 1.75rem;
    margin: 0;
    border-right: 1px solid #e5e5e5;
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
    background: none;
    -webkit-text-fill-color: #1a1a1a;
    filter: none;
}

.blog-article .stat-box-copy {
    padding: 1.35rem 1.75rem;
}

.blog-article .stat-box-label {
    display: block;
    margin-bottom: 0.4em;
    color: #7a7a7a;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-article .stat-box p {
    margin: 0;
    color: #3a3a3a;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.55;
}

.blog-article .blog-figure {
    margin: 1.75em 0 2em;
}

.blog-article .blog-figure a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: zoom-in;
}

.blog-article .blog-figure img,
.blog-article .blog-figure-left img,
.blog-article .blog-figure-right img,
.blog-article .blog-figure-wide img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    vertical-align: middle;
}

.blog-article .blog-figure a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0);
    transition: background 0.25s ease;
    pointer-events: none;
}

.blog-article .blog-figure a:hover::after,
.blog-article .blog-figure a:focus-visible::after {
    background: rgba(26, 26, 26, 0.18);
}

.blog-article .blog-figure figcaption,
.blog-article .blog-figure-left figcaption,
.blog-article .blog-figure-right figcaption,
.blog-article .blog-figure-wide figcaption {
    margin-top: 0.7em;
    color: #6a6a6a;
    font-size: 0.875rem;
    line-height: 1.5;
}

.blog-article .blog-figure-left a,
.blog-article .blog-figure-right a,
.blog-article .blog-figure-wide a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: zoom-in;
}

.blog-article .compare-table-wrap {
    margin: 1.75em 0 2em;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.blog-article .compare-table {
    width: 100%;
    min-width: 32rem;
    border-collapse: collapse;
    background: #fff;
}

.blog-article .compare-table caption {
    caption-side: bottom;
    padding-top: 0.75em;
    color: #6a6a6a;
    font-size: 0.8125rem;
    text-align: left;
}

.blog-article .compare-table th,
.blog-article .compare-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #e8e8e8;
    text-align: left;
    vertical-align: top;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #3a3a3a;
}

.blog-article .compare-table thead th {
    background: #f6f7f7;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid #dcdcdc;
}

.blog-article .compare-table tbody th {
    width: 22%;
    color: #1a1a1a;
    font-weight: 600;
    background: #fafafa;
}

.blog-article .compare-table tbody tr:last-child th,
.blog-article .compare-table tbody tr:last-child td {
    border-bottom: 0;
}

.blog-article .blog-faq {
    margin: 0.5em 0 2em;
    border-top: 1px solid #e5e5e5;
}

.blog-article .blog-faq details {
    border-bottom: 1px solid #e5e5e5;
}

.blog-article .blog-faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 0;
    color: #1a1a1a;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.blog-article .blog-faq summary::-webkit-details-marker {
    display: none;
}

.blog-article .blog-faq summary::after {
    content: '';
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    margin-top: -4px;
    border-right: 1.5px solid #1a1a1a;
    border-bottom: 1.5px solid #1a1a1a;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.blog-article .blog-faq details[open] summary::after {
    margin-top: 2px;
    transform: rotate(-135deg);
}

.blog-article .blog-faq details p {
    margin: 0 0 1.15rem;
    padding-right: 2rem;
}

.blog-article .cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem 2.5rem;
    margin: 2em 0 0.5em;
    padding: 2rem 2.15rem;
    background: #1a1a1a;
    border-radius: 10px;
    border-left: 3px solid #7ad1cd;
    color: #ffffff;
    overflow: hidden;
}

.blog-article .cta-box-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.blog-article .cta-box-label {
    display: block;
    margin-bottom: 0.45em;
    color: #7ad1cd;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-article .cta-box h3 {
    margin: 0 0 0.4em;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.blog-article .cta-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
}

.blog-article .cta-box-actions {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    gap: 0.65rem;
    min-width: 13.5rem;
}

.blog-article .cta-box-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8em 1.15em;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-article .cta-box-phone {
    background: #7ad1cd;
    color: #1a1a1a;
}

.blog-article .cta-box-phone:hover,
.blog-article .cta-box-phone:focus-visible {
    background: #8fdad6;
    color: #1a1a1a;
}

.blog-article .cta-box-msg {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
}

.blog-article .cta-box-msg:hover,
.blog-article .cta-box-msg:focus-visible {
    border-color: #ffffff;
    color: #ffffff;
}

.blog-article .cta-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    margin: 1.75em 0;
    padding: 1.15rem 1.35rem;
    background: #f6f7f7;
    border: 1px solid #e5e5e5;
    border-left: 3px solid #7ad1cd;
    border-radius: 0 8px 8px 0;
}

.blog-article .cta-inline-copy {
    min-width: 0;
}

.blog-article .cta-inline-label {
    display: block;
    margin-bottom: 0.2em;
    color: #7a7a7a;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-article .cta-inline p {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-article .cta-inline-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.55rem;
}

.blog-article .cta-inline-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65em 1em;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.blog-article .cta-inline-phone {
    background: #1a1a1a;
    color: #ffffff;
}

.blog-article .cta-inline-phone:hover,
.blog-article .cta-inline-phone:focus-visible {
    background: #2a2a2a;
    color: #ffffff;
}

.blog-article .cta-inline-msg {
    background: #fff;
    border: 1px solid #d8d8d8;
    color: #1a1a1a;
}

.blog-article .cta-inline-msg:hover,
.blog-article .cta-inline-msg:focus-visible {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.blog-article .blog-slider {
    margin: 0.35em 0 1.85em;
}

.blog-article .blog-slider .swiper {
    overflow: hidden;
}

.blog-article .blog-slider .swiper-slide {
    height: auto;
}

.blog-article .blog-slider figure {
    margin: 0;
}

.blog-article .blog-slider a {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    cursor: zoom-in;
}

.blog-article .blog-slider img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}

.blog-article .blog-slider figcaption {
    margin-top: 0.7em;
    color: #6a6a6a;
    font-size: 0.875rem;
    line-height: 1.5;
}

.blog-article .blog-slider-ui {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 0.9em;
}

.blog-article .blog-slider-prev,
.blog-article .blog-slider-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    position: static;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: #fff;
    color: #1a1a1a;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.blog-article .blog-slider-prev:hover,
.blog-article .blog-slider-next:hover,
.blog-article .blog-slider-prev:focus-visible,
.blog-article .blog-slider-next:focus-visible {
    border-color: #1a1a1a;
}

.blog-article .blog-slider-prev::after,
.blog-article .blog-slider-next::after {
    display: none;
    content: none;
}

.blog-article .blog-slider-prev::before,
.blog-article .blog-slider-next::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    margin: 0;
    border: 0;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    background: none;
}

.blog-article .blog-slider-prev::before {
    transform: translateX(1px) rotate(135deg);
}

.blog-article .blog-slider-next::before {
    transform: translateX(-1px) rotate(-45deg);
}

.blog-article .blog-slider-pag {
    flex: 1 1 auto;
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.blog-article .blog-slider-pag .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0;
    background: #d0d0d0;
    opacity: 1;
}

.blog-article .blog-slider-pag .swiper-pagination-bullet-active {
    background: #1a1a1a;
}

.blog-article .event-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem 1.5rem;
    margin: 1.75em 0 1.5em;
    padding: 0;
    list-style: none;
    counter-reset: event-step;
}

.blog-article .event-flow li {
    margin: 0;
    padding: 0;
    position: relative;
    counter-increment: event-step;
}

.blog-article .event-flow li::before {
    content: counter(event-step, decimal-leading-zero);
    display: block;
    position: static;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    margin: 0 0 0.55em;
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    transform: none;
    color: #7ad1cd;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.blog-article .event-flow strong {
    display: block;
    margin-bottom: 0.3em;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-article .event-flow span {
    display: block;
    color: #5a5a5a;
    font-size: 0.875rem;
    line-height: 1.5;
}

.blog-article .site-cases {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 2.5rem;
    margin: 0 0 2em;
    padding: 1.5em 0 0;
    border-top: 1px solid #e5e5e5;
}

.blog-article .site-cases-item {
    min-width: 0;
}

.blog-article .site-cases-label {
    display: block;
    margin-bottom: 0.45em;
    color: #7a7a7a;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-article .site-cases-item h4 {
    margin: 0 0 0.45em;
    color: #1a1a1a;
    font-size: 1.125rem;
}

.blog-article .site-cases-item p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* --- Editorial blocks (Chloe-inspired structure, SI styling) --- */

.blog-article .blog-subhead {
    margin: -0.15em 0 1.15em;
    color: #5a5a5a;
    font-size: 1.1875rem;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.01em;
}

.blog-article hr.blog-divider {
    display: block;
    width: 100%;
    max-width: 4.5rem;
    height: 0;
    margin: 2.25em auto;
    border: 0;
    border-top: 1px solid #d8d8d8;
}

.blog-article blockquote.blog-quote {
    margin: 1.75em 0;
    padding: 1.5rem 1.6rem;
    background: #f6f7f7;
    border: 1px solid #e5e5e5;
    border-left: 3px solid #7ad1cd;
    border-radius: 0 8px 8px 0;
}

.blog-article blockquote.blog-quote > p {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.55;
}

.blog-article blockquote.blog-quote cite {
    display: block;
    margin-top: 0.85em;
    color: #7a7a7a;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.blog-article blockquote.blog-quote-large {
    padding: 1.85rem 1.75rem;
    background: #1a1a1a;
    border: 0;
    border-left: 3px solid #7ad1cd;
    border-radius: 0 10px 10px 0;
}

.blog-article blockquote.blog-quote-large > p {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.blog-article blockquote.blog-quote-large cite {
    color: rgba(255, 255, 255, 0.55);
}

.blog-article .blog-pullquote {
    margin: 2em auto;
    max-width: 36rem;
    padding: 0;
    border: 0;
    text-align: center;
}

.blog-article .blog-pullquote blockquote {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
}

.blog-article .blog-pullquote p {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.blog-article .blog-pullquote cite {
    display: block;
    margin-top: 0.85em;
    color: #7a7a7a;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.blog-article .blog-figure-left,
.blog-article .blog-figure-right {
    width: min(42%, 17.5rem);
    max-width: 100%;
}

.blog-article .blog-figure-left {
    float: left;
    margin: 0.25em 1.5em 1em 0;
}

.blog-article .blog-figure-right {
    float: right;
    margin: 0.25em 0 1em 1.5em;
}

.blog-article .blog-figure-wide {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.blog-article .blog-figure-wide img {
    aspect-ratio: 16 / 9;
}

.blog-article .blog-gallery {
    display: grid;
    gap: 0.75rem;
    margin: 1.75em 0 2em;
    padding: 0;
    list-style: none;
}

.blog-article .blog-gallery > li {
    margin: 0;
    padding: 0;
}

.blog-article .blog-gallery > li::before {
    content: none;
    display: none;
}

.blog-article .blog-gallery-2 {
    grid-template-columns: 1fr 1fr;
}

.blog-article .blog-gallery-3 {
    grid-template-columns: repeat(3, 1fr);
}

.blog-article .blog-gallery-4 {
    grid-template-columns: repeat(4, 1fr);
}

.blog-article .blog-gallery figure {
    margin: 0;
}

.blog-article .blog-gallery a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    cursor: zoom-in;
}

.blog-article .blog-gallery img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.blog-article .blog-gallery figcaption {
    margin-top: 0.45em;
    color: #6a6a6a;
    font-size: 0.8125rem;
    line-height: 1.4;
}

.blog-article .blog-cover {
    position: relative;
    margin: 1.75em 0 2em;
    overflow: hidden;
    border-radius: 12px;
}

.blog-article .blog-cover img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.blog-article .blog-cover-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.82));
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
}

.blog-article .blog-columns {
    display: grid;
    gap: 1.5rem 2rem;
    margin: 1.75em 0 2em;
}

.blog-article .blog-columns-2 {
    grid-template-columns: 1fr 1fr;
}

.blog-article .blog-column > :first-child {
    margin-top: 0;
}

.blog-article .blog-column > :last-child {
    margin-bottom: 0;
}

.blog-article .blog-media-text {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 1.5rem 2rem;
    align-items: center;
    margin: 1.75em 0 2em;
}

.blog-article .blog-media-text-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

.blog-article .blog-media-text-reverse .blog-media-text-media {
    order: 2;
}

.blog-article .blog-media-text-reverse .blog-media-text-copy {
    order: 1;
}

.blog-article .blog-media-text-media {
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
}

.blog-article .blog-media-text-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.blog-article .blog-media-text-copy > :first-child {
    margin-top: 0;
}

.blog-article .blog-media-text-copy > :last-child {
    margin-bottom: 0;
}

.blog-article .compare-table-striped tbody tr:nth-child(even) th,
.blog-article .compare-table-striped tbody tr:nth-child(even) td {
    background: #f6f7f7;
}

.blog-author {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem 1.75rem;
    margin: 0;
    padding: 1.75rem 0 0;
    border-top: 1px solid #e5e5e5;
}

.blog-author-photo {
    flex: 0 0 auto;
}

.blog-author-photo img {
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.blog-author-label {
    display: block;
    margin-bottom: 0.2em;
    color: #7a7a7a;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-author-name {
    display: inline-block;
    margin-bottom: 0.15em;
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
}

.blog-author-name:hover,
.blog-author-name:focus-visible {
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-author-role {
    display: block;
    margin-bottom: 0.65em;
    color: #7a7a7a;
    font-size: 0.875rem;
}

.blog-author-copy p {
    margin: 0 0 0.85em;
    color: #4a4a4a;
    font-size: 0.9375rem;
    line-height: 1.65;
}

.blog-author-link {
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
}

.blog-author-link:hover,
.blog-author-link:focus-visible {
    color: #1a1a1a;
    border-bottom-color: #7ad1cd;
}

.blog-author-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.85em 0 0;
    padding: 0;
    list-style: none;
}

.blog-author-social li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-author-social li::before {
    content: none;
    display: none;
}

.blog-author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.blog-author-social a:hover,
.blog-author-social a:focus-visible {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
}

.blog-author-social img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: brightness(0);
}

.blog-author-social a:hover img,
.blog-author-social a:focus-visible img {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .blog-article h2 {
        font-size: 1.75rem;
    }
    
    .blog-article h3 {
        font-size: 1.375rem;
    }
    
    .blog-article .stat-box {
        flex-direction: column;
    }

    .blog-article .stat-box strong {
        min-width: 0;
        justify-content: flex-start;
        padding: 1.15rem 1.35rem 0.35rem;
        border-right: 0;
        font-size: 1.75rem;
    }

    .blog-article .stat-box-copy {
        padding: 0.5rem 1.35rem 1.25rem;
    }
    
    .blog-article .blog-figure img {
        aspect-ratio: 4 / 3;
    }

    .blog-article .blog-slider img {
        aspect-ratio: 4 / 3;
    }

    .blog-article .event-flow {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .blog-article .site-cases {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .blog-article .blog-figure-left,
    .blog-article .blog-figure-right {
        float: none;
        width: 100%;
        margin: 1.25em 0 1.5em;
    }

    .blog-article .blog-figure-wide {
        margin-left: 0;
        margin-right: 0;
    }

    .blog-article .blog-gallery-2,
    .blog-article .blog-gallery-3,
    .blog-article .blog-gallery-4 {
        grid-template-columns: 1fr 1fr;
    }

    .blog-article .blog-columns-2,
    .blog-article .blog-media-text,
    .blog-article .blog-media-text-reverse {
        grid-template-columns: 1fr;
    }

    .blog-article .blog-media-text-reverse .blog-media-text-media,
    .blog-article .blog-media-text-reverse .blog-media-text-copy {
        order: initial;
    }

    .blog-article blockquote.blog-quote-large > p,
    .blog-article .blog-pullquote p {
        font-size: 1.2rem;
    }

    .blog-article .cta-box {
        flex-direction: column;
        align-items: stretch;
        padding: 1.6rem 1.35rem;
        gap: 1.35rem;
    }

    .blog-article .cta-box h3 {
        font-size: 1.3rem;
    }

    .blog-article .cta-box-actions {
        min-width: 0;
        width: 100%;
    }

    .blog-article .cta-inline {
        flex-direction: column;
        align-items: stretch;
        padding: 1.1rem 1.15rem;
    }

    .blog-article .cta-inline-actions {
        width: 100%;
    }

    .blog-article .cta-inline-actions a {
        flex: 1 1 auto;
        white-space: normal;
        text-align: center;
    }

    .blog-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* --- Full post layout: split header + metabar + right sidebar (Revision structure) --- */

.blog-post-sidebar-layout {
    color: #1a1a1a;
}

.blog-post-crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.55rem;
    margin: 0 0 1.5rem;
    color: #7a7a7a;
    font-size: 0.8125rem;
    line-height: 1.4;
}

.blog-post-crumb a {
    color: #5a5a5a;
    text-decoration: none;
}

.blog-post-crumb a:hover,
.blog-post-crumb a:focus-visible {
    color: #1a1a1a;
}

.blog-post-crumb-current {
    color: #1a1a1a;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-post-header {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 1.5rem 2rem;
    align-items: center;
    margin: 0 0 2.5rem;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.45rem;
    margin: 0 0 0.85rem;
    color: #7a7a7a;
    font-size: 0.9375rem;
}

.blog-post-author {
    color: #2d8f8a;
    font-weight: 600;
    text-decoration: none;
}

.blog-post-author:hover,
.blog-post-author:focus-visible {
    color: #1a1a1a;
}

.blog-post-meta-on {
    color: #9a9a9a;
}

.blog-post-title {
    margin: 0 0 0.75rem;
    color: #1a1a1a;
    font-family: var(--alt-font, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(1.85rem, 2.6vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.blog-post-subtitle {
    margin: 0 0 1.15rem;
    color: #5a5a5a;
    font-size: 1.0625rem;
    line-height: 1.55;
}

.blog-post-subtitle:empty {
    display: none;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-post-tags li {
    margin: 0;
    padding: 0;
}

.blog-post-tags a {
    display: inline-flex;
    align-items: center;
    padding: 0.35em 0.75em;
    border-radius: 999px;
    background: #f0f1f1;
    color: #3a3a3a;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-post-tags a:hover,
.blog-post-tags a:focus-visible {
    background: #1a1a1a;
    color: #fff;
}

.blog-post-header-media {
    min-width: 0;
}

.blog-post-poster {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 18px;
    background: #f0f1f1;
}

.blog-post-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 2rem 3rem;
    align-items: stretch;
    padding-bottom: 3rem;
}

.blog-post-primary {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 1rem 1.25rem;
    align-items: start;
    min-width: 0;
}

.blog-post-body {
    min-width: 0;
    max-width: 100%;
}

.blog-post-sidebar-layout .blog-article {
    min-width: 0;
    max-width: 100%;
}

.blog-post-sidebar-layout .blog-article img {
    max-width: 100%;
    height: auto;
}

.blog-post-metabar {
    position: sticky;
    top: 6.5rem;
    z-index: 2;
}

.blog-post-metabar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.blog-post-readtime {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
}

.blog-post-progress-track,
.blog-post-progress-ring {
    position: absolute;
    inset: 0;
    width: 64px;
    height: 64px;
}

.blog-post-progress-track path {
    fill: none;
    stroke: #e5e5e5;
    stroke-width: 2;
}

.blog-post-progress-ring path {
    fill: none;
    stroke: #2d8f8a;
    stroke-width: 2.5;
    stroke-linecap: round;
}

.blog-post-readtime-label {
    position: relative;
    z-index: 1;
    max-width: 2.6rem;
    color: #1a1a1a;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.15;
}

.blog-post-share {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.blog-post-share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.blog-post-share-link:hover,
.blog-post-share-link:focus-visible {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

.blog-post-body .blog-author {
    margin-top: 2.5rem;
}

/* Key moments (auto from H2) */
.blog-key-moments {
    margin: 0 0 2rem;
    padding: 1.25rem 1.25rem 1.35rem;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    background: #fafafa;
}

.blog-key-moments[hidden] {
    display: none !important;
}

.blog-key-moments-heading {
    margin: 0 0 1rem;
    color: #1a1a1a;
    font-family: var(--alt-font, "Plus Jakarta Sans", sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.blog-key-moments-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-key-moments-item + .blog-key-moments-item {
    border-top: 1px solid #ebebeb;
}

.blog-key-moments-btn {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr) 1.25rem;
    gap: 0.75rem 0.85rem;
    align-items: start;
    width: 100%;
    margin: 0;
    padding: 0.85rem 0.15rem;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.blog-key-moments-btn:hover .blog-key-moments-title,
.blog-key-moments-btn:focus-visible .blog-key-moments-title,
.blog-key-moments-btn.is-active .blog-key-moments-title {
    color: #2d8f8a;
}

.blog-key-moments-num {
    color: #9a9a9a;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.4;
}

.blog-key-moments-title {
    display: block;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.blog-key-moments-desc {
    display: block;
    margin-top: 0.25rem;
    color: #5a5a5a;
    font-size: 0.875rem;
    line-height: 1.45;
}

.blog-key-moments-arrow {
    color: #b0b0b0;
    line-height: 0;
    margin-top: 0.15rem;
}

.blog-key-moments-btn:hover .blog-key-moments-arrow,
.blog-key-moments-btn.is-active .blog-key-moments-arrow {
    color: #2d8f8a;
}

.blog-post-sidebar {
    min-width: 0;
    align-self: stretch;
}

.blog-post-sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: 100%;
    box-sizing: border-box;
}

.blog-side-card {
    padding: 1.25rem 1.25rem 1.35rem;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    background: #fff;
}

.blog-side-sticky {
    position: sticky;
    top: 6.5rem;
    z-index: 1;
}

.blog-side-title {
    margin: 0 0 1rem;
    color: #7a7a7a;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.blog-side-about-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.blog-side-avatar {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-side-name {
    display: block;
    color: #1a1a1a;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-decoration: none;
}

.blog-side-name:hover,
.blog-side-name:focus-visible {
    color: #2d8f8a;
}

.blog-side-role {
    margin: 0.2rem 0 0;
    color: #7a7a7a;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.blog-side-bio {
    margin: 0 0 0.75rem;
    color: #5a5a5a;
    font-size: 0.875rem;
    line-height: 1.55;
}

.blog-side-location {
    margin: 0 0 1rem;
    color: #1a1a1a;
    font-size: 0.9375rem;
}

.blog-side-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-side-social li {
    margin: 0;
    padding: 0;
}

.blog-side-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 0.75rem;
    text-decoration: none;
}

.blog-side-social a:hover,
.blog-side-social a:focus-visible {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

/* Blog topics / subcategories */
.blog-side-cats-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-side-cats-list > li {
    margin: 0;
    padding: 0;
    min-width: 0;
}

.blog-side-cat {
    display: grid;
    grid-template-columns: 2.25rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0.4rem 0.45rem 0.4rem 0.4rem;
    border-radius: 10px;
    color: #1a1a1a;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.blog-side-cat:hover,
.blog-side-cat:focus-visible {
    background: rgba(45, 143, 138, 0.08);
    color: #2d8f8a;
}

.blog-side-cat:hover .blog-side-cat-icon,
.blog-side-cat:focus-visible .blog-side-cat-icon {
    background: #2d8f8a;
    color: #fff;
}

.blog-side-cat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 8px;
    background: #f0f1f1;
    color: #1a1a1a;
    font-size: 0.875rem;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.blog-side-cat-label {
    min-width: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.blog-side-cat-chevron {
    flex: 0 0 auto;
    color: #b0b0b0;
    font-size: 0.6875rem;
    transition: color 0.15s ease, transform 0.15s ease;
}

.blog-side-cat:hover .blog-side-cat-chevron,
.blog-side-cat:focus-visible .blog-side-cat-chevron {
    color: #2d8f8a;
    transform: translateX(2px);
}

.blog-side-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-side-post {
    margin: 0;
    padding: 0;
}

.blog-side-post-media {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 0.55rem;
}

.blog-side-post-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.blog-side-post-cat {
    display: block;
    margin-bottom: 0.25rem;
    color: #7a7a7a;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.blog-side-post-title {
    color: #1a1a1a;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.35;
    text-decoration: none;
}

.blog-side-post-title:hover,
.blog-side-post-title:focus-visible {
    color: #2d8f8a;
}

/* On this page TOC */
.blog-side-toc[hidden] {
    display: none !important;
}

.blog-side-toc-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-side-toc-list li + li {
    margin-top: 0.35rem;
}

.blog-side-toc-link {
    display: grid;
    grid-template-columns: 1.25rem minmax(0, 1fr);
    gap: 0.45rem;
    align-items: start;
    color: #5a5a5a;
    font-size: 0.875rem;
    line-height: 1.35;
    text-decoration: none;
}

.blog-side-toc-link:hover,
.blog-side-toc-link:focus-visible,
.blog-side-toc-link.is-active {
    color: #2d8f8a;
}

.blog-side-toc-num {
    color: #9a9a9a;
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-side-toc-link.is-active .blog-side-toc-num {
    color: #2d8f8a;
}

/* Field experience */
.blog-side-exp-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-side-exp-item + .blog-side-exp-item {
    margin-top: 0.95rem;
    padding-top: 0.95rem;
    border-top: 1px solid #efefef;
}

.blog-side-exp-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
}

.blog-side-exp-role {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.blog-side-exp-years {
    flex: 0 0 auto;
    color: #7a7a7a;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.blog-side-exp-place {
    margin: 0.3rem 0 0;
    color: #5a5a5a;
    font-size: 0.9375rem;
    line-height: 1.35;
}

/* Technologies */
.blog-side-tech-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-side-tech-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.blog-side-tech-item + .blog-side-tech-item {
    margin-top: 0.95rem;
}

.blog-side-tech-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #f0f1f1;
    color: #1a1a1a;
    font-size: 1rem;
}

.blog-side-tech-name {
    margin: 0 0 0.2rem;
    color: #1a1a1a;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.blog-side-tech-desc {
    margin: 0;
    color: #5a5a5a;
    font-size: 0.875rem;
    line-height: 1.45;
}

/* Services / Creating */
.blog-side-create-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-side-create-list li + li {
    margin-top: 1rem;
}

.blog-side-create-title {
    display: inline-block;
    color: #1a1a1a;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    text-decoration: none;
}

.blog-side-create-title:hover,
.blog-side-create-title:focus-visible {
    color: #2d8f8a;
}

.blog-side-create-desc {
    margin: 0.35rem 0 0;
    color: #5a5a5a;
    font-size: 0.875rem;
    line-height: 1.45;
}

.blog-side-cta .blog-side-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 0 0.55rem;
    padding: 0.8em 1em;
    border-radius: 8px;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
}

.blog-side-cta .blog-side-cta-btn:hover,
.blog-side-cta .blog-side-cta-btn:focus-visible {
    background: #2a2a2a;
    color: #fff;
}

.blog-side-cta-link {
    display: inline-block;
    color: #2d8f8a;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #2d8f8a;
}

.blog-side-cta-link:hover,
.blog-side-cta-link:focus-visible {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

/* Read next */
.blog-read-next {
    padding: 3rem 0 4rem;
    background: #f5f5f5;
}

.blog-read-next-head {
    margin-bottom: 1.5rem;
}

.blog-read-next-title {
    margin: 0;
    color: #1a1a1a;
    font-family: var(--alt-font, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.blog-read-next-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1.5rem;
}

.blog-read-next-card {
    min-width: 0;
}

.blog-read-next-media {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 0.85rem;
    border-radius: 14px;
    background: #e8e8e8;
}

.blog-read-next-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.blog-read-next-cat {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    display: inline-flex;
    padding: 0.3em 0.65em;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #1a1a1a;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-read-next-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 0.4rem;
    margin-bottom: 0.4rem;
    color: #7a7a7a;
    font-size: 0.875rem;
}

.blog-read-next-author {
    color: #2d8f8a;
    font-weight: 600;
}

.blog-read-next-heading {
    margin: 0 0 0.45rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.blog-read-next-heading a {
    color: #1a1a1a;
    text-decoration: none;
}

.blog-read-next-heading a:hover,
.blog-read-next-heading a:focus-visible {
    color: #2d8f8a;
}

.blog-read-next-excerpt {
    margin: 0;
    color: #5a5a5a;
    font-size: 0.9375rem;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .blog-post-header {
        grid-template-columns: minmax(0, 1fr);
    }

    .blog-post-header-media {
        order: -1;
    }

    .blog-post-main {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
    }

    .blog-post-primary {
        grid-template-columns: minmax(0, 1fr);
    }

    .blog-post-metabar {
        position: static;
    }

    .blog-post-metabar-inner {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 0.5rem;
    }

    .blog-post-share {
        flex-direction: row;
    }

    .blog-side-sticky {
        position: static;
    }

    .blog-side-cats-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.4rem;
    }

    .blog-side-cat {
        padding: 0.45rem 0.5rem;
    }

    .blog-side-cat-chevron {
        display: none;
    }

    .blog-read-next-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 575px) {
    .blog-post-poster {
        border-radius: 12px;
    }

    .blog-post-title {
        font-size: 1.65rem;
    }

    .blog-key-moments-btn {
        grid-template-columns: 1.5rem minmax(0, 1fr);
    }

    .blog-key-moments-arrow {
        display: none;
    }

    .blog-side-cats-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .blog-side-cat-chevron {
        display: inline-block;
    }
}
