:root {
    --swift-orange: #F05138;
    --swift-orange-light: #FD6D42;
    --swift-dark: #000000;
    --swift-dark-alt: #111111;
    --swift-dark-card: #1a1a1a;
    --swift-white: #ffffff;
    --swift-gray-100: #f5f5f7;
    --swift-gray-200: #e8e8ed;
    --swift-gray-400: #86868b;
    --swift-gray-600: #6e6e73;
    --swift-gray-800: #1d1d1f;
    --swift-text: #1d1d1f;
    --swift-text-muted: #6e6e73;
    --gradient-orange: linear-gradient(135deg, #F05138 0%, #FD6D42 50%, #F7CE46 100%);
}

/* Force light theme */
[data-bs-theme] {
    color-scheme: light !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Bitcount', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    color: var(--swift-text);
    background-color: var(--swift-dark) !important;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: rgba(240, 81, 56, 0.3);
}

/* ========================================
   CONTAINER
   ======================================== */
.swift-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    background-color: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 0.8rem 2rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none !important;
    z-index: 1000;
}

.navbar-brand-custom {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--swift-white) !important;
    letter-spacing: -0.3px;
}

.navbar .nav-link,
.navbar a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    transition: color 0.2s;
    padding: 0.5rem 1rem !important;
}

.navbar .nav-link:hover,
.navbar a:hover {
    color: var(--swift-white) !important;
}

/* ========================================
   HERO SECTION — swift.org style
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--swift-dark);
    overflow: hidden;
    padding-top: 60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(240, 81, 56, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.hero-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--swift-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-heading {
    font-size: 4rem;
    font-weight: 900;
    color: var(--swift-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-gradient-text {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--swift-gray-400);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-btn {
    display: inline-block;
    background: var(--swift-orange) !important;
    color: var(--swift-white) !important;
    padding: 0.85rem 2rem !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    border-radius: 980px !important;
    text-decoration: none;
    transition: all 0.3s;
    border: none !important;
}

.hero-btn:hover {
    background: var(--swift-orange-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 81, 56, 0.3);
}

.hero-btn-outline {
    display: inline-block;
    background: transparent !important;
    color: var(--swift-white) !important;
    padding: 0.85rem 2rem !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    border-radius: 980px !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-btn-outline:hover {
    border-color: var(--swift-white) !important;
    transform: translateY(-2px);
}

.hero-image-area {
    flex: 0 0 auto;
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated hero graphic */
.hero-floating-graphic {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-swift-svg {
    width: 180px;
    height: 180px;
    transition: transform 0.15s ease-out;
    animation: heroFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(240, 81, 56, 0.3));
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Code particles */
.hero-particle {
    position: absolute;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(240, 81, 56, 0.5);
    transition: transform 0.2s ease-out;
    animation: particlePulse 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-particle-1 { top: 10%; left: 5%; animation-delay: 0s; }
.hero-particle-2 { top: 5%; right: 10%; animation-delay: 0.8s; color: rgba(253, 109, 66, 0.5); }
.hero-particle-3 { bottom: 15%; left: 0%; animation-delay: 1.6s; }
.hero-particle-4 { bottom: 5%; right: 5%; animation-delay: 2.4s; color: rgba(247, 206, 70, 0.5); }
.hero-particle-5 { top: 45%; left: -10%; animation-delay: 1.2s; }
.hero-particle-6 { top: 40%; right: -5%; animation-delay: 2s; color: rgba(253, 109, 66, 0.4); }

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

/* Orbiting rings */
.hero-orbit {
    position: absolute;
    border: 1px solid rgba(240, 81, 56, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    pointer-events: none;
}

.hero-orbit-1 {
    width: 240px;
    height: 240px;
    margin-left: -120px;
    margin-top: -120px;
    animation: orbitSpin 20s linear infinite;
    border-style: dashed;
}

.hero-orbit-2 {
    width: 320px;
    height: 320px;
    margin-left: -160px;
    margin-top: -160px;
    animation: orbitSpin 30s linear infinite reverse;
    border-color: rgba(247, 206, 70, 0.1);
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section-dark {
    background-color: var(--swift-dark);
    padding: 6rem 2rem;
}

.section-white {
    background-color: var(--swift-gray-100);
    padding: 6rem 2rem;
}

.swift-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: inherit;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.section-dark .swift-section-title {
    color: var(--swift-white);
}

.section-white .swift-section-title {
    color: var(--swift-text);
}

.swift-section-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--swift-gray-400);
    margin-bottom: 3.5rem;
}

.section-white .swift-section-subtitle {
    color: var(--swift-text-muted);
}

/* ========================================
   EXPERIENCE SECTION — Timeline
   ======================================== */
.exp-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid rgba(240, 81, 56, 0.2);
}

.exp-timeline-card {
    position: relative;
    background: var(--swift-dark-card);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s, transform 0.3s;
}

.exp-timeline-card::before {
    content: '';
    position: absolute;
    left: -2.65rem;
    top: 1.8rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--swift-orange);
    border: 2px solid var(--swift-dark);
}

.exp-timeline-card:hover {
    border-color: rgba(240, 81, 56, 0.3);
    transform: translateX(4px);
}

.exp-header {
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.exp-company {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--swift-white);
    margin-bottom: 0.15rem;
}

.exp-role {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--swift-orange);
    margin-bottom: 0.2rem;
}

.exp-period {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--swift-gray-400);
}

.exp-highlight {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 2px solid rgba(240, 81, 56, 0.15);
}

/* ========================================
   FEATURE HIGHLIGHTS — Card Grid
   ======================================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.feature-card-item {
    background: var(--swift-white);
    border: 1px solid var(--swift-gray-200);
    border-radius: 14px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-orange);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.feature-card-item:hover::before {
    opacity: 1;
}

.fc-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.fc-icon i {
    font-size: 1.5rem;
}

.fc-perf { color: #F05138; background: rgba(240, 81, 56, 0.08); }
.fc-prod { color: #007AFF; background: rgba(0, 122, 255, 0.08); }
.fc-user { color: #AF52DE; background: rgba(175, 82, 222, 0.08); }
.fc-vers { color: #30D158; background: rgba(48, 209, 88, 0.08); }

.fc-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--swift-text);
    margin-bottom: 0.6rem;
}

.fc-desc {
    font-size: 0.92rem;
    color: var(--swift-text-muted);
    line-height: 1.7;
}

/* ========================================
   PROJECTS SECTION
   ======================================== */
.projects-grid {
    max-width: 100%;
}

.projects-grid .col {
    padding: 0.6rem !important;
}

.project-card {
    background: var(--swift-dark-card);
    border-radius: 14px;
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    border-color: rgba(240, 81, 56, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.project-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.project-icon i {
    font-size: 1.3rem;
    color: white;
}

.project-pocketfm { background: linear-gradient(135deg, #FF6B00, #FF9500); }
.project-pocketfm2 { background: linear-gradient(135deg, #FF9500, #FFCC00); }
.project-google { background: linear-gradient(135deg, #4285F4, #34A853); }
.project-practo { background: linear-gradient(135deg, #F05138, #FD6D42); }
.project-video { background: linear-gradient(135deg, #5856D6, #AF52DE); }
.project-flam { background: linear-gradient(135deg, #FF9500, #FF3B30); }
.project-trailer { background: linear-gradient(135deg, #30D158, #34C759); }

.project-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--swift-white);
    margin-bottom: 0.5rem;
}

.project-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
}

.project-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 6px;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ========================================
   TECH SECTION
   ======================================== */
.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: left;
}

.tech-cat-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--swift-text-muted);
    margin-bottom: 1rem;
    text-align: left;
}

.tech-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: flex-start;
}

.tech-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--swift-white);
    border: 1px solid var(--swift-gray-200);
    border-radius: 0;
    padding: 0.6rem 1rem;
    transition: all 0.2s;
    cursor: pointer;
    margin: 0;
    border-right: none;
}

.tech-pill:last-child {
    border-right: 1px solid var(--swift-gray-200);
}

.tech-pill:first-child {
    border-radius: 8px 0 0 8px;
}

.tech-pill:last-child {
    border-radius: 0 8px 8px 0;
}

.tech-pill:hover {
    border-color: var(--swift-orange);
    box-shadow: 0 4px 12px rgba(240, 81, 56, 0.1);
    transform: translateY(-2px);
}

.tech-pill-link,
.tech-pill-link:hover,
.tech-pill-link:focus,
.tech-pill-link:active,
.tech-pill-link:visited {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none !important;
    color: inherit;
    border-bottom: none !important;
}

.tech-pill-link i {
    font-size: 1.2rem;
}

.tech-pill-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.tech-pill-icon i {
    font-size: 1.2rem;
}

.tc-swift { color: #F05138; }
.tc-objc { color: #438EFF; }
.tc-cpp { color: #00599C; }
.tc-uikit { color: #007AFF; }
.tc-swiftui { color: #0071E3; }
.tc-avkit { color: #AF52DE; }
.tc-coredata { color: #5856D6; }
.tc-arkit { color: #FF9500; }
.tc-xcode { color: #147EFB; }
.tc-git { color: #F05032; }
.tc-firebase { color: #FFA611; }
.tc-cocoapods { color: #EE3322; }
.tc-spm { color: #F05138; }
.tc-mvvm { color: #30D158; }
.tc-gcd { color: #5AC8FA; }
.tc-async { color: #FF2D55; }
.tc-sdui { color: #BF5AF2; }

.tech-pill-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--swift-text);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-wrapper {
    max-width: 700px;
}

.about-text {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.about-link {
    color: var(--swift-orange) !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.about-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ========================================
   FOOTER — swift.org style
   ======================================== */
.site-footer {
    background: var(--swift-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--swift-white);
    margin-bottom: 0.3rem;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--swift-gray-400);
    max-width: 300px;
    line-height: 1.6;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--swift-gray-400);
    margin-bottom: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--swift-white) !important;
}

.footer-bottom {
    max-width: 980px;
    margin: 0 auto;
    padding-top: 1.5rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--swift-gray-600);
}

/* ========================================
   BOOTSTRAP OVERRIDES
   ======================================== */
.card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.card-body {
    padding: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bitcount', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

a {
    transition: all 0.2s;
}

.badge {
    display: none !important;
}

.btn {
    border-radius: 980px !important;
    font-weight: 600 !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media only screen and (max-width: 992px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-heading {
        font-size: 3rem;
    }

    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-area {
        margin-top: 2rem;
    }

    .hero-image-area {
        width: 250px;
        height: 250px;
    }

    .hero-floating-graphic {
        width: 220px;
        height: 220px;
    }

    .hero-swift-svg {
        width: 140px;
        height: 140px;
    }

    .hero-orbit-1 {
        width: 200px;
        height: 200px;
        margin-left: -100px;
        margin-top: -100px;
    }

    .hero-orbit-2 {
        width: 260px;
        height: 260px;
        margin-left: -130px;
        margin-top: -130px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }
}

@media only screen and (max-width: 768px) {
    .hero-heading {
        font-size: 2.5rem;
    }

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

    .swift-section-title {
        font-size: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .exp-timeline-card {
        padding: 1.2rem 1.5rem;
    }

    .exp-company {
        font-size: 1.1rem;
    }

    .exp-timeline {
        padding-left: 1.5rem;
    }

    .exp-timeline-card::before {
        left: -2.15rem;
    }

    .hero-image-area {
        width: 200px;
        height: 200px;
    }

    .hero-floating-graphic {
        width: 180px;
        height: 180px;
    }

    .hero-swift-svg {
        width: 110px;
        height: 110px;
    }

    .hero-particle {
        font-size: 0.7rem;
    }
}

@media only screen and (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-btn, .hero-btn-outline {
        width: 100%;
        text-align: center;
    }

    .section-dark, .section-white {
        padding: 4rem 1.5rem;
    }

    .tech-pill-row {
        gap: 0;
    }

    .tech-pill {
        padding: 0.5rem 0.8rem;
        border-radius: 0;
    }

    .blog-cards-row {
        flex-direction: column;
    }

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

/* ========================================
   BLOG SECTION — Home Page Cards
   ======================================== */
.blog-cards-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.blog-card {
    flex: 1;
    background: var(--swift-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: rgba(240, 81, 56, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(240, 81, 56, 0.1);
}

.blog-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--swift-orange);
    background: rgba(240, 81, 56, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--swift-white);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.blog-card-stretched-link,
.blog-card-stretched-link:hover,
.blog-card-stretched-link:visited {
    color: inherit !important;
    text-decoration: none !important;
}

.blog-card-stretched-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.blog-card-summary {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 0.8rem;
}

.blog-card-meta {
    font-size: 0.75rem;
    color: var(--swift-gray-400);
    margin-top: auto;
}

.blog-more-wrapper {
    text-align: center;
}

.blog-more-btn {
    display: inline-block !important;
}

/* ========================================
   BLOG LIST PAGE
   ======================================== */
.blog-list-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-card-full {
    background: var(--swift-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.blog-card-full:hover {
    border-color: rgba(240, 81, 56, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 81, 56, 0.1);
}

.blog-card-title-full {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--swift-white);
    margin-bottom: 0.6rem;
}

.blog-card-summary-full {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 700px;
}

/* ========================================
   BLOG POST PAGE — Medium-like
   ======================================== */
.blog-post-page {
    background: var(--swift-dark);
    padding-top: 80px;
}

.blog-post-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-post-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-post-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--swift-white);
    line-height: 1.15;
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
}

.blog-post-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.blog-post-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.blog-post-author,
.blog-post-date,
.blog-post-read-time {
    font-size: 0.85rem;
    color: var(--swift-gray-400);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-post-author i,
.blog-post-date i,
.blog-post-read-time i {
    font-size: 1rem;
    color: var(--swift-orange);
}

.blog-post-body {
    color: rgba(255, 255, 255, 0.85);
}

.blog-h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--swift-white);
    margin-top: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.blog-h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--swift-white);
    margin-top: 2rem;
    margin-bottom: 0.6rem;
}

.blog-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

.blog-list {
    margin-bottom: 1.5rem;
}

.blog-list-item {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
    position: relative;
}

.blog-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--swift-orange);
}

.blog-code-block {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0 2rem;
    overflow-x: auto;
}

.blog-code-text {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(240, 81, 56, 0.9);
    white-space: pre-wrap;
    word-break: break-word;
}

.blog-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.blog-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 1.2rem;
}

.blog-feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--swift-orange);
    margin-bottom: 0.4rem;
}

.blog-feature-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Blog responsive */
@media only screen and (max-width: 768px) {
    .blog-cards-row {
        flex-direction: column;
    }

    .blog-post-title {
        font-size: 2rem;
    }

    .blog-post-subtitle {
        font-size: 1.1rem;
    }

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

    .blog-post-container {
        padding: 1rem;
    }
}
