.blog-admin {
    --blog-border: #e8edf4;
}

.blog-admin .card {
    border: 1px solid var(--blog-border) !important;
}

.blog-admin-thumb {
    width: 64px;
    height: 48px;
    border-radius: .65rem;
    object-fit: cover;
    flex: 0 0 auto;
}

.blog-admin-thumb-empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8b98a9;
    background: #eef2f6;
}

.blog-admin-sticky {
    position: sticky;
    top: 100px;
    z-index: 2;
}

.blog-featured-preview {
    width: 100%;
    max-height: 230px;
    border-radius: .8rem;
    object-fit: cover;
}

.blog-editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    padding: .6rem;
    border: 1px solid #d9e0e8;
    border-bottom: 0;
    border-radius: .75rem .75rem 0 0;
    background: #f8fafc;
}

.blog-editor-toolbar button {
    min-width: 2.35rem;
    height: 2.35rem;
    padding: 0 .7rem;
    border: 1px solid transparent;
    border-radius: .45rem;
    color: #344054;
    background: transparent;
}

.blog-editor-toolbar button:hover,
.blog-editor-toolbar button:focus-visible {
    border-color: #c9d3df;
    color: var(--ch-primary, #0d6efd);
    background: #fff;
}

.blog-editor-separator {
    width: 1px;
    margin: .25rem .2rem;
    background: #d9e0e8;
}

.blog-editor {
    min-height: 520px;
    padding: 1.5rem;
    border: 1px solid #d9e0e8;
    border-radius: 0 0 .75rem .75rem;
    outline: 0;
    color: #263142;
    font-size: 1.05rem;
    line-height: 1.75;
    background: #fff;
}

.blog-editor:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .12);
}

.blog-editor:empty::before {
    color: #98a2b3;
    content: attr(data-placeholder);
    pointer-events: none;
}

.blog-editor img,
.blog-editor video,
.blog-editor iframe {
    display: block;
    width: 100%;
    max-height: 560px;
    border: 0;
    border-radius: .8rem;
    object-fit: contain;
    background: #111827;
}

.blog-editor figure {
    margin: 1.5rem 0;
}

.blog-editor figcaption {
    margin-top: .5rem;
    color: #667085;
    font-size: .9rem;
    text-align: center;
}

.blog-public-hero,
.blog-article-header {
    padding-top: 5.5rem;
    border-bottom: 1px solid #e9edf2;
    background:
        radial-gradient(circle at 8% 8%, rgba(30, 115, 190, .1), transparent 30%),
        radial-gradient(circle at 92% 2%, rgba(214, 158, 46, .1), transparent 28%),
        #f8fafc;
}

.blog-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.blog-eyebrow {
    color: var(--est-primary, var(--primary-blue, #0d6efd));
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.blog-tag-filter {
    padding-bottom: 1rem;
    border-bottom: 1px solid #edf0f4;
}

.blog-tag,
.blog-tag-small {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .42rem .8rem;
    border: 1px solid #dbe2ea;
    border-radius: 999px;
    color: #475467;
    font-size: .82rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    background: #fff;
    transition: .2s ease;
}

.blog-tag span {
    color: #98a2b3;
}

.blog-tag:hover,
.blog-tag.active,
.blog-tag-small:hover {
    border-color: var(--est-primary, var(--primary-blue, #0d6efd));
    color: #fff;
    background: var(--est-primary, var(--primary-blue, #0d6efd));
}

.blog-card {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #e5eaf0;
    border-radius: 1.1rem;
    background: #fff;
    box-shadow: 0 10px 35px rgba(20, 35, 55, .07);
    transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(20, 35, 55, .12);
}

.blog-card-image {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #e9edf2;
}

.blog-highlight-badge {
    position: absolute;
    top: .85rem;
    left: .85rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .42rem .72rem;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 999px;
    color: #342407;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .02em;
    background: #f6c453;
    box-shadow: 0 5px 18px rgba(20, 35, 55, .2);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.035);
}

.blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.4rem;
}

.blog-card-meta,
.blog-article-meta {
    display: flex;
    justify-content: space-between;
    color: #667085;
    font-size: .86rem;
}

.blog-establishment-link {
    display: inline-block;
    align-self: flex-start;
    margin-top: .85rem;
    color: var(--est-primary, var(--primary-blue, #0d6efd));
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
    margin: .75rem 0;
    font-size: 1.35rem;
    line-height: 1.3;
}

.blog-card h2 a,
.blog-card h3 a {
    color: #172033;
    text-decoration: none;
}

.blog-card p {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 0;
    color: #667085;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.tourism-blog-preview {
    scroll-margin-top: 92px;
}

.parking-blog-preview {
    scroll-margin-top: 92px;
    border-bottom: 1px solid #e8edf2;
    background: #f8fafc;
}

.blog-preview-read-more {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    color: var(--est-primary, var(--primary-blue, #0d6efd));
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
}

.blog-preview-read-more:hover {
    color: var(--est-secondary, #245f4b);
}

.blog-empty i {
    color: #b4bfcc;
    font-size: 3rem;
}

.blog-article-cover {
    display: block;
    width: 100%;
    max-height: 650px;
    margin-top: -1px;
    border-radius: 1.25rem;
    object-fit: cover;
    box-shadow: 0 18px 55px rgba(20, 35, 55, .13);
}

.blog-article-content {
    color: #293447;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.16rem;
    line-height: 1.9;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
    margin: 2.2em 0 .7em;
    color: #152033;
    font-family: Inter, Arial, sans-serif;
    line-height: 1.25;
}

.blog-article-content p,
.blog-article-content ul,
.blog-article-content ol,
.blog-article-content blockquote {
    margin-bottom: 1.35em;
}

.blog-article-content blockquote {
    padding: 1rem 1.4rem;
    border-left: 4px solid var(--est-accent, #d69e2e);
    color: #475467;
    font-style: italic;
    background: #f8fafc;
}

.blog-article-content a {
    color: var(--est-primary, var(--primary-blue, #0d6efd));
}

.blog-article-content figure {
    margin: 2.2rem -5vw;
}

.blog-article-content img,
.blog-article-content video,
.blog-article-content iframe {
    display: block;
    width: 100%;
    max-height: 680px;
    border: 0;
    border-radius: 1rem;
    object-fit: contain;
    background: #111827;
}

.blog-article-content iframe {
    aspect-ratio: 16 / 9;
    height: auto;
}

.blog-article-content figcaption {
    margin-top: .65rem;
    color: #667085;
    font-family: Inter, Arial, sans-serif;
    font-size: .85rem;
    text-align: center;
}

.blog-share a {
    display: inline-flex;
    width: 2.35rem;
    height: 2.35rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    background: #344054;
}

.blog-share a:hover {
    background: var(--est-primary, var(--primary-blue, #0d6efd));
}

.blog-related {
    border-top: 1px solid #e9edf2;
    background: #f8fafc;
}

@media (max-width: 767.98px) {
    .blog-admin-sticky {
        position: static;
    }

    .blog-editor-toolbar button span {
        display: none;
    }

    .blog-editor {
        min-height: 380px;
        padding: 1rem;
    }

    .blog-public-hero,
    .blog-article-header {
        padding-top: 4.5rem;
    }

    .blog-article-header .display-4 {
        font-size: 2.25rem;
    }

    .blog-article-content {
        font-size: 1.06rem;
    }

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