:root {
    --blog-ink: #17202c;
    --blog-muted: #667080;
    --blog-paper: #f5f1e9;
    --blog-surface: #fffdfa;
    --blog-line: rgba(23, 32, 44, .13);
    --blog-blue: #315efb;
    --blog-cyan: #0f9db6;
    --blog-orange: #df6a43;
}

.blog-page-body {
    margin: 0;
    overflow-x: hidden;
    color: var(--blog-ink);
    background:
        radial-gradient(circle at 8% 5%, rgba(49, 94, 251, .09), transparent 30%),
        radial-gradient(circle at 93% 4%, rgba(223, 106, 67, .1), transparent 25%),
        var(--blog-paper);
}

.blog-page-body,
.blog-page-body button,
.blog-page-body input {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.blog-page {
    width: min(100% - clamp(28px, 5vw, 92px), 1460px);
    margin: 0 auto;
    padding: clamp(38px, 5vw, 78px) 0 clamp(84px, 8vw, 132px);
}

.blog-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .62fr);
    gap: clamp(28px, 6vw, 92px);
    align-items: end;
    min-height: min(640px, calc(100vh - 120px));
    padding: clamp(48px, 7vw, 104px) clamp(24px, 5vw, 76px);
    overflow: hidden;
    border: 1px solid var(--blog-line);
    border-radius: clamp(26px, 4vw, 52px);
    background:
        linear-gradient(135deg, rgba(255,255,255,.89), rgba(255,253,250,.64)),
        repeating-linear-gradient(90deg, transparent 0 79px, rgba(23,32,44,.04) 80px);
    box-shadow: 0 38px 100px rgba(44, 42, 36, .09);
}

.blog-eyebrow,
.blog-featured-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blog-blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.blog-eyebrow i,
.blog-featured-label i {
    font-size: 15px;
}

.blog-hero h1 {
    max-width: 880px;
    margin: 23px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 8.3vw, 128px);
    font-weight: 500;
    line-height: .88;
    letter-spacing: -.072em;
}

.blog-hero h1 em {
    display: block;
    color: var(--blog-orange);
    font-weight: inherit;
}

.blog-hero-copy > p {
    max-width: 720px;
    margin: 30px 0 0;
    color: var(--blog-muted);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.8;
}

.blog-search {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 690px;
    margin-top: 34px;
    padding: 8px 8px 8px 17px;
    border: 1px solid var(--blog-line);
    border-radius: 17px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 16px 42px rgba(23,32,44,.07);
}

.blog-search > i {
    color: #7d8591;
    font-size: 18px;
}

.blog-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--blog-ink);
    background: transparent;
    font-size: 14px;
}

.blog-search button {
    min-height: 46px;
    padding: 0 21px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--blog-ink);
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
}

.blog-hero-note {
    position: relative;
    padding: clamp(25px, 4vw, 42px);
    border-left: 3px solid var(--blog-blue);
    border-radius: 0 28px 28px 0;
    background: rgba(23,32,44,.965);
    color: #fff;
    box-shadow: 0 30px 80px rgba(23,32,44,.18);
}

.blog-hero-note > span {
    color: #9bb3ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.blog-hero-note blockquote {
    margin: 22px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 3vw, 39px);
    line-height: 1.25;
    letter-spacing: -.035em;
}

.blog-hero-note small {
    color: #aab4c4;
    font-size: 12px;
}

.blog-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    gap: 0;
    margin-top: clamp(32px, 5vw, 72px);
    overflow: hidden;
    border: 1px solid var(--blog-line);
    border-radius: clamp(25px, 3vw, 42px);
    background: var(--blog-surface);
    box-shadow: 0 34px 90px rgba(33, 37, 41, .08);
}

.blog-featured-media {
    display: block;
    min-height: 520px;
    overflow: hidden;
    background: #dfe5ef;
}

.blog-featured-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.blog-featured-media:hover img {
    transform: scale(1.035);
}

.blog-featured-media > span,
.blog-card-media > span,
.blog-related article > a > span {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #71809a;
    background:
        radial-gradient(circle at 30% 20%, rgba(49,94,251,.18), transparent 30%),
        #e7ebf2;
    font-size: 48px;
}

.blog-featured-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 5vw, 72px);
}

.blog-featured-label {
    margin-bottom: 22px;
    color: var(--blog-orange);
}

.blog-category {
    width: fit-content;
    color: var(--blog-blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-featured-copy h2 {
    margin: 18px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.7vw, 70px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -.052em;
}

.blog-featured-copy h2 a,
.blog-card h3 a,
.blog-related h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-featured-copy > p {
    margin: 24px 0 0;
    color: var(--blog-muted);
    font-size: 16px;
    line-height: 1.75;
}

.blog-index {
    padding-top: clamp(76px, 9vw, 136px);
}

.blog-index-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--blog-line);
}

.blog-index-head h2,
.blog-related header h2 {
    margin: 14px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5.2vw, 74px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.055em;
}

.blog-result-count {
    color: var(--blog-muted);
    font-size: 12px;
}

.blog-category-filter {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding: 24px 0 8px;
    scrollbar-width: none;
}

.blog-category-filter::-webkit-scrollbar {
    display: none;
}

.blog-category-filter a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid var(--blog-line);
    border-radius: 999px;
    color: #5f6977;
    background: rgba(255,255,255,.45);
    text-decoration: none;
    font-size: 12px;
    font-weight: 750;
}

.blog-category-filter a.active,
.blog-category-filter a:hover {
    color: #fff;
    border-color: var(--blog-ink);
    background: var(--blog-ink);
}

.blog-category-filter a span {
    opacity: .62;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.6vw, 34px);
    padding-top: 30px;
}

.blog-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--blog-line);
    border-radius: 25px;
    background: rgba(255,253,250,.9);
    box-shadow: 0 24px 60px rgba(34, 37, 41, .055);
    transition: transform .3s ease, box-shadow .3s ease;
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 32px 78px rgba(34, 37, 41, .11);
}

.blog-card-media {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
    background: #e7ebf2;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.2,.7,.2,1);
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.045);
}

.blog-card-media > b {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 999px;
    color: #fff;
    background: rgba(23,32,44,.8);
    backdrop-filter: blur(12px);
    font-size: 10px;
    letter-spacing: .05em;
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    min-height: 335px;
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.blog-card-meta > span {
    color: #7c8591;
    font-size: 11px;
}

.blog-card h3 {
    margin: 18px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 2.4vw, 38px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.blog-card-body > p {
    display: -webkit-box;
    margin: 16px 0 0;
    overflow: hidden;
    color: var(--blog-muted);
    font-size: 14px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 25px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.blog-author-avatar {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid rgba(23,32,44,.12);
    border-radius: 14px;
    color: #fff;
    background: var(--blog-blue);
    font-size: 15px;
    font-weight: 900;
}

.blog-author-avatar.large {
    width: 56px;
    height: 56px;
    border-radius: 17px;
}

.blog-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-author > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.blog-author b {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    color: var(--blog-ink);
    font-size: 12px;
    line-height: 1.2;
}

.blog-author small {
    margin-top: 5px;
    color: #7a8492;
    font-size: 10px;
    line-height: 1.3;
}

.blog-author.compact .blog-author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 12px;
}

.blog-verified-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    object-fit: contain;
    vertical-align: middle;
}

.blog-verified-fallback {
    color: var(--blog-blue);
    font-size: 15px;
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: var(--blog-ink);
    text-decoration: none;
    font-size: 12px;
    font-weight: 850;
}

.blog-card-share {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border: 1px solid var(--blog-line);
    border-radius: 12px;
    color: var(--blog-ink);
    background: transparent;
    cursor: pointer;
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 48px;
}

.blog-pagination a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 43px;
    padding: 0 16px;
    border: 1px solid var(--blog-line);
    border-radius: 12px;
    color: var(--blog-ink);
    background: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.blog-pagination > span {
    color: var(--blog-muted);
    font-size: 11px;
}

.blog-empty {
    display: grid;
    place-items: center;
    min-height: 410px;
    margin-top: 30px;
    padding: 40px;
    border: 1px dashed rgba(23,32,44,.22);
    border-radius: 28px;
    text-align: center;
}

.blog-empty > i {
    color: var(--blog-blue);
    font-size: 42px;
}

.blog-empty h3 {
    margin: 14px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 500;
}

.blog-empty p {
    max-width: 560px;
    color: var(--blog-muted);
    line-height: 1.7;
}

.blog-empty a,
.blog-not-found a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #fff;
    padding: 13px 17px;
    border-radius: 12px;
    background: var(--blog-ink);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

/* Article */
.blog-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 3px;
    pointer-events: none;
}

.blog-reading-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--blog-blue), var(--blog-cyan), var(--blog-orange));
}

.blog-article-page {
    width: min(100% - clamp(28px, 5vw, 92px), 1460px);
    margin: 0 auto;
    padding: clamp(44px, 6vw, 90px) 0 clamp(90px, 10vw, 150px);
}

.blog-article-header {
    display: grid;
    grid-template-columns: minmax(130px, .22fr) minmax(0, 1fr);
    gap: clamp(22px, 6vw, 92px);
    align-items: start;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-top: 10px;
    color: var(--blog-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.blog-article-heading {
    max-width: 1090px;
}

.blog-article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px 18px;
    color: #77808d;
    font-size: 11px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.blog-article-meta a {
    color: var(--blog-blue);
    text-decoration: none;
}

.blog-article-heading h1 {
    margin: 24px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 7.5vw, 112px);
    font-weight: 500;
    line-height: .94;
    letter-spacing: -.067em;
}

.blog-article-heading > p {
    max-width: 850px;
    margin: 28px 0 0;
    color: var(--blog-muted);
    font-size: clamp(17px, 1.65vw, 21px);
    line-height: 1.75;
}

.blog-article-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 900px;
    margin-top: 34px;
}

.blog-primary-share {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 45px;
    padding: 0 16px;
    border: 1px solid var(--blog-line);
    border-radius: 13px;
    color: var(--blog-ink);
    background: rgba(255,255,255,.64);
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
}

.blog-article-cover {
    height: min(72vh, 820px);
    margin: clamp(48px, 7vw, 90px) 0 0;
    overflow: hidden;
    border-radius: clamp(24px, 4vw, 48px);
    background: #e4e8ee;
    box-shadow: 0 38px 100px rgba(23,32,44,.11);
}

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

.blog-article-layout {
    display: grid;
    grid-template-columns: 74px minmax(0, 780px) minmax(230px, 310px);
    gap: clamp(28px, 5vw, 72px);
    justify-content: center;
    align-items: start;
    padding-top: clamp(58px, 8vw, 110px);
}

.blog-share-rail {
    position: sticky;
    top: 120px;
    display: grid;
    justify-items: center;
    gap: 9px;
}

.blog-share-rail > span {
    margin-bottom: 5px;
    color: #8a929d;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.blog-share-rail a,
.blog-share-rail button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--blog-line);
    border-radius: 13px;
    color: var(--blog-ink);
    background: rgba(255,255,255,.64);
    text-decoration: none;
    cursor: pointer;
}

.blog-article-content {
    min-width: 0;
    color: #29313c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(18px, 1.55vw, 21px);
    line-height: 1.9;
}

.blog-article-content > *:first-child {
    margin-top: 0;
}

.blog-article-content p {
    margin: 0 0 1.55em;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
    color: var(--blog-ink);
    line-height: 1.15;
    letter-spacing: -.035em;
}

.blog-article-content h2 {
    margin: 1.75em 0 .65em;
    font-size: clamp(34px, 4vw, 55px);
}

.blog-article-content h3 {
    margin: 1.6em 0 .6em;
    font-size: clamp(27px, 3vw, 40px);
}

.blog-article-content h4 {
    margin: 1.5em 0 .55em;
    font-size: 25px;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 0 0 1.6em;
    padding-left: 1.25em;
}

.blog-article-content li {
    margin: .45em 0;
    padding-left: .25em;
}

.blog-article-content blockquote {
    margin: 2em 0;
    padding: clamp(25px, 4vw, 42px);
    border-left: 4px solid var(--blog-orange);
    border-radius: 0 24px 24px 0;
    color: var(--blog-ink);
    background: rgba(255,255,255,.62);
    font-size: clamp(24px, 3vw, 37px);
    line-height: 1.35;
}

.blog-article-content a {
    color: var(--blog-blue);
    text-underline-offset: 4px;
}

.blog-article-content pre {
    overflow-x: auto;
    margin: 2em 0;
    padding: 24px;
    border-radius: 18px;
    color: #dce8f7;
    background: #111a27;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 14px;
    line-height: 1.7;
}

.blog-article-content code {
    padding: .16em .4em;
    border-radius: 6px;
    color: #8a351c;
    background: rgba(223,106,67,.11);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: .82em;
}

.blog-article-content pre code {
    padding: 0;
    color: inherit;
    background: transparent;
}

.blog-article-content figure {
    margin: 2.3em -9%;
}

.blog-article-content figure img,
.blog-article-content > img {
    display: block;
    width: 100%;
    max-height: 720px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 26px 70px rgba(23,32,44,.1);
}

.blog-article-content figcaption {
    margin-top: 11px;
    color: #7d8692;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 11px;
    text-align: center;
}

.blog-article-content hr {
    height: 1px;
    margin: 3em 0;
    border: 0;
    background: var(--blog-line);
}

.blog-article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 64px;
    padding-top: 26px;
    border-top: 1px solid var(--blog-line);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.blog-article-tags > span,
.blog-article-tags a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 37px;
    padding: 0 12px;
    border: 1px solid var(--blog-line);
    border-radius: 999px;
    color: #626c79;
    background: rgba(255,255,255,.48);
    text-decoration: none;
    font-size: 11px;
    font-weight: 750;
}

.blog-author-card {
    position: sticky;
    top: 120px;
    padding: 25px;
    border: 1px solid var(--blog-line);
    border-radius: 24px;
    background: rgba(255,253,250,.85);
    box-shadow: 0 24px 60px rgba(23,32,44,.065);
}

.blog-author-card-avatar {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    overflow: hidden;
    border-radius: 20px;
    color: #fff;
    background: var(--blog-blue);
    font-size: 24px;
    font-weight: 900;
}

.blog-author-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-author-card > small {
    display: block;
    margin-top: 22px;
    color: #89919d;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.blog-author-card h2 {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 8px 0 0;
    font-size: 20px;
}

.blog-author-card p {
    margin: 8px 0 0;
    color: var(--blog-muted);
    font-size: 12px;
    line-height: 1.6;
}

.blog-author-card > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    color: var(--blog-blue);
    text-decoration: none;
    font-size: 11px;
    font-weight: 850;
}

.blog-related {
    margin-top: clamp(78px, 9vw, 140px);
    padding-top: 35px;
    border-top: 1px solid var(--blog-line);
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 34px);
    margin-top: 30px;
}

.blog-related article > a {
    display: block;
    height: 220px;
    overflow: hidden;
    border-radius: 20px;
    background: #e4e8ee;
}

.blog-related article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-related article:hover img {
    transform: scale(1.04);
}

.blog-related article > small {
    display: block;
    margin-top: 17px;
    color: var(--blog-blue);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-related h3 {
    margin: 10px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(25px, 2.6vw, 36px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.blog-not-found {
    display: grid;
    place-items: center;
    min-height: 70vh;
    padding: 50px 24px;
    text-align: center;
}

.blog-not-found > span {
    color: var(--blog-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .2em;
}

.blog-not-found h1 {
    margin: 16px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 8vw, 92px);
    font-weight: 500;
    letter-spacing: -.06em;
}

.blog-not-found p {
    color: var(--blog-muted);
}

.blog-toast {
    position: fixed;
    left: 50%;
    bottom: 25px;
    z-index: 10000;
    max-width: calc(100% - 30px);
    padding: 13px 17px;
    border-radius: 999px;
    color: #fff;
    background: rgba(23,32,44,.94);
    box-shadow: 0 18px 52px rgba(23,32,44,.24);
    font-size: 12px;
    font-weight: 750;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 18px);
    transition: opacity .25s ease, transform .25s ease;
}

.blog-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (max-width: 1120px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-article-layout {
        grid-template-columns: 62px minmax(0, 760px);
    }

    .blog-author-card {
        position: static;
        grid-column: 2;
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 18px;
        align-items: center;
    }

    .blog-author-card-avatar {
        grid-row: 1 / span 4;
    }

    .blog-author-card > small,
    .blog-author-card h2,
    .blog-author-card p,
    .blog-author-card > a {
        margin-top: 4px;
    }
}

@media (max-width: 900px) {
    .blog-hero,
    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-hero {
        min-height: auto;
    }

    .blog-hero-note {
        max-width: 650px;
    }

    .blog-featured-media,
    .blog-featured-media img {
        min-height: 430px;
    }

    .blog-article-header {
        grid-template-columns: 1fr;
    }

    .blog-back-link {
        margin: 0;
    }

    .blog-article-layout {
        grid-template-columns: 1fr;
    }

    .blog-share-rail {
        position: static;
        display: flex;
        justify-content: flex-start;
    }

    .blog-share-rail > span {
        margin: 0 5px 0 0;
        writing-mode: initial;
        transform: none;
    }

    .blog-author-card {
        grid-column: auto;
    }
}

@media (max-width: 680px) {
    .blog-page,
    .blog-article-page {
        width: min(100% - 24px, 1460px);
    }

    .blog-hero {
        padding: 36px 22px;
        border-radius: 28px;
    }

    .blog-hero h1 {
        font-size: clamp(48px, 16vw, 72px);
    }

    .blog-search {
        align-items: stretch;
        flex-wrap: wrap;
        padding: 11px;
    }

    .blog-search > i {
        align-self: center;
    }

    .blog-search button {
        width: 100%;
    }

    .blog-featured-media,
    .blog-featured-media img {
        min-height: 300px;
    }

    .blog-featured-copy {
        padding: 28px 22px;
    }

    .blog-index-head,
    .blog-card-footer,
    .blog-article-author-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-grid,
    .blog-related-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-media {
        height: 250px;
    }

    .blog-card-body {
        min-height: 315px;
    }

    .blog-pagination {
        justify-content: space-between;
        gap: 10px;
    }

    .blog-pagination > span {
        display: none;
    }

    .blog-article-heading h1 {
        font-size: clamp(46px, 14.5vw, 74px);
    }

    .blog-primary-share {
        width: 100%;
        justify-content: center;
    }

    .blog-article-cover {
        height: 48vh;
        min-height: 320px;
        border-radius: 25px;
    }

    .blog-share-rail {
        gap: 7px;
        overflow-x: auto;
    }

    .blog-article-content {
        font-size: 18px;
        line-height: 1.82;
    }

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

    .blog-author-card {
        display: block;
    }

    .blog-author-card-avatar {
        margin-bottom: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-page-body *,
    .blog-page-body *::before,
    .blog-page-body *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
