/* --- SECTIONS --- */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6.5rem 2rem;
    width: 100%;
}

#about {
    padding-bottom: 2rem;
}

#projects {
    padding-top: 2rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 2.5rem 2rem;
    position: relative;
}

#about {
    padding-bottom: 1rem;
}

#projects {
    padding-top: 1.5rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0.75rem 2rem;
    position: relative;
}

.content-block {
    position: relative;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
    text-align: center;
}

/* Section label decorative line */
.section-label-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.section-label-wrap .section-label {
    margin-bottom: 0;
}

.section-line {
    height: 1px;
    width: 60px;
    background: var(--accent-primary);
    flex-shrink: 0;
}

.large-text {
    font-size: 1.75rem;
    line-height: 1.5;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}

.highlight {
    color: var(--text-primary);
    font-weight: 500;
}

/* About section code block decoration */
.about-code-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.5;
    margin-top: 2.5rem;
    border: 1px solid var(--border-subtle);
    padding: 0.4rem 1rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
}

.about-code-hint::before {
    content: "//";
    color: var(--accent-primary);
}

/* --- BENTO GRID --- */
.bento-grid.masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(260px, auto);
    gap: 1.25rem;
}

.bento-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-base), var(--inner-glow);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Geeky corner decoration (REMOVED) */

.bento-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(201, 168, 108, 0.08),
        transparent 80%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

[data-theme="light"] .bento-card::before {
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(122, 98, 64, 0.06),
        transparent 80%
    );
}

.bento-card:hover::before {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow:
        0 32px 64px -16px rgba(0, 0, 0, 0.5),
        var(--inner-glow-hover),
        0 0 0 1px rgba(201, 168, 108, 0.3);
    z-index: 10;
}

.bento-card:hover p {
    color: var(--text-primary);
}

.bento-card:hover h3 {
    color: var(--accent-primary);
}

[data-theme="light"] .bento-card:hover {
    border-color: rgba(122, 98, 64, 0.35);
    box-shadow:
        0 24px 48px -12px rgba(0, 0, 0, 0.15),
        var(--inner-glow-hover),
        0 0 0 1px rgba(122, 98, 64, 0.15);
}

.col-span-2 {
    grid-column: span 2;
}
.col-span-1 {
    grid-column: span 1;
}
.row-span-2 {
    grid-row: span 2;
}
.row-span-1 {
    grid-row: span 1;
}

.card-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
}

.card-eyebrow::before {
    content: "▸";
    font-size: 0.6rem;
}

.bento-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 0.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
    flex-grow: 1;
}

.card-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-mono);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease;
    letter-spacing: 0.02em;
}

.card-link:hover {
    color: var(--accent-primary);
}

.link-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* --- SKILLS --- */
.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    padding-top: 1rem;
}

.skill-category {
    padding: 2rem;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 108, 0.2);
    box-shadow: var(--shadow-hover);
}

.skill-category:hover::before {
    opacity: 1;
}

[data-theme="light"] .skill-category:hover {
    border-color: rgba(122, 98, 64, 0.2);
}

.skill-category h3 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.skill-category p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 400;
}

/* --- TIMELINE --- */
.timeline-simple {
    border-top: 1px solid var(--border-subtle);
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.timeline-simple::before {
    content: "";
    position: absolute;
    top: 0;
    left: 185px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        var(--accent-primary) 0%,
        transparent 100%
    );
    opacity: 0.2;
}

.timeline-row {
    display: flex;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
    align-items: baseline;
    position: relative;
}

.timeline-row::before {
    content: "";
    position: absolute;
    left: 182px;
    top: 3.1rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 12px rgba(201, 168, 108, 0.5);
    animation: pulse-dot 2.5s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.year {
    width: 210px;
    font-family: var(--font-mono);
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
    font-weight: 500;
    font-size: 0.9rem;
    padding-right: 48px;
    flex-shrink: 0;
}

.details strong {
    font-family: var(--font-heading);
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.details p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.meta-tag {
    font-size: 0.75rem;
    color: var(--accent-primary);
    font-weight: 600;
    font-family: var(--font-mono);
    background: rgba(201, 168, 108, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid rgba(201, 168, 108, 0.15);
}

[data-theme="light"] .meta-tag {
    background: rgba(122, 98, 64, 0.08);
    border-color: rgba(122, 98, 64, 0.15);
}

/* --- FOOTER / SOCIAL --- */
.footer-section {
    background: var(--bg-footer);
    padding: 8rem 2rem 5rem;
    border-top: 1px solid var(--border-subtle);
    width: 100%;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5rem);
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 800;
    text-transform: uppercase;
}

.footer-sub {
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 4rem;
    opacity: 0.6;
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
}

.social-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-mono);
    transition:
        color 0.3s ease,
        transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    background: transparent;
    letter-spacing: 0.02em;
}

.social-item:hover {
    color: var(--text-primary);
    border-color: rgba(201, 168, 108, 0.3);
    transform: translateY(-2px);
    background: rgba(201, 168, 108, 0.05);
}

.highlight-link {
    color: var(--accent-primary);
    border-color: rgba(201, 168, 108, 0.3);
    background: rgba(201, 168, 108, 0.05);
}

.highlight-link:hover {
    color: #1a1816;
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

[data-theme="light"] .highlight-link:hover {
    color: #f5f2ed;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-family: var(--font-mono);
    opacity: 0.5;
}

/* --- STACK TAGS --- */
.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.stack-tag {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent-primary);
    background: rgba(201, 168, 108, 0.08);
    border: 1px solid rgba(201, 168, 108, 0.18);
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.bento-card:hover .stack-tag {
    background: rgba(201, 168, 108, 0.13);
    border-color: rgba(201, 168, 108, 0.28);
}

[data-theme="light"] .stack-tag {
    color: var(--accent-primary);
    background: rgba(122, 98, 64, 0.07);
    border-color: rgba(122, 98, 64, 0.15);
}

/* --- GIT LOG TIMELINE --- */
.git-log {
    max-width: 640px;
    margin: 0 auto;
    font-family: var(--font-mono);
}

.git-row {
    display: flex;
    gap: 0;
    padding: 0;
    position: relative;
}

.git-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 110px;
    flex-shrink: 0;
    padding-top: 0.15rem;
}

.git-hash {
    font-size: 0.72rem;
    color: var(--accent-primary);
    opacity: 0.7;
    letter-spacing: 0.04em;
    white-space: nowrap;
    margin-bottom: 0.5rem;
}

.git-branch-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.git-branch-line::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: linear-gradient(
        to bottom,
        var(--accent-primary),
        rgba(201, 168, 108, 0.15)
    );
}

.git-row:last-child .git-branch-line::before {
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
}

.git-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-body);
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 8px rgba(201, 168, 108, 0.4);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.git-row:first-child .git-dot {
    background: var(--accent-primary);
    box-shadow: 0 0 12px rgba(201, 168, 108, 0.6);
    animation: pulse-dot 2.5s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

.git-right {
    flex: 1;
    padding: 0 0 3rem 1.75rem;
}

.git-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.git-ref {
    font-size: 0.72rem;
    background: rgba(201, 168, 108, 0.12);
    color: var(--accent-primary);
    border: 1px solid rgba(201, 168, 108, 0.2);
    padding: 0.15rem 0.55rem;
    border-radius: 4px;
    letter-spacing: 0.03em;
}

.git-date {
    font-size: 0.72rem;
    color: var(--text-secondary);
    opacity: 0.6;
}

.git-right strong {
    font-family: var(--font-heading);
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.git-right p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-family: var(--font-stack);
}

/* --- SECTION DIVIDER --- */
#about {
    padding-bottom: 2rem;
}

#projects {
    padding-top: 2rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 1.5rem 2rem;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle));
    max-width: 400px;
}

.section-divider::after {
    background: linear-gradient(90deg, var(--border-subtle), transparent);
}

.divider-glyph {
    font-size: 0.5rem;
    color: var(--accent-primary);
    opacity: 0.4;
    padding: 0 1.25rem;
    letter-spacing: 0;
}

/* --- TERMINAL BLOCK --- */
.terminal-block {
    margin-top: 3rem;
    background: #0d0c0b;
    border: 1px solid rgba(201, 168, 108, 0.15);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

[data-theme="light"] .terminal-block {
    background: #1a1816;
    border-color: rgba(201, 168, 108, 0.2);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.term-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.term-red {
    background: #ff5f57;
}
.term-yellow {
    background: #febc2e;
}
.term-green {
    background: #28c840;
}

.term-title {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 0.5rem;
    letter-spacing: 0.03em;
}

.terminal-body {
    padding: 1.5rem 1.75rem;
    font-size: 0.82rem;
    line-height: 1.8;
}

.term-line {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.term-line-gap {
    margin-top: 1rem;
}

.term-prompt {
    color: #28c840;
    user-select: none;
}

.term-cmd {
    color: #e8e4df;
}

.term-output {
    color: #a8a4a0;
    padding-left: 0.1rem;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    line-height: 1.9;
}

.term-key {
    color: #c9a86c;
}
.term-colon {
    color: #a8a4a0;
}
.term-str {
    color: #8ab4c7;
}
.term-num {
    color: #e4c695;
}
.term-brace {
    color: #a8a4a0;
}
.term-bracket {
    color: #a8a4a0;
}
.term-plain {
    color: #a8a4a0;
}

.term-cursor {
    color: var(--accent-primary);
    animation: blink 1s step-end infinite;
    font-size: 0.9rem;
}

/* --- GITHUB ACTIVITY --- */
.github-section {
    padding-bottom: 4rem;
}

.github-activity {
    max-width: 860px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-base), var(--inner-glow);
}

.github-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.github-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.github-view-all {
    font-size: 0.78rem;
    color: var(--accent-primary);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: opacity 0.2s;
}

.github-view-all:hover {
    opacity: 0.7;
}

.contrib-grid-wrap {
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border-subtle) transparent;
}

.contrib-grid {
    display: grid;
    grid-template-rows: repeat(7, 11px);
    grid-auto-flow: column;
    gap: 3px;
    width: max-content;
    min-width: 100%;
}

.contrib-cell {
    width: 11px;
    height: 11px;
    border-radius: 2px;
    background: var(--cell-bg, rgba(255, 255, 255, 0.04));
    transition: transform 0.15s ease;
    cursor: default;
    position: relative;
}

.contrib-cell:hover {
    transform: scale(1.4);
    z-index: 2;
}

.contrib-cell[data-level="0"] {
    --cell-bg: rgba(255, 255, 255, 0.04);
}
.contrib-cell[data-level="1"] {
    --cell-bg: rgba(201, 168, 108, 0.2);
}
.contrib-cell[data-level="2"] {
    --cell-bg: rgba(201, 168, 108, 0.4);
}
.contrib-cell[data-level="3"] {
    --cell-bg: rgba(201, 168, 108, 0.65);
}
.contrib-cell[data-level="4"] {
    --cell-bg: rgba(201, 168, 108, 0.9);
}

[data-theme="light"] .contrib-cell[data-level="0"] {
    --cell-bg: rgba(0, 0, 0, 0.05);
}

.contrib-legend {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 0.75rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
    opacity: 0.6;
    justify-content: flex-end;
}

.legend-cell {
    width: 11px;
    height: 11px;
    border-radius: 2px;
    background: rgba(201, 168, 108, calc(0.1 + var(--lvl) * 0.2));
}

.contrib-note {
    font-size: 0.68rem;
    color: var(--text-secondary);
    opacity: 0.35;
    margin-top: 1rem;
    text-align: right;
    letter-spacing: 0.03em;
}

/* --- COPY EMAIL BUTTON --- */
.email-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.copy-btn {
    background: rgba(201, 168, 108, 0.1);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 6px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: rgba(201, 168, 108, 0.2);
    border-color: rgba(201, 168, 108, 0.4);
    transform: scale(1.08);
}

.copy-btn.copied {
    background: rgba(74, 222, 128, 0.15);
    border-color: rgba(74, 222, 128, 0.3);
    color: #4ade80;
}

/* --- GITHUB MONTH LABELS --- */
.contrib-months {
    display: grid;
    grid-template-columns: repeat(52, 11px);
    gap: 3px;
    font-size: 0.65rem;
    color: var(--text-secondary);
    opacity: 0.5;
    margin-bottom: 4px;
    width: max-content;
    min-width: 100%;
    letter-spacing: 0.02em;
}

.contrib-months span {
    grid-row: 1;
    white-space: nowrap;
}

/* --- TERMINAL SCROLL REVEAL --- */
.terminal-block {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.terminal-block.term-visible,
.terminal-block.visible {
    opacity: 1;
    transform: translateY(0);
}

/* override: when parent fade-in fires, terminal also reveals */
.fade-in.visible .terminal-block {
    opacity: 1;
    transform: translateY(0);
}

/* --- BLOG SNIPPETS --- */
.blog-snippets-sub {
    max-width: 640px;
    margin: 1rem auto 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.blog-snippets-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-snippet-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 1.6rem 1.5rem 1.4rem;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: var(--shadow-base);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-snippet-card h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.blog-snippet-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

.blog-snippet-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 108, 0.4);
    box-shadow: var(--shadow-hover);
}

.blog-snippet-date,
.blog-snippet-link {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-primary);
}

.blog-snippet-card.is-loading {
    text-align: center;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.blog-snippets-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

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

@media (max-width: 640px) {
    .blog-snippets-grid {
        grid-template-columns: 1fr;
    }
}
