.stz-changelog-wrapper {
    background: #f5f7fb;
    min-height: auto;
}

.stz-changelog {
    padding: 40px 16px 64px;
    color: #0f172a;
}

.stz-changelog-container {
    max-width: 1100px;
    margin: 0 auto;
}

.stz-changelog-container--narrow {
    max-width: 820px;
}

.stz-changelog-hero {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    margin-bottom: 24px;
    border: 1px solid #e6ebf5;
}

.stz-changelog-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    font-weight: 700;
    color: #ff8a00;
    margin-bottom: 8px;
}

.stz-changelog-hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #1e1a1e;
}

.stz-changelog-subtitle {
    margin: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

.stz-changelog-panel {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px 8px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e6ebf5;
}

.stz-changelog-toolbar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 8px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8edf5;
}

.stz-changelog-search-wrap {
    position: relative;
    max-width: 360px;
    width: 100%;
}

.stz-changelog-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
    pointer-events: none;
}

.stz-changelog-search {
    width: 100%;
    padding: 10px 14px 10px 42px;
    border: 1px solid #dbe3f0;
    border-radius: 999px;
    font-size: 14px;
    color: #0f172a;
    background: #f8fafc;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.stz-changelog-search::placeholder {
    color: #94a3b8;
}

.stz-changelog-search:focus {
    outline: none;
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.stz-changelog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stz-changelog-filter {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.stz-changelog-filter:hover {
    color: #0f172a;
    border-color: #cbd5e1;
    background: #e8edf5;
}

.stz-changelog-filter.is-active {
    color: #ffffff;
    background: #2563eb;
    border-color: #2563eb;
}

.stz-changelog-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stz-changelog-entry {
    display: grid;
    grid-template-columns: 148px 1fr;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid #eef2f7;
}

.stz-changelog-entry:last-child {
    border-bottom: none;
    padding-bottom: 20px;
}

.stz-changelog-entry-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding-top: 4px;
}

.stz-changelog-date {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    white-space: nowrap;
}

.stz-cl-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: capitalize;
}

.stz-cl-tag--new {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.stz-cl-tag--improved {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
}

.stz-cl-tag--fixed {
    background: rgba(249, 115, 22, 0.12);
    color: #c2410c;
}

.stz-cl-tag--android {
    background: rgba(101, 163, 13, 0.12);
    color: #4d7c0f;
}

.stz-cl-tag--web {
    background: rgba(168, 85, 247, 0.12);
    color: #7e22ce;
}

.stz-cl-tag--api {
    background: rgba(20, 184, 166, 0.12);
    color: #0f766e;
}

.stz-cl-tag--general {
    background: #f1f5f9;
    color: #64748b;
}

.stz-changelog-entry-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.35;
}

.stz-changelog-entry-title a {
    color: #1e1a1e;
    text-decoration: none;
}

.stz-changelog-entry-title a:hover {
    color: #2563eb;
}

.stz-changelog-entry-image-link {
    display: block;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8edf5;
}

.stz-changelog-entry-image {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    display: block;
}

.stz-changelog-entry-excerpt {
    margin: 0 0 12px;
    color: #475569;
    font-size: 14px;
    line-height: 1.65;
}

.stz-changelog-read-more {
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.stz-changelog-read-more:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.stz-changelog-empty {
    padding: 40px 24px;
    text-align: center;
    color: #64748b;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px dashed #dbe3f0;
    margin: 16px 0 20px;
}

.stz-changelog-empty--search {
    margin-top: 0;
}

.stz-changelog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
}

.stz-changelog-breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.stz-changelog-breadcrumb a:hover {
    text-decoration: underline;
}

.stz-changelog-article-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e6ebf5;
}

.stz-changelog-article-header {
    margin-bottom: 24px;
}

.stz-changelog-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #64748b;
}

.stz-changelog-article-header h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: #1e1a1e;
}

.stz-changelog-article-banner {
    margin-bottom: 28px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8edf5;
}

.stz-changelog-article-banner img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.stz-changelog-article-content {
    font-size: 15px;
    line-height: 1.75;
    color: #334155;
}

.stz-changelog-article-content h2,
.stz-changelog-article-content h3,
.stz-changelog-article-content h4 {
    color: #1e1a1e;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
}

.stz-changelog-article-content p {
    margin-bottom: 1em;
}

.stz-changelog-article-content ul,
.stz-changelog-article-content ol {
    margin-bottom: 1em;
    padding-left: 1.4em;
}

.stz-changelog-article-content a {
    color: #2563eb;
}

.stz-changelog-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.stz-changelog-article-footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.stz-changelog-back-link {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.stz-changelog-back-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

@media (min-width: 992px) {
    .stz-changelog-toolbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .stz-changelog-search-wrap {
        flex-shrink: 0;
    }

    .stz-changelog-filters {
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .stz-changelog-hero,
    .stz-changelog-panel,
    .stz-changelog-article-card {
        padding: 24px 18px;
    }

    .stz-changelog-entry {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px 0;
    }

    .stz-changelog-entry-meta {
        flex-direction: row;
        align-items: center;
    }

    .stz-changelog-hero h1 {
        font-size: 26px;
    }

    .stz-changelog-article-header h1 {
        font-size: 24px;
    }

    .stz-changelog-search-wrap {
        max-width: none;
    }
}
