
.blog-card-resume {
    margin: 0 0 16px;
    color: #516579;
    font-size: .92rem;
    line-height: 1.58;
    display: -webkit-box;

    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
    flex: 1;
}
.blog-page {
    background:
        radial-gradient(circle at top left, rgba(0, 116, 217, .15), transparent 32%),
        radial-gradient(circle at top right, rgba(58, 190, 64, .14), transparent 30%),
        linear-gradient(180deg, #071629 0%, #0b1728 42%, #f3f7fb 42%, #f3f7fb 100%);
    min-height: 100vh;
    color: #172033;
}

.blog-container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.blog-hero {
    padding: 48px 0 34px;
    color: #fff;
}

.blog-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: #d9f7ff;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.blog-hero h1 {
    margin: 14px 0 10px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.blog-hero p {
    margin: 0;
    max-width: 580px;
    color: rgba(255,255,255,.86);
    line-height: 1.55;
    font-size: 1.02rem;
}

.blog-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.blog-stat {
    min-width: 92px;
    text-align: center;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    padding: 14px 12px;
}

.blog-stat-icon {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.blog-stat-number {
    font-size: 1.45rem;
    color: #7ee65d;
    font-weight: 900;
    line-height: 1;
}

.blog-stat-label {
    margin-top: 4px;
    color: rgba(255,255,255,.75);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 24px;
    align-items: start;
    padding: 0 0 60px;
}

.blog-main-panel,
.blog-sidebar-panel {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(148,163,184,.28);
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(15,23,42,.12);
}

.blog-main-panel {
    padding: 24px;
}

.blog-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.blog-search {
    display: flex;
    gap: 8px;
    min-width: 240px;
    flex: 1;
}

.blog-search input {
    width: 100%;
    border: 1px solid #d7e2ee;
    border-radius: 14px;
    padding: 12px 14px;
    outline: none;
    background: #f8fbff;
    color: #102033;
}

.blog-search input:focus {
    border-color: #087bd3;
    box-shadow: 0 0 0 4px rgba(8, 123, 211, .1);
}

.blog-btn {
    border: 0;
    border-radius: 14px;
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .18s ease;
    white-space: nowrap;
}

.blog-btn:hover {
    transform: translateY(-1px);
}

.blog-btn-search {
    background: #0b7bd3;
    color: #fff;
}

.blog-btn-primary {
    background: linear-gradient(135deg, #0b7bd3, #36bd42);
    color: #fff;
}

.blog-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #d7e2ee;
    background: #f8fbff;
    color: #395167;
    border-radius: 999px;
    padding: 9px 13px;
    font-size: .84rem;
    font-weight: 800;
    text-decoration: none;
    transition: .18s ease;
}

.blog-chip:hover,
.blog-chip.active {
    background: #eaf6ff;
    border-color: #0b7bd3;
    color: #075f9f;
}

.blog-chip-clear {
    color: #b42318;
    border-color: #f2b8b5;
    background: #fff5f5;
}

.blog-count {
    color: #60758a;
    font-size: .88rem;
    margin: 8px 0 18px;
}

.blog-count strong {
    color: #102033;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    gap: 18px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    min-height: 245px;
    background: #ffffff;
    border: 1px solid #dbe6f1;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 24px rgba(15,23,42,.07);
    transition: .2s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    border-color: #0b7bd3;
    box-shadow: 0 18px 34px rgba(15,23,42,.12);
}

.blog-card-fixed {
    border-color: rgba(234, 179, 8, .75);
    background: linear-gradient(180deg, #fffdf2 0%, #ffffff 100%);
}

.blog-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-badges {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 999px;
    padding: 6px 9px;
    font-size: .72rem;
    font-weight: 900;
    line-height: 1;
}

.blog-badge-blue { background: #e8f4ff; color: #075f9f; }
.blog-badge-purple { background: #f2eaff; color: #6b21a8; }
.blog-badge-green { background: #eafbea; color: #166534; }
.blog-badge-cyan { background: #e7fbff; color: #0e7490; }
.blog-badge-orange { background: #fff3e1; color: #9a3412; }
.blog-badge-muted { background: #eef2f7; color: #475569; }
.blog-badge-fixed { background: #fef3c7; color: #92400e; }

.blog-card-title {
    margin: 0 0 10px;
    color: #102033;
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 900;
}

.blog-card-resume {
    margin: 0 0 16px;
    color: #516579;
    font-size: .92rem;
    line-height: 1.58;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-card-meta {
    border-top: 1px solid #edf2f7;
    padding-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: #74869a;
    font-size: .78rem;
}

.blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 18px;
    color: #60758a;
    background: #f8fbff;
    border: 1px dashed #c9d7e6;
    border-radius: 22px;
}

.blog-empty-icon {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.blog-empty a {
    color: #087bd3;
    font-weight: 900;
}

.blog-pagination {
    display: flex;
    gap: 7px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.blog-page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #d7e2ee;
    color: #395167;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.blog-page-btn:hover,
.blog-page-btn.active {
    background: #0b7bd3;
    border-color: #0b7bd3;
    color: #fff;
}

.blog-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 84px;
}

.blog-sidebar-panel {
    padding: 20px;
}

.blog-widget-title {
    margin: 0 0 14px;
    color: #102033;
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding-bottom: 10px;
    border-bottom: 1px solid #edf2f7;
}

.blog-widget-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
    color: #395167;
    text-decoration: none;
    font-size: .9rem;
    line-height: 1.35;
}

.blog-widget-link:last-child {
    border-bottom: 0;
}

.blog-widget-link:hover {
    color: #087bd3;
}

.blog-widget-link.active {
    color: #087bd3;
    font-weight: 900;
}

.blog-small-muted {
    color: #74869a;
    font-size: .78rem;
    white-space: nowrap;
}

.blog-cta {
    text-align: center;
    background: linear-gradient(135deg, #f1f8ff, #eefbf2);
    border-color: #cce5ff;
}

.blog-cta-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.blog-cta-title {
    font-weight: 900;
    color: #102033;
    margin-bottom: 8px;
}

.blog-cta p {
    color: #60758a;
    font-size: .9rem;
    line-height: 1.5;
    margin: 0 0 14px;
}

.blog-btn-full {
    width: 100%;
}

@media (max-width: 960px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-stats {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .blog-container {
        width: min(100% - 20px, 1120px);
    }

    .blog-main-panel {
        padding: 16px;
        border-radius: 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-search {
        min-width: 100%;
    }

    .blog-btn-primary {
        width: 100%;
    }
}
