:root {
    --rn-bg: #f7f8fc;
    --rn-bg-soft: #eef2f7;
    --rn-surface: rgba(255, 255, 255, 0.94);
    --rn-surface-strong: #ffffff;
    --rn-border: rgba(226, 232, 240, 0.95);
    --rn-text: #0f172a;
    --rn-muted: #64748b;
    --rn-soft-muted: #94a3b8;
    --rn-purple: #6d28d9;
    --rn-purple-soft: #ede9fe;
    --rn-cyan: #22d3ee;
    --rn-green: #22c55e;
    --rn-shadow: 0 22px 58px rgba(15, 23, 42, 0.08);
    --rn-shadow-strong: 0 30px 80px rgba(49, 46, 129, 0.18);
    --rn-radius: 24px;
    --rn-container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--rn-text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
    background:
        radial-gradient(circle at 12% 0%, rgba(124, 58, 237, 0.12), transparent 32rem),
        radial-gradient(circle at 88% 10%, rgba(45, 212, 191, 0.10), transparent 28rem),
        linear-gradient(180deg, #f7f8fc 0%, #f3f4f8 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.rn-container {
    width: min(var(--rn-container), calc(100% - 40px));
    margin: 0 auto;
}

.rn-page-shell {
    min-height: 100vh;
    overflow: clip;
}

.rn-site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(226, 232, 240, 0.72);
    background: rgba(247, 248, 252, 0.82);
    backdrop-filter: blur(18px);
}

.rn-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.rn-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    font-weight: 950;
}

.rn-brand img {
    width: auto;
    max-width: 172px;
    max-height: 42px;
}

.rn-brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #111827, #6d28d9);
    box-shadow: 0 12px 28px rgba(109, 40, 217, 0.22);
}

.rn-brand-text {
    display: grid;
    gap: 1px;
    line-height: 1.05;
}

.rn-brand-text strong {
    max-width: 210px;
    overflow: hidden;
    color: var(--rn-text);
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rn-brand-text small {
    color: var(--rn-muted);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rn-main-nav {
    min-width: 0;
    margin-left: auto;
}

.rn-main-nav .nav {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rn-main-nav .nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    color: #475569;
    font-size: 0.92rem;
    font-weight: 850;
    transition: color 0.18s ease, background 0.18s ease;
}

.rn-main-nav .nav-current a,
.rn-main-nav .nav a:hover {
    color: #5b21b6;
    background: #ede9fe;
}

.rn-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 12px 24px rgba(109, 40, 217, 0.20);
    font-weight: 950;
    white-space: nowrap;
}

.rn-main {
    min-height: 70vh;
}

.rn-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.88fr);
    gap: 26px;
    align-items: stretch;
    padding: 56px 0 34px;
}

.rn-hero-copy,
.rn-archive-hero {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--rn-border);
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.13), transparent 22rem);
    box-shadow: var(--rn-shadow);
}

.rn-hero-copy::after,
.rn-archive-hero::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -56px;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.06);
    pointer-events: none;
}

.rn-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    padding: 8px 12px;
    border: 1px solid #ddd6fe;
    border-radius: 999px;
    color: #5b21b6;
    background: #ede9fe;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rn-eyebrow span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, #8b5cf6, #22d3ee);
    box-shadow: 0 0 0 5px rgba(124, 58, 237, 0.12);
}

.rn-eyebrow-muted {
    margin-bottom: 12px;
    color: #6d28d9;
}

.rn-hero h1,
.rn-archive-hero h1,
.rn-article-header h1 {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0;
    color: var(--rn-text);
    font-size: clamp(2.55rem, 6vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.rn-hero p,
.rn-archive-hero p,
.rn-article-header p {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 18px 0 0;
    color: var(--rn-muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.rn-hero-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.rn-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 15px;
    padding: 13px 20px;
    font-weight: 950;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.rn-button:hover {
    transform: translateY(-1px);
}

.rn-button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 12px 24px rgba(109, 40, 217, 0.22);
}

.rn-button-secondary {
    color: #0f172a;
    background: #eef2f7;
}

.rn-button-secondary:hover {
    background: #e2e8f0;
}

.rn-hero-panel {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 32px;
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.20), transparent 11rem),
        radial-gradient(circle at 90% 20%, rgba(45, 212, 191, 0.18), transparent 13rem),
        linear-gradient(145deg, #111827 0%, #312e81 48%, #6d28d9 100%);
    box-shadow: var(--rn-shadow-strong);
}

.rn-hero-panel::after {
    content: "";
    position: absolute;
    right: -84px;
    bottom: -92px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.rn-panel-kicker {
    position: relative;
    z-index: 1;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    padding: 8px 12px;
    border: 1px solid rgba(165, 243, 252, 0.22);
    border-radius: 999px;
    color: #cffafe;
    background: rgba(34, 211, 238, 0.14);
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rn-featured-link {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    min-height: 250px;
    align-content: end;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
}

.rn-featured-link span {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    color: #dcfce7;
    background: rgba(34, 197, 94, 0.20);
    font-size: 0.78rem;
    font-weight: 950;
}

.rn-featured-link strong {
    color: #ffffff;
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.rn-featured-link p {
    margin: 0;
    color: rgba(226, 232, 240, 0.88);
}

.rn-project-stack {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.rn-project-stack a {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.10);
    transition: transform 0.18s ease, background 0.18s ease;
}

.rn-project-stack a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
}

.rn-project-stack span {
    width: fit-content;
    padding: 5px 9px;
    border-radius: 999px;
    color: #cffafe;
    background: rgba(34, 211, 238, 0.14);
    font-size: 0.76rem;
    font-weight: 950;
}

.rn-project-stack strong {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.38;
}

.rn-project-section {
    padding: 28px 0 22px;
}

.rn-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.rn-project-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    border: 1px solid var(--rn-border);
    border-radius: var(--rn-radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88)),
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 14rem);
    box-shadow: var(--rn-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.rn-project-card::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -44px;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.08);
}

.rn-project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 64px rgba(15, 23, 42, 0.11);
}

.rn-project-card-dark {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.18), transparent 10rem),
        radial-gradient(circle at 88% 18%, rgba(34, 211, 238, 0.18), transparent 12rem),
        linear-gradient(145deg, #111827 0%, #312e81 52%, #6d28d9 100%);
}

.rn-project-label {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 10px;
    border: 1px solid #ddd6fe;
    border-radius: 999px;
    color: #5b21b6;
    background: #ede9fe;
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rn-project-card-dark .rn-project-label {
    color: #cffafe;
    background: rgba(34, 211, 238, 0.14);
    border-color: rgba(165, 243, 252, 0.22);
}

.rn-project-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 8px;
    color: inherit;
    font-size: 1.65rem;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.rn-project-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #64748b;
    line-height: 1.62;
}

.rn-project-card-dark p {
    color: rgba(226, 232, 240, 0.88);
}

.rn-current-section {
    padding: 18px 0 12px;
}

.rn-current-panel {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.18), transparent 11rem),
        linear-gradient(135deg, #0f172a 0%, #1e293b 52%, #155e75 100%);
    box-shadow: 0 26px 62px rgba(15, 23, 42, 0.18);
}

.rn-current-panel .rn-featured-link {
    min-height: 180px;
}

.rn-section {
    padding: 42px 0 76px;
}

.rn-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.rn-section-heading h2 {
    max-width: 720px;
    margin: 0;
    color: #0f172a;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.rn-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.rn-post-card {
    min-width: 0;
}

.rn-post-card-link {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--rn-border);
    border-radius: var(--rn-radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--rn-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.rn-post-card-link:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 58, 237, 0.22);
    box-shadow: 0 26px 64px rgba(15, 23, 42, 0.11);
}

.rn-post-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.20), transparent 9rem),
        linear-gradient(135deg, #111827, #312e81);
}

.rn-post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.22s ease;
}

.rn-post-card-link:hover .rn-post-media img {
    transform: scale(1.03);
}

.rn-post-media-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.rn-post-media-fallback span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 18px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    font-size: 1.55rem;
    font-weight: 950;
}

.rn-post-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.rn-card-meta,
.rn-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.79rem;
    font-weight: 900;
}

.rn-card-meta span,
.rn-article-meta span,
.rn-tag-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #f8fafc;
}

.rn-card-meta span:first-child,
.rn-tag-pill {
    color: #5b21b6;
    background: #ede9fe;
    border-color: #ddd6fe;
}

.rn-post-card h3 {
    margin: 14px 0 10px;
    color: #0f172a;
    font-size: 1.28rem;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.rn-post-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

.rn-pagination {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    color: #64748b;
    font-weight: 850;
}

.rn-pagination a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.rn-pagination a:first-child {
    justify-self: start;
    padding: 0 16px;
}

.rn-pagination a:last-child {
    justify-self: end;
    padding: 0 16px;
}

.rn-archive-hero {
    margin-top: 56px;
}

.rn-author-hero {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
    align-items: center;
}

.rn-author-image {
    position: relative;
    z-index: 1;
    width: 92px;
    height: 92px;
    border: 4px solid #ffffff;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.rn-article {
    padding: 52px 0 76px;
}

.rn-article-header {
    display: grid;
    gap: 18px;
    text-align: center;
}

.rn-article-header .rn-article-meta {
    justify-content: center;
}

.rn-article-header h1 {
    margin: 0 auto;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.rn-article-header p {
    margin: 0 auto;
}

.rn-feature-image {
    overflow: hidden;
    margin-top: 34px;
    border: 1px solid var(--rn-border);
    border-radius: 32px;
    background: #ffffff;
    box-shadow: var(--rn-shadow);
}

.rn-feature-image img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.rn-feature-image figcaption {
    padding: 10px 16px 14px;
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
}

.rn-content {
    width: min(820px, calc(100% - 40px));
    margin-top: 38px;
    color: #1e293b;
    font-size: 1.08rem;
    line-height: 1.85;
}

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

.rn-content h2,
.rn-content h3,
.rn-content h4 {
    color: #0f172a;
    line-height: 1.13;
    letter-spacing: -0.04em;
}

.rn-content h2 {
    margin: 2.2em 0 0.55em;
    font-size: clamp(1.8rem, 4vw, 2.55rem);
}

.rn-content h3 {
    margin: 1.8em 0 0.45em;
    font-size: 1.55rem;
}

.rn-content p,
.rn-content ul,
.rn-content ol {
    margin: 1.1em 0;
}

.rn-content a {
    color: #6d28d9;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.rn-content blockquote {
    margin: 2rem 0;
    padding: 22px 24px;
    border-left: 5px solid #8b5cf6;
    border-radius: 0 22px 22px 0;
    color: #334155;
    background: rgba(237, 233, 254, 0.72);
    font-size: 1.15rem;
    font-weight: 700;
}

.rn-content pre {
    overflow-x: auto;
    padding: 20px;
    border-radius: 20px;
    color: #e2e8f0;
    background: #0f172a;
}

.rn-content code {
    padding: 0.16em 0.35em;
    border-radius: 7px;
    color: #581c87;
    background: #f3e8ff;
    font-size: 0.92em;
}

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

.rn-content hr {
    margin: 2.4rem 0;
    border: 0;
    border-top: 1px solid #e2e8f0;
}

.rn-content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 0 0 1px #e2e8f0;
}

.rn-content th,
.rn-content td {
    padding: 12px 14px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

.rn-content th {
    background: #f8fafc;
}

.rn-content .kg-card {
    margin: 2rem 0;
}

.rn-content .kg-image,
.rn-content .kg-gallery-image img {
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
}

.rn-content .kg-bookmark-card a.kg-bookmark-container {
    border-color: #e2e8f0;
    border-radius: 22px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.rn-content .kg-callout-card {
    border-radius: 22px;
}

.rn-content .kg-button-card .kg-btn {
    border-radius: 15px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    font-weight: 950;
}

.rn-article-footer {
    width: min(820px, calc(100% - 40px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 42px;
    padding: 22px;
    border: 1px solid var(--rn-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--rn-shadow);
}

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

.rn-author-box img {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    object-fit: cover;
}

.rn-author-box span {
    display: block;
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.rn-author-box a {
    color: #0f172a;
    font-weight: 950;
}

.rn-tag-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.rn-tag-list a {
    padding: 6px 10px;
    border-radius: 999px;
    color: #5b21b6;
    background: #ede9fe;
    font-size: 0.82rem;
    font-weight: 900;
}

.rn-footer {
    border-top: 1px solid rgba(226, 232, 240, 0.88);
    background: rgba(255, 255, 255, 0.54);
}

.rn-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 0;
}

.rn-footer-brand {
    color: #0f172a;
    font-weight: 950;
}

.rn-footer p {
    margin: 4px 0 0;
    color: #64748b;
}

.rn-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.rn-footer-nav a {
    color: #64748b;
    font-weight: 850;
}

@media (max-width: 980px) {
    .rn-header-inner {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 0;
    }

    .rn-main-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .rn-main-nav .nav {
        width: max-content;
    }

    .rn-hero {
        grid-template-columns: 1fr;
    }

    .rn-project-grid {
        grid-template-columns: 1fr;
    }

    .rn-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .rn-container,
    .rn-content,
    .rn-article-footer {
        width: min(100% - 28px, var(--rn-container));
    }

    .rn-header-cta {
        width: 100%;
    }

    .rn-brand {
        flex: 1;
    }

    .rn-hero {
        padding-top: 28px;
    }

    .rn-hero-copy,
    .rn-hero-panel,
    .rn-archive-hero {
        border-radius: 24px;
        padding: 24px;
    }

    .rn-hero h1,
    .rn-archive-hero h1,
    .rn-article-header h1 {
        font-size: clamp(2.25rem, 13vw, 3.5rem);
    }

    .rn-section-heading {
        display: block;
    }

    .rn-post-grid {
        grid-template-columns: 1fr;
    }

    .rn-article {
        padding-top: 34px;
    }

    .rn-article-header {
        text-align: left;
    }

    .rn-article-header .rn-article-meta {
        justify-content: flex-start;
    }

    .rn-feature-image {
        border-radius: 24px;
    }

    .rn-article-footer,
    .rn-footer-inner,
    .rn-author-hero {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rn-tag-list,
    .rn-footer-nav {
        justify-content: flex-start;
    }

    .rn-pagination {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rn-pagination a:first-child,
    .rn-pagination a:last-child {
        justify-self: stretch;
    }
}
