/* ===========================================
   Animations
   =========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes neuralPulse {
    0%, 100% { opacity: 0.05; transform: scale(1); }
    50% { opacity: 0.12; transform: scale(1.05); }
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(34, 211, 238, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ===========================================
   Design Tokens & Bootstrap Dark Overrides
   =========================================== */
:root,
[data-bs-theme="dark"] {
    --color-bg: #050a12;
    --color-bg-secondary: #0a1628;
    --color-text: #e2e8f0;
    --color-text-muted: #64748b;
    --color-accent: #22d3ee;
    --color-accent-hover: #67e8f9;
    --color-accent-muted: #0ea5e9;
    --color-border: rgba(34, 211, 238, 0.08);
    --color-code-bg: #0a1628;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', Menlo, Consolas, monospace;

    --max-width: 720px;
    --header-height: 64px;

    --bs-body-bg: #050a12;
    --bs-body-color: #e2e8f0;
    --bs-border-color: rgba(34, 211, 238, 0.08);
    --bs-link-color: #22d3ee;
    --bs-link-hover-color: #67e8f9;
    --bs-tertiary-bg: #0a1628;
    --bs-secondary-bg: #0a1628;
    --bs-emphasis-color: #e2e8f0;
    --bs-body-font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --bs-font-monospace: 'JetBrains Mono', 'SF Mono', 'Fira Code', Menlo, Consolas, monospace;
}

/* ===========================================
   Focus & Caret
   =========================================== */
*:not(input):not(textarea):not(select):not([contenteditable="true"]) {
    caret-color: transparent;
}

/* ===========================================
   Body & Container
   =========================================== */
html {
    scrollbar-gutter: stable;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-mono);
    font-feature-settings: 'liga' 1, 'calt' 1;
}

::selection {
    background: rgba(34, 211, 238, 0.3);
    color: #cffafe;
}

.container {
    max-width: var(--max-width);
}

.site-content {
    flex: 1;
    padding: 3rem 0;
    padding-top: calc(var(--header-height) + 2rem);
}

.site-content > .container {
    background: rgba(5, 10, 18, 0.4);
    padding: 2rem 2rem;
    border-radius: 8px;
}

/* ===========================================
   Ambient Orbs (decorative background)
   =========================================== */
.ambient-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.ambient-orb-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(34, 211, 238, 0.08);
    border-radius: 50%;
    filter: blur(120px);
    animation: neuralPulse 4s ease-in-out infinite;
}

.ambient-orb-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(14, 165, 233, 0.08);
    border-radius: 50%;
    filter: blur(100px);
    animation: neuralPulse 4s ease-in-out infinite;
    animation-delay: 2s;
}

/* ===========================================
   Glass Card
   =========================================== */
.glass-card {
    background: rgba(5, 10, 18, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 211, 238, 0.08);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(34, 211, 238, 0.05);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.glass-card:hover {
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(34, 211, 238, 0.1), inset 0 1px 0 rgba(34, 211, 238, 0.1);
    transform: translateY(-2px);
}

/* ===========================================
   Header (glass nav)
   =========================================== */
.site-header {
    height: var(--header-height);
    background: rgba(5, 10, 18, 0.8) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(34, 211, 238, 0.1) !important;
    z-index: 50;
}

.site-logo {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.02em;
}

.site-logo:hover {
    color: var(--color-accent) !important;
}

.pulse-dot-wrapper {
    position: relative;
    display: inline-flex;
    height: 12px;
    width: 12px;
}

.pulse-dot-ping {
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.75);
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-dot-core {
    position: relative;
    display: inline-flex;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #22d3ee;
    animation: pulseDot 2s infinite;
}

.nav-links .nav-link {
    color: var(--color-text-muted);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

.nav-links .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    box-shadow: 0 0 8px rgba(34, 211, 238, 0.8);
    transition: width 0.25s ease;
}

.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
    width: 100%;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
    color: var(--color-accent);
}

.nav-social-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.nav-social a {
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    transition: color 0.2s, filter 0.2s;
}

.nav-social a:hover {
    color: var(--color-accent);
    filter: drop-shadow(0 0 5px rgba(34, 211, 238, 0.5));
}

.nav-social i {
    font-size: 1.2rem;
}

/* ===========================================
   Hero (Homepage)
   =========================================== */
.hero {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: none;
    animation: fadeInUp 0.6s ease-out both;
    position: relative;
}

.hero-glass {
    position: relative;
    overflow: hidden;
    background: rgba(5, 10, 18, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 211, 238, 0.08);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(34, 211, 238, 0.05);
    border-radius: 16px;
    padding: 2rem;
}

/* Corner accent lines */
.hero-corner {
    position: absolute;
    width: 8px;
    height: 8px;
}

.hero-corner--tl {
    top: 0; left: 0;
    border-top: 1px solid rgba(34, 211, 238, 0.5);
    border-left: 1px solid rgba(34, 211, 238, 0.5);
    border-top-left-radius: 2px;
}

.hero-corner--tr {
    top: 0; right: 0;
    border-top: 1px solid rgba(34, 211, 238, 0.5);
    border-right: 1px solid rgba(34, 211, 238, 0.5);
    border-top-right-radius: 2px;
}

.hero-corner--bl {
    bottom: 0; left: 0;
    border-bottom: 1px solid rgba(34, 211, 238, 0.5);
    border-left: 1px solid rgba(34, 211, 238, 0.5);
    border-bottom-left-radius: 2px;
}

.hero-corner--br {
    bottom: 0; right: 0;
    border-bottom: 1px solid rgba(34, 211, 238, 0.5);
    border-right: 1px solid rgba(34, 211, 238, 0.5);
    border-bottom-right-radius: 2px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    color: var(--color-accent);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    font-size: 0.75rem;
}

.hero h1 {
    font-size: 2.25rem;
    margin: 0 0 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.hero-name-highlight {
    color: var(--color-accent);
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.3));
}

.cursor-blink {
    display: inline-block;
    width: 10px;
    height: 1em;
    background: var(--color-accent);
    margin-left: 4px;
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
}

.hero-tagline {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.hero-tagline-ai {
    color: #cffafe;
    font-weight: 500;
}

.hero-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.hero-social a:hover {
    color: var(--color-accent);
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
    transform: scale(1.1);
}

.hero-social i {
    font-size: 1.25rem;
}

/* ===========================================
   Post List (Homepage)
   =========================================== */
.post-list h2 {
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
}

.post-card {
    position: relative;
    background: rgba(5, 10, 18, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 211, 238, 0.08);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(34, 211, 238, 0.05);
    border-radius: 12px;
    padding: 1.5rem 1.5rem 1.5rem 1.75rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out both;
    transition: all 0.3s ease;
    overflow: hidden;
}

.post-card:nth-child(1) { animation-delay: 100ms; }
.post-card:nth-child(2) { animation-delay: 200ms; }
.post-card:nth-child(3) { animation-delay: 300ms; }
.post-card:nth-child(4) { animation-delay: 400ms; }
.post-card:nth-child(5) { animation-delay: 500ms; }

.post-card:hover {
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(34, 211, 238, 0.1), inset 0 1px 0 rgba(34, 211, 238, 0.1);
    transform: translateY(-2px);
}

/* Hover gradient overlay */
.post-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(34, 211, 238, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    border-radius: 12px;
}

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

/* Left border accent */
.post-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: background 0.3s;
    border-radius: 12px 0 0 12px;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.post-card:hover::after {
    background: rgba(34, 211, 238, 0.8);
}

.post-title {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
    display: inline-block;
    transition: color 0.3s;
}

.post-card:hover .post-title,
.post-title:hover {
    color: var(--color-accent);
}

.post-meta {
    color: var(--color-text-muted);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.meta-icon {
    font-size: 0.8rem;
    flex-shrink: 0;
    color: var(--color-text-muted);
}

.meta-icon + time,
.meta-icon + .post-readtime-text,
.meta-icon + span {
    margin-right: 0.4rem;
}

.post-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    line-height: 1.6;
    transition: color 0.3s;
}

.post-card:hover .post-description {
    color: var(--color-text);
}

/* Read sequence hover text */
.read-sequence {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-top: 0.75rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s, transform 0.3s;
}

.post-card:hover .read-sequence {
    opacity: 1;
    transform: translateX(0);
}

/* ===========================================
   Blog Post (Article Page)
   =========================================== */
.blog-post .post-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    animation: fadeInUp 0.5s ease-out both;
}

.blog-post .post-header h1 {
    font-size: 2.25rem;
    line-height: 1.3;
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.blog-post .post-header .post-meta {
    margin-top: 0.75rem;
    font-size: 0.875rem;
}

.post-tags {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    color: var(--color-accent);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    background: var(--color-bg-secondary);
    padding: 0.15rem 0.6rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: border-color 0.2s;
}

.tag:nth-child(3n+2) {
    color: var(--color-accent-muted);
}

.tag:nth-child(3n+3) {
    color: #a78bfa;
}

.tag:hover {
    border-color: currentColor;
}

/* Post content typography */
.post-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding-left: 0.75rem;
    border-left: 3px solid var(--color-accent);
}

.post-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    font-weight: 600;
    padding-left: 0.75rem;
    border-left: 3px solid var(--color-accent-muted);
}

.post-content p {
    margin-bottom: 1.25rem;
}

.post-content ul,
.post-content ol {
    margin: 0 0 1.25rem 1.5rem;
}

.post-content li {
    margin-bottom: 0.25rem;
}

.post-content strong {
    font-weight: 600;
    color: var(--color-text);
}

.post-content blockquote {
    border-left: 3px solid var(--color-accent);
    padding-left: 1.25rem;
    color: var(--color-text-muted);
    margin: 1.5rem 0;
    font-style: italic;
}

.post-content code {
    font-family: var(--font-mono);
    background: var(--color-code-bg);
    padding: 0.15em 0.4em;
    border-radius: 4px;
    font-size: 0.875em;
}

.post-content pre {
    background: var(--color-code-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.25rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    line-height: 1.5;
}

.post-content pre code {
    background: none;
    padding: 0;
    border-radius: 0;
    font-size: 0.875rem;
}

.post-content img {
    border-radius: 8px;
    margin: 1.5rem 0;
    max-width: 100%;
    height: auto;
}

.post-content hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 2rem 0;
}

.post-content a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

.post-content th,
.post-content td {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--color-border);
    text-align: left;
}

.post-content th {
    background: var(--color-bg-secondary);
    font-weight: 600;
}

/* ===========================================
   Post Footer (Tags, Share, Nav)
   =========================================== */
.post-footer {
    margin-top: 3rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.post-footer .post-tags {
    margin-bottom: 1.5rem;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.post-share-label {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.post-share-links {
    display: flex;
    gap: 0.5rem;
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-secondary);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    text-decoration: none;
}

.share-link:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.share-link.copied {
    color: #4ade80;
    border-color: #4ade80;
}

.share-link i {
    font-size: 1.1rem;
}

.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.post-nav-link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.post-nav-link:hover {
    border-color: var(--color-accent);
    background: var(--color-bg-secondary);
}

.post-nav-direction {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.post-nav-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1.4;
}

.post-nav-link:hover .post-nav-title {
    color: var(--color-accent-hover);
}

.post-nav-next {
    text-align: right;
    grid-column: 2;
}

.post-nav-next .post-nav-direction {
    justify-content: flex-end;
}

/* ===========================================
   Footer
   =========================================== */
.site-footer {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer-pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.5);
    animation: pulseDot 2s infinite;
}

.footer-social a {
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--color-accent);
}

.footer-social i {
    font-size: 1.2rem;
}

.footer-license {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    font-family: var(--font-mono);
}

/* ===========================================
   Pagination (Bootstrap overrides)
   =========================================== */
.pagination {
    --bs-pagination-bg: transparent;
    --bs-pagination-border-color: var(--color-border);
    --bs-pagination-color: var(--color-accent);
    --bs-pagination-hover-bg: var(--color-bg-secondary);
    --bs-pagination-hover-border-color: var(--color-accent);
    --bs-pagination-hover-color: var(--color-accent-hover);
    --bs-pagination-active-bg: var(--color-accent);
    --bs-pagination-active-border-color: var(--color-accent);
    --bs-pagination-active-color: #fff;
    --bs-pagination-disabled-bg: transparent;
    --bs-pagination-disabled-border-color: var(--color-border);
    --bs-pagination-disabled-color: var(--color-text-muted);
}

/* ===========================================
   Responsive
   =========================================== */
@media (max-width: 575.98px) {
    .nav-social {
        display: none !important;
    }

    .navbar-collapse {
        background: var(--color-bg-secondary);
        border: 1px solid var(--color-border);
        border-radius: 8px;
        padding: 0.75rem 1rem;
        margin-top: 0.5rem;
    }

    .nav-links .nav-link {
        font-size: 1.25rem;
        padding: 0.6rem 0;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-glass {
        padding: 1.5rem 1rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .blog-post .post-header h1 {
        font-size: 1.75rem;
    }

    .site-content {
        padding-top: calc(var(--header-height) + 1.5rem);
        padding-bottom: 2rem;
    }

    .site-content > .container {
        padding: 1rem 0.75rem;
        border-radius: 0;
    }

    .post-card {
        padding: 1.25rem 1rem 1.25rem 1.25rem;
    }

    .post-meta {
        font-size: 0.75rem;
        gap: 0.35rem;
        flex-wrap: wrap;
    }

    .blog-post .post-header .post-meta {
        font-size: 0.8rem;
    }

    body {
        font-size: 1.2rem;
    }

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

    .post-nav-next {
        text-align: left;
        grid-column: 1;
    }

    .post-nav-next .post-nav-direction {
        justify-content: flex-start;
    }

    .post-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .ambient-orb-1 {
        width: 300px;
        height: 300px;
    }

    .ambient-orb-2 {
        width: 250px;
        height: 250px;
    }

    .footer-license {
        font-size: 1rem;
    }

    .footer-social i {
        font-size: 1.4rem;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .hero h1 {
        font-size: 2rem;
    }

    .ambient-orb-1 {
        width: 400px;
        height: 400px;
    }

    .ambient-orb-2 {
        width: 350px;
        height: 350px;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.75rem;
    }

    .hero-glass {
        padding: 3rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .post-card {
        padding: 2rem 2rem 2rem 2.25rem;
    }

    .post-title {
        font-size: 1.5rem;
    }

    .post-description {
        font-size: 1rem;
    }
}
