.blog-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 3.75rem);
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, #111827 0%, #0f766e 100%);
}

.blog-hero__content {
    max-width: 760px;
}

.blog-hero__title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.blog-hero__text {
    max-width: 620px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #dbe4ee;
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.blog-tag:hover,
.blog-tag.is-active {
    background: #0f766e;
    border-color: #0f766e;
    color: #fff;
}

.article-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1.5rem 3rem rgba(15, 23, 42, 0.12) !important;
}

.article-card__image-link {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

.article-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #64748b;
    font-size: 2rem;
}

.article-card__date {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f766e;
}

.article-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.article-card__title {
    margin-bottom: 0.9rem;
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 700;
}

.article-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #64748b;
}

.article-card__meta-separator {
    color: #cbd5e1;
}

.article-card__excerpt {
    line-height: 1.7;
}

.article-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    color: #111827;
    font-weight: 700;
    text-decoration: none;
}

.article-card__link:hover {
    color: #0f766e;
}

.article-page__hero {
    overflow: hidden;
    border-radius: 1.75rem;
    box-shadow: 0 1.25rem 2.5rem rgba(15, 23, 42, 0.1);
}

.article-page__image {
    width: 100%;
    height: auto;
    display: block;
}

.article-page__title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.article-page__author {
    color: #334155;
    font-weight: 600;
}

.article-page__excerpt {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
}

.article-page__share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.article-page__share-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    border: 1px solid #dbe4ee;
    background: #fff;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.article-page__share-link:hover {
    background: #f8fafc;
    border-color: #c7d4e2;
    color: #0f172a;
    transform: translateY(-1px);
    box-shadow: none;
}

.article-page__share-link--facebook {
    color: #0f172a;
}

.article-page__share-link--facebook:hover {
    color: #0f172a;
}

.article-page__share-link--facebook i {
    color: #1877f2;
}

.article-page__share-link--facebook:hover i {
    color: #1667d8;
}

.article-page__share-link--telegram {
    color: #229ed9;
}

.article-page__share-link--telegram:hover {
    color: #1d8abd;
}

.article-page__share-link--whatsapp {
    color: #25d366;
}

.article-page__share-link--whatsapp:hover {
    color: #21bd5b;
}

.article-page__share-link--viber {
    color: #7360f2;
}

.article-page__share-link--viber:hover {
    color: #654fe2;
}

.article-gallery {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.article-gallery__item {
    display: block;
    overflow: hidden;
    border-radius: 1.2rem;
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.08);
}

.article-gallery__image {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.article-gallery__item:hover .article-gallery__image {
    transform: scale(1.03);
}

.article-page__content {
    color: #1f2937;
    font-size: 1.03rem;
    line-height: 1.9;
}

.article-page__content img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

.article-page__content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .blog-hero {
        border-radius: 1.5rem;
    }
}
