body.blog-page {
    background: #f8fafc;
    color: #0f172a;
}
.nav-glass {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
}
.sb-eda-logo {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
}

.blog-wrap {
    padding-bottom: 2rem;
}
.blog-main {
    padding-top: 6.5rem;
}
@media (min-width: 768px) {
    .blog-main {
        padding-top: 7rem;
    }
}
.blog-hero {
    padding: 1.5rem 0 2.5rem;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}
.blog-hero__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
    padding-top: 0.5rem;
}
.blog-hero__lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
    max-width: 42rem;
}
.blog-block-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
}
.blog-breadcrumbs {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}
.blog-breadcrumbs a {
    color: #ea580c;
    text-decoration: none;
}
.blog-breadcrumbs a:hover {
    text-decoration: underline;
}
.blog-breadcrumbs span {
    margin: 0 0.35rem;
}

.blog-sections {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}
@media (min-width: 768px) {
    .blog-sections {
        grid-template-columns: repeat(3, 1fr);
    }
}
.blog-section-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.blog-section-card:hover {
    border-color: #fdba74;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.blog-section-card__media {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.blog-section-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-section-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-section-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.blog-section-card__title a {
    color: #0f172a;
    text-decoration: none;
}
.blog-section-card__title a:hover {
    color: #c2410c;
}
.blog-section-card__lead {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #64748b;
    flex: 1;
    margin-bottom: 1rem;
}
.blog-section-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ea580c;
    text-decoration: none;
}
.blog-section-card__link:hover {
    text-decoration: underline;
}

.blog-section-hero {
    padding: 2rem 0;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}
.blog-section-hero__grid {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}
@media (min-width: 768px) {
    .blog-section-hero__grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}
.blog-section-hero__image {
    width: 100%;
    border-radius: 0.75rem;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.blog-topic-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .blog-topic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.blog-topic-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.875rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 140px;
    transition: border-color 0.2s;
}
.blog-topic-card:hover {
    border-color: #cbd5e1;
}
@media (max-width: 520px) {
    .blog-topic-card {
        grid-template-columns: 1fr;
    }
}
.blog-topic-card__image {
    display: block;
    overflow: hidden;
}
.blog-topic-card__image img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
}
.blog-topic-card__body {
    padding: 1rem 1.125rem;
}
.blog-topic-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}
.blog-topic-card__section {
    color: #ea580c;
    font-weight: 600;
    text-decoration: none;
}
.blog-topic-card__topic {
    color: #64748b;
    background: #f1f5f9;
    padding: 0.1rem 0.45rem;
    border-radius: 0.25rem;
}
.blog-topic-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}
.blog-topic-card__title a {
    color: #0f172a;
    text-decoration: none;
}
.blog-topic-card__title a:hover {
    color: #c2410c;
}
.blog-topic-card__summary {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.75rem;
}
.blog-topic-card__footer {
    font-size: 0.75rem;
    color: #94a3b8;
    display: flex;
    gap: 0.75rem;
}

.blog-submit-panel {
    margin-top: 3rem;
    padding: 2rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
}
.blog-submit-panel__lead {
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 40rem;
}
.blog-back-link {
    margin-top: 2rem;
    text-align: center;
}
.blog-back-link a {
    color: #ea580c;
    font-weight: 600;
    text-decoration: none;
}
.blog-empty {
    text-align: center;
    color: #64748b;
    padding: 3rem 0;
}

.blog-form__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
    .blog-form__grid {
        grid-template-columns: 1fr;
    }
}
.blog-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.blog-form__field--wide {
    grid-column: 1 / -1;
}
.blog-form__field span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}
.blog-form__field input,
.blog-form__field select,
.blog-form__field textarea {
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.9375rem;
    background: #fff;
}
.blog-form__field input:focus,
.blog-form__field select:focus,
.blog-form__field textarea:focus {
    outline: none;
    border-color: #ea580c;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}
.blog-form__captcha {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
    font-size: 0.875rem;
    color: #475569;
}
.blog-form__captcha input {
    width: 6rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    padding: 0.5rem 0.65rem;
}
.blog-form__message {
    font-size: 0.875rem;
    margin: 0.75rem 0;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}
.blog-form__message.is-ok {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.blog-form__message.is-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}
.blog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #334155;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.15s;
}
.blog-btn:hover {
    border-color: #94a3b8;
}
.blog-btn--primary {
    background: #ea580c;
    border-color: #ea580c;
    color: #fff;
}
.blog-btn--primary:hover {
    background: #c2410c;
    border-color: #c2410c;
}

.blog-article__header {
    background: #fff;
    padding-top: 1rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}
.blog-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}
.blog-article__topic {
    color: #ea580c;
    font-weight: 600;
}
.blog-article__title {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 1rem;
}
.blog-article__dek {
    font-size: 1.125rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 1.5rem;
}
.blog-article__figure {
    margin: 0;
    max-height: 420px;
    overflow: hidden;
}
.blog-article__figure img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
}
.blog-article__body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #334155;
}
.blog-article__body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin: 2rem 0 1rem;
}
.blog-article__body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 1.5rem 0 0.75rem;
}
.blog-article__body p {
    margin-bottom: 1rem;
}
.blog-article__body ul,
.blog-article__body ol {
    margin: 0 0 1rem 1.25rem;
}
.blog-article__body li {
    margin-bottom: 0.35rem;
}
.blog-article__body blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 3px solid #ea580c;
    background: #fff7ed;
    color: #7c2d12;
    border-radius: 0 0.5rem 0.5rem 0;
}
.blog-article__body a {
    color: #c2410c;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-article__engage {
    margin: 2.5rem 0;
    padding: 1.25rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.blog-like-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}
.blog-like-btn:hover {
    border-color: #fda4af;
    color: #e11d48;
}
.blog-like-btn.is-liked {
    border-color: #fda4af;
    background: #fff1f2;
    color: #e11d48;
}
.blog-like-btn__icon {
    font-size: 1.1rem;
    line-height: 1;
}
.blog-article__engage-note {
    font-size: 0.8125rem;
    color: #94a3b8;
    margin-top: 0.75rem;
}

.blog-comments {
    margin: 2rem 0 3rem;
}
.blog-comments__list {
    margin-bottom: 1.5rem;
}
.blog-comments__item {
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.blog-comments__author {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}
.blog-comments__date {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}
.blog-comments__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
}
.blog-comments__empty,
.blog-comments__loading {
    color: #94a3b8;
    font-size: 0.9375rem;
    padding: 1rem 0;
}

.blog-article__footer {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}
.blog-article__footer a {
    color: #ea580c;
    text-decoration: none;
    font-weight: 600;
}
.blog-article__footer a:hover {
    text-decoration: underline;
}

.blog-form--compact {
    max-width: 36rem;
}

.blog-geo-answer {
    margin: 0 0 2rem;
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #ea580c;
    border-radius: 0 0.75rem 0.75rem 0;
}
.blog-geo-answer__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}
.blog-geo-answer__text {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #1e293b;
    margin: 0;
}

.blog-geo-faq {
    margin: 2.5rem 0;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}
.blog-geo-faq__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}
.blog-geo-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.blog-geo-faq__item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    padding: 0;
    overflow: hidden;
}
.blog-geo-faq__item summary {
    cursor: pointer;
    font-weight: 600;
    color: #0f172a;
    padding: 0.875rem 1rem;
    list-style: none;
}
.blog-geo-faq__item summary::-webkit-details-marker {
    display: none;
}
.blog-geo-faq__item summary:hover {
    color: #c2410c;
}
.blog-geo-faq__item p {
    padding: 0 1rem 1rem;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #475569;
}

.blog-geo-sources {
    margin: 2rem 0 2.5rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
}
.blog-geo-sources__title {
    font-size: 1rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.75rem;
}
.blog-geo-sources ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-geo-sources li {
    margin-bottom: 0.4rem;
    font-size: 0.875rem;
}
.blog-geo-sources a {
    color: #c2410c;
    text-decoration: none;
}
.blog-geo-sources a:hover {
    text-decoration: underline;
}
.blog-geo-sources__note {
    margin: 1rem 0 0;
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.5;
}
