/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #000000;
    --bg-tile: #000000;
    --border: #222;
    --text: #e5e5e5;
    --text-muted: #888;
    --accent: #3b82f6;
    --accent-soft: rgba(59, 130, 246, 0.12);
    --green: #22c55e;
    --green-soft: rgba(34, 197, 94, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
}

[data-theme="light"] {
    --bg: #ffffff;
    --bg-tile: #ffffff;
    --border: #e0e0e0;
    --text: #1a1a1a;
    --text-muted: #666;
    --accent: #2563eb;
    --accent-soft: rgba(37, 99, 235, 0.08);
    --green: #16a34a;
    --green-soft: rgba(22, 163, 74, 0.1);
}

html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}
html:focus-within {
    scroll-behavior: smooth;
}
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
    transition: none;
    position: relative;
}
html.theme-ready body {
    transition: background 0.3s, color 0.3s;
}
body::before {
    display: none;
}
body::after {
    display: none;
}
[data-theme="light"] body::before {
    display: none;
}
[data-theme="light"] body::after {
    display: none;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 1000;
    background: var(--accent);
    color: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus-visible {
    top: 12px;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 8px;
}

/* === HEADER === */
.site-header { max-width: 1100px; margin: 0 auto; padding: 20px 24px; display: flex; align-items: center; gap: 24px; }
.home-page .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0));
    transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}
[data-theme="light"] .home-page .site-header {
    background: linear-gradient(to bottom, rgba(255,255,255,0.92), rgba(255,255,255,0));
}
.home-page .site-header.scrolled {
    background: rgba(10, 10, 10, 0.58);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .home-page .site-header.scrolled {
    background: rgba(248, 250, 252, 0.72);
    border-bottom-color: rgba(15, 23, 42, 0.08);
}
.logo { font-size: 22px; font-weight: 700; color: var(--text); text-decoration: none; letter-spacing: -0.5px; }
.logo-dot { color: var(--accent); }
.nav { display: flex; gap: 8px; }
.nav-link {
    position: relative;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}
.nav-link:hover { color: var(--text); text-decoration: none; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active {
    color: var(--text);
    background: transparent;
    box-shadow: none;
}
.nav-link.active::after { transform: scaleX(1); }
.theme-toggle { margin-left: auto; background: var(--bg-tile); border: 1px solid var(--border); border-radius: 10px; padding: 8px; cursor: pointer; color: var(--text-muted); display: flex; align-items: center; transition: border-color 0.2s, color 0.2s; }
.theme-toggle:hover { color: var(--text); }
[data-theme="light"] .icon-sun { display: none; }
.icon-moon { display: none; }
[data-theme="light"] .icon-moon { display: block; }

/* === HERO PROFILE (OUTSIDE BENTO) === */
.hero-profile {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 42px;
    min-height: 100dvh;
    padding-top: 88px;
    padding-bottom: 46px;
    position: relative;
    isolation: isolate;
}
.hero-profile::before { display: none; }
[data-theme="light"] .hero-profile::before { display: none; }
.home-page {
}
.hero-bg-shape { display: none; }
.hero-profile-content { display: flex; flex-direction: column; align-items: flex-start; max-width: 640px; }
.hero-profile .social-row { justify-content: flex-start; gap: 12px; }
.hero-profile-photo {
    position: relative;
    transform: translateY(-10px);
}
.hero-profile-photo::before { display: none; }
.hero-scroll {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    animation: heroBreathe 1.8s ease-in-out infinite;
}
.hero-scroll-arrow { font-size: 24px; line-height: 1; }
.hero-scroll-text { font-size: 11px; letter-spacing: 0.3px; text-transform: uppercase; font-weight: 600; }
.hero-scroll:hover { color: var(--accent); text-decoration: none; }
@keyframes heroBreathe {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.65; }
    50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* === BENTO GRID === */
.bento-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    scroll-margin-top: 84px;
}
.bento-grid .tile { }

/* === TILE BASE === */
.tile { background: var(--bg-tile); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: border-color 0.2s, transform 0.2s, background 0.3s; }
.tile:hover { transform: translateY(-2px); }
.tile h2 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); margin-bottom: 14px; }
.tile-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.tile-footnote { font-size: 12px; color: var(--text-muted); margin-top: 12px; }
.tile-footnote a { color: var(--text-muted); }
.tile-footnote a:hover { color: var(--accent); }
.tile-link { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 500; color: var(--accent); }

/* === GRID LAYOUT === */
.tile-about { grid-column: 1 / 4; grid-row: 1; }
.tile-experience { grid-column: 1 / 3; grid-row: 2 / 4; }
.tile-blog { grid-column: 3; grid-row: 2; }
.tile-certs { grid-column: 3; grid-row: 3; }
.section-divider { grid-column: 1 / 4; grid-row: 4; display: flex; align-items: center; gap: 16px; padding: 4px 0; }
.section-divider::before, .section-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-divider-text { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); white-space: nowrap; }
.tile-status { grid-column: 1; grid-row: 5 / 7; }
.tile-specs { grid-column: 2; grid-row: 5; }
.tile-routes { grid-column: 2; grid-row: 6; }
.tile-stack { grid-column: 3; grid-row: 5 / 7; }
.tile-release { grid-column: 1 / 4; grid-row: 7; }
.tile-contact { grid-column: 1 / 4; grid-row: 8; }

/* === PROFILE === */
.avatar-frame {
    width: 520px;
    height: 520px;
    margin: 0;
    padding: 0;
    border-radius: 20px;
    border: none;
    box-shadow: none;
    background: transparent;
    overflow: hidden;
}
.avatar {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: none;
    object-fit: contain;
    display: block;
}
.hero-profile-photo:hover .avatar-frame {
    transform: none;
    box-shadow: none;
}
.profile-name {
    font-size: clamp(48px, 7.4vw, 76px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.name-tld {
    color: var(--accent);
    font-weight: 400;
}
.profile-value {
    display: block;
    font-size: clamp(18px, 2.1vw, 24px);
    font-weight: 500;
    color: var(--text);
    line-height: 1.48;
    letter-spacing: -0.2px;
    margin-bottom: 8px;
}
.profile-value-emphasis {
    color: #8ab4ff;
    font-weight: 700;
}
.profile-location {
    color: var(--text-muted);
    font-size: 0.75em;
}
[data-theme="light"] .profile-value-emphasis {
    color: #1d4ed8;
}
.hero-cta-row {
    display: flex;
    align-items: center;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 4px;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.hero-cta:hover {
    text-decoration: none;
    transform: translateY(-2px);
}
.hero-cta-primary {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
    box-shadow: none;
}
.hero-cta-primary:hover {
    border-color: var(--text-muted);
    box-shadow: none;
    filter: none;
}
.profile-meta {
    font-size: 14px;
    color: var(--text-muted);
    opacity: 0.84;
    margin-bottom: 10px;
}
.social-row { display: flex; gap: 12px; }
.social-link {
    position: relative;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-muted);
    border: none;
    background: transparent;
    transition: color 0.2s, transform 0.2s ease;
}
.social-link:hover {
    text-decoration: none;
    transform: translateY(-2px);
}
.social-link svg { width: 20px; height: 20px; }
.social-link-email { color: var(--text); }
.social-link-email:hover { color: var(--text-muted); }
.social-link-github { color: var(--text); }
.social-link-github:hover { color: var(--text-muted); }
.social-link-linkedin { color: #0a66c2; }
.social-link-linkedin:hover { color: #004182; }

.hero-reveal {
    opacity: 1;
    transform: none;
    animation: none;
}
.hero-reveal-delay-1 { animation-delay: 0s; }
.hero-reveal-delay-2 { animation-delay: 0s; }
.hero-reveal-delay-3 { animation-delay: 0s; }
.hero-reveal-delay-4 { animation-delay: 0s; }
.hero-photo-reveal {
    opacity: 1;
    transform: none;
    animation: none;
}
@keyframes heroPhotoReveal {
    to {
        opacity: 1;
        transform: translateY(-10px) scale(1);
    }
}
@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === ABOUT === */
.tile-about { display: flex; flex-direction: column; justify-content: center; }
.tile-about p { font-size: 16px; line-height: 1.7; color: var(--text); }

/* === RELEASE TILE === */
.tile-release {
    min-height: 0;
    padding: 12px 16px;
    background: var(--bg-tile);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.release-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.release-head h2 { margin-bottom: 0; }
.release-live {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--green);
    background: var(--green-soft);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 999px;
    padding: 3px 8px;
}
.release-time {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 8px;
}
.release-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.release-chip {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--border);
    background: var(--bg);
    border-radius: 999px;
    padding: 3px 8px;
    text-decoration: none;
}
.release-chip:hover {
    color: var(--accent);
    text-decoration: none;
}
.tile-release .tile-link { margin-top: 8px; font-size: 12px; }



/* === TIMELINE === */
.timeline { display: flex; flex-direction: column; gap: 20px; padding-left: 20px; border-left: 2px solid var(--border); }
.timeline-item { display: flex; gap: 14px; position: relative; align-items: flex-start; }
.timeline-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); border: 2px solid var(--bg-tile); position: absolute; left: -26px; top: 4px; }
.timeline-dot.current { background: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.timeline-logo { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; border: 1px solid var(--border); flex-shrink: 0; }
.timeline-role { font-weight: 600; font-size: 14px; }
.timeline-company { font-size: 13px; }
.timeline-company a { color: var(--accent); }
.timeline-date { font-size: 12px; color: var(--text-muted); }

/* === STATUS EMBEDS === */
.status-section-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin: 4px 0 6px; }
.grafana-uptime { border-radius: var(--radius-sm); overflow: hidden; height: 70px; margin-bottom: 8px; background: #181b1f; }
[data-theme="light"] .grafana-uptime { background: #f4f5f5; }
.grafana-uptime iframe { width: 100%; height: 100%; border: none; display: block; }
.grafana-gauges { display: flex; gap: 8px; flex: 1; min-height: 0; }
.grafana-gauge { flex: 1; border-radius: var(--radius-sm); overflow: hidden; background: #181b1f; min-height: 90px; }
[data-theme="light"] .grafana-gauge { background: #f4f5f5; }
.grafana-gauge iframe { width: 100%; height: 100%; border: none; display: block; }

/* === SSL CERTIFICATE EXPIRY (inside status tile) === */
.tile-status .ssl-embed {
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #181b1f;
    height: 200px;
    margin-bottom: 4px;
}
[data-theme="light"] .tile-status .ssl-embed { background: #f4f5f5; }
.tile-status .ssl-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* === HOMELAB SPECS === */
.tile-specs { display: flex; flex-direction: column; }
.specs-provider { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.specs-item { background: var(--bg-body); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; }
.specs-value { display: block; font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -0.5px; }
.specs-label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-top: 2px; }
.specs-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--text-muted); }

/* === ACTIVE ROUTES === */
.tile-routes { display: flex; flex-direction: column; }
.routes-provider { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.routes-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.routes-item { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.routes-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; box-shadow: 0 0 6px rgba(34, 197, 94, 0.4); }
.routes-item a { color: var(--text); text-decoration: none; font-weight: 500; font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace; font-size: 12px; }
.routes-item a:hover { color: var(--accent); }


/* === CLUSTER STACK === */
.stack-group {
    margin-bottom: 12px;
}
.stack-group:last-child { margin-bottom: 0; }
.stack-group-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.stack-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.stack-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.stack-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 6px;
    color: var(--text);
}
.stack-chip--blue {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.15);
}
.stack-chip--orange {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.15);
}
.stack-chip--cyan {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.15);
}
.stack-chip--red {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
}
.stack-chip--purple {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.15);
}
.stack-chip--teal {
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.15);
}
.stack-chip--green {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

/* === MISC TILES === */
.blog-placeholder { text-align: center; padding: 20px 0; color: var(--text-muted); }
.blog-placeholder-icon { font-size: 28px; display: block; margin-bottom: 6px; }
.blog-placeholder p { font-size: 13px; }
.tile-blog { display: flex; flex-direction: column; }
.blog-card { display: block; flex: 1; border-radius: var(--radius-sm); overflow: hidden; text-decoration: none; transition: opacity 0.2s; min-height: 0; }
.blog-card:hover { opacity: 0.85; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-sm); }
.cert-badge { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.cert-badge:hover { text-decoration: none; }
.cert-aws-icon { flex-shrink: 0; width: 36px; height: 36px; object-fit: contain; }
.cert-name { font-weight: 600; font-size: 14px; }
.cert-issuer { font-size: 12px; color: var(--text-muted); }
.now-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.now-list li { font-size: 13px; padding-left: 16px; position: relative; color: var(--text); }
.now-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }
.edu-school { font-weight: 600; font-size: 14px; }
.edu-program { font-size: 13px; color: var(--text-muted); }
.contact-links { display: flex; flex-direction: column; gap: 10px; }
.contact-link { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.contact-link:hover { color: var(--accent); text-decoration: none; }

/* === FOOTER === */
.site-footer { text-align: center; padding: 24px; font-size: 12px; color: var(--text-muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .hero-profile { padding: 76px 16px 40px; min-height: 100dvh; gap: 28px; }
    .hero-profile-photo { transform: translateY(0); }
    .avatar-frame { width: 400px; height: 400px; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); padding: 16px 16px 40px; scroll-margin-top: 72px; }
    .tile-about { grid-column: 1 / 3; grid-row: auto; }
    .tile-release { grid-column: 1 / 3; grid-row: auto; }
    .tile-experience { grid-column: 1 / 3; grid-row: auto; }
    .tile-blog { grid-column: 1; grid-row: auto; }
    .tile-certs { grid-column: 2; grid-row: auto; order: 10; }
    .section-divider { grid-column: 1 / 3; order: 50; }
    .tile-status { grid-column: 1 / 3; grid-row: auto; order: 51; }
    .tile-specs { grid-column: 1 / 3; grid-row: auto; order: 52; }
    .tile-routes { grid-column: 1 / 3; grid-row: auto; order: 53; }
    .tile-education { grid-column: 1 / 3; grid-row: auto; order: 54; }
    .tile-stack { grid-column: 1 / 3; grid-row: auto; order: 55; }
}
@media (max-width: 600px) {
    .hero-profile {
        padding: 72px 12px 36px;
        gap: 14px;
        min-height: 100dvh;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .hero-profile-content { align-items: center; }
    .hero-profile .social-row { justify-content: center; }
    .hero-profile::before { display: none; }
    .avatar-frame { width: 300px; height: 300px; }
    .hero-bg-shape-two { right: 0; bottom: 18%; }
    .profile-name { font-size: 34px; line-height: 1; margin-bottom: 8px; max-width: 11ch; }
    .profile-value { font-size: 17px; margin-bottom: 8px; max-width: 24ch; margin-left: auto; margin-right: auto; }
    .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
    .hero-cta-row { justify-content: center; }
    .profile-meta { margin-bottom: 12px; }
    .hero-scroll-text { font-size: 10px; }
    .bento-grid { grid-template-columns: 1fr; padding: 14px 12px 32px; scroll-margin-top: 64px; }
    .bento-grid .tile { grid-column: 1 !important; grid-row: auto !important; }
    .tile-certs { order: 10; }
    .section-divider { order: 50; }
    .tile-status { order: 51; }
    .tile-specs { order: 52; }
    .tile-routes { order: 53; }
    .tile-stack { order: 54; }
    .tile-release { order: 98; }
    .tile-contact { order: 99; }
    .site-header { padding: 16px; }
    .tile-release { min-height: auto; padding: 14px 16px; }

}

@media (prefers-reduced-motion: reduce) {
    html,
    html:focus-within {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-scroll,
    .hero-reveal,
    .hero-photo-reveal {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* === PAGES (projects/blog) === */
.page-header { max-width: 1100px; margin: 0 auto; padding: 0 24px 40px; }
.page-header h1 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.page-header p { color: var(--text-muted); font-size: 15px; }
.page-content { max-width: 1100px; margin: 0 auto; padding: 0 24px 60px; }
.project-card { background: var(--bg-tile); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; transition: border-color 0.2s, transform 0.2s; }
.project-card:hover { transform: translateY(-2px); }
.project-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.project-card h3 a { color: var(--text); }
.project-card h3 a:hover { color: var(--accent); }
.project-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 10px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 11px; font-weight: 500; padding: 3px 8px; background: var(--accent-soft); border-radius: 6px; color: var(--text-muted); }
.blog-entry { background: var(--bg-tile); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; transition: border-color 0.2s, transform 0.2s; }
.blog-entry:hover { transform: translateY(-2px); }
.blog-entry-link { text-decoration: none; color: inherit; display: block; }
.blog-entry-link:hover { text-decoration: none; }
.blog-entry-img { width: 100%; height: auto; border-radius: var(--radius-sm); margin-bottom: 14px; display: block; }
.blog-entry h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.blog-date { font-size: 12px; color: var(--text-muted); }
