/* Self-hosted fonts  Jost + Playfair Display */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/jost-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/jost-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/jost-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/playfair-500.woff2') format('woff2');
}

/* ===  RESET === */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #0D0B0B;
}
/* =====================================================
   ??c?A??? KSM Theme
   ???A? ???base.css (?????u??? article-)
   ===================================================== */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO ?????===== */
.article-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.article-hero .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

/* ???  ???? ?????/
.article-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(
            to right,
            rgba(13, 11, 11, 0.95) 0%,
            rgba(13, 11, 11, 0.6) 35%,
            rgba(13, 11, 11, 0.1) 60%,
            rgba(13, 11, 11, 0) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(13, 11, 11, 0) 0%,
            rgba(13, 11, 11, 0.2) 60%,
            rgba(13, 11, 11, 1) 100%
        );
}

/* Blob ?????/
.article-hero .hero-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.4;
    bottom: 15%;
    left: 5%;
    background: radial-gradient(circle, #a855f7 0%, #7c3aed 30%, transparent 60%);
    animation: fadeIn 1.5s ease forwards;
}

/* ?? blob ????? */
.article-hero[data-category="trauma"] .hero-blob {
    background: radial-gradient(circle, #a855f7 0%, #7c3aed 30%, transparent 60%);
}
.article-hero[data-category="relationships"] .hero-blob {
    background: radial-gradient(circle, #ec4899 0%, #db2777 30%, transparent 60%);
}
.article-hero[data-category="self"] .hero-blob {
    background: radial-gradient(circle, #f97316 0%, #ea580c 30%, transparent 60%);
}
.article-hero[data-category="growth"] .hero-blob {
    background: radial-gradient(circle, #14b8a6 0%, #0d9488 30%, transparent 60%);
}
.article-hero[data-category="depression"] .hero-blob {
    background: radial-gradient(circle, #3b82f6 0%, #2563eb 30%, transparent 60%);
}
.article-hero[data-category="anxiety"] .hero-blob {
    background: radial-gradient(circle, #eab308 0%, #ca8a04 30%, transparent 60%);
}

.article-hero .hero-content {
    position: absolute;
    bottom: 0px;
    padding-bottom: 30px !important;
    padding-top: 80px !important;
    left: 0;
    right: 0;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease forwards;
}

.article-hero .hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px !important;
    margin-top: 30px !important;
    flex-wrap: wrap;
}

.article-hero .hero-tag {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

/* ?? ??????? */
.article-hero[data-category="trauma"] .hero-tag {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}
.article-hero[data-category="relationships"] .hero-tag {
    background: rgba(236, 72, 153, 0.2);
    color: #f472b6;
}
.article-hero[data-category="self"] .hero-tag {
    background: rgba(249, 115, 22, 0.2);
    color: #fdba74;
}
.article-hero[data-category="growth"] .hero-tag {
    background: rgba(20, 184, 166, 0.2);
    color: #5eead4;
}
.article-hero[data-category="depression"] .hero-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}
.article-hero[data-category="anxiety"] .hero-tag {
    background: rgba(234, 179, 8, 0.2);
    color: #fde047;
}

.article-hero .hero-date,
.article-hero .hero-reading-time {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-style: normal;
    color: rgba(192, 191, 191, 0.6);
    white-space: nowrap;
}

.article-hero .hero-separator {
    color: rgba(192, 191, 191, 0.4);
    font-size: 0.8rem;
}

.article-hero .hero-date::after {
    display: none;
}

.article-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 3rem;
    color: #fff;
    line-height: 1.2;
    max-width: 800px;
    margin-top: 20px !important;
}

/* ===== ??o?A??===== */
.article-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    font-family: 'Jost', sans-serif;
}

.article-content p {
    font-family: 'Jost', sans-serif !important;
    font-style: normal !important;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.8em;
    color: rgba(192, 191, 191, 0.9);
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #E8E6E6;
    margin: 2.5em 0 1em;
    padding-left: 20px;
    border-left: 3px solid #a855f7;
}

/* ????H2 ????? */
.article-content[data-category="trauma"] h2 { border-left-color: #a855f7; }
.article-content[data-category="relationships"] h2 { border-left-color: #ec4899; }
.article-content[data-category="self"] h2 { border-left-color: #f97316; }
.article-content[data-category="growth"] h2 { border-left-color: #14b8a6; }
.article-content[data-category="depression"] h2 { border-left-color: #3b82f6; }
.article-content[data-category="anxiety"] h2 { border-left-color: #eab308; }

.article-content h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: #E8E6E6;
    margin: 2em 0 0.8em;
}

/* ?u? ????/
.article-content a {
    color: #c084fc;
    text-decoration: none;
    border-bottom: 1px solid rgba(192, 132, 252, 0.3);
    transition: all 0.3s ease;
}

.article-content a:hover {
    color: #e879f9;
    border-bottom-color: rgba(232, 121, 249, 0.5);
}

/* ??u??-o???WordPress blockquote) */
.article-content blockquote,
.article-content .wp-block-quote,
.article-content .article-highlight {
    position: relative;
    margin: 2.5em 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border-left: none !important;
}

.article-content blockquote::before,
.article-content .wp-block-quote::before,
.article-content .article-highlight::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.3;
    top: -30px;
    right: -30px;
    background: radial-gradient(circle, #a855f7 0%, transparent 70%);
    z-index: -1;
}

.article-content blockquote p,
.article-content .wp-block-quote p,
.article-content .article-highlight p {
    font-family: 'Jost', sans-serif !important;
    font-size: 1.15rem;
    font-style: italic !important;
    color: rgba(232, 230, 230, 0.9);
    margin-bottom: 0;
}

/* ???????? ???ordPress ? o???
.article-content blockquote cite,
.article-content .wp-block-quote cite {
    display: none;
}

/* ===== CTA A??===== */
.article-cta {
    position: relative;
    max-width: 720px;
    margin: 0 auto 80px;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    text-align: center;
    overflow: visible;
}

.article-cta::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.4;
    top: -50px;
    left: -50px;
    background: radial-gradient(circle, #a855f7 0%, #7c3aed 50%, transparent 70%);
    z-index: -1;
}

.article-cta::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    bottom: -40px;
    right: -30px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    z-index: -1;
}

.article-cta .cta-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #E8E6E6;
    margin-bottom: 16px;
}

.article-cta .cta-text {
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    font-style: normal;
    color: rgba(192, 191, 191, 0.8);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.article-cta .cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 35px;
    position: relative;
    border: 2px solid transparent;
    background-image: linear-gradient(#0D0B0B, #0D0B0B), 
                      linear-gradient(90deg, #a855f7 0%, #ec4899 50%, #f97316 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3),
                0 0 40px rgba(236, 72, 153, 0.15);
}

.article-cta .cta-button:hover {
    background-image: linear-gradient(90deg, #a855f7 0%, #ec4899 50%, #f97316 100%), 
                      linear-gradient(90deg, #a855f7 0%, #ec4899 50%, #f97316 100%);
    color: #fff;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5),
                0 0 60px rgba(236, 72, 153, 0.4),
                0 0 90px rgba(249, 115, 22, 0.2);
}

/* ===== ?A?? A??===== */
.related-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

.related-section .related-title {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    font-size: 2rem;
    color: #E8E6E6;
    margin-bottom: 40px;
    text-align: center;
}

.related-section .related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.related-section .related-card {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.related-section .related-card::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    z-index: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    top: -30px;
    right: -20px;
}

.related-section .related-card:hover::before {
    opacity: 0.7;
    transform: scale(1.1);
}

/* ?? blob ? related cards */
.related-section .related-card[data-category="trauma"]::before {
    background: radial-gradient(circle, #a855f7 0%, #7c3aed 50%, transparent 70%);
}
.related-section .related-card[data-category="relationships"]::before {
    background: radial-gradient(circle, #ec4899 0%, #db2777 50%, transparent 70%);
}
.related-section .related-card[data-category="self"]::before {
    background: radial-gradient(circle, #f97316 0%, #ea580c 50%, transparent 70%);
}
.related-section .related-card[data-category="growth"]::before {
    background: radial-gradient(circle, #14b8a6 0%, #0d9488 50%, transparent 70%);
}
.related-section .related-card[data-category="depression"]::before {
    background: radial-gradient(circle, #3b82f6 0%, #2563eb 50%, transparent 70%);
}
.related-section .related-card[data-category="anxiety"]::before {
    background: radial-gradient(circle, #eab308 0%, #ca8a04 50%, transparent 70%);
}

.related-section .related-card-inner {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.related-section .related-card:hover .related-card-inner {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.12);
}

.related-section .related-tag {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 15px;
    margin-bottom: 14px;
    width: fit-content;
}

/* ?? ????related */
.related-section .related-card[data-category="trauma"] .related-tag {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
}
.related-section .related-card[data-category="relationships"] .related-tag {
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
}
.related-section .related-card[data-category="self"] .related-tag {
    background: rgba(249, 115, 22, 0.15);
    color: #fdba74;
}
.related-section .related-card[data-category="growth"] .related-tag {
    background: rgba(20, 184, 166, 0.15);
    color: #5eead4;
}
.related-section .related-card[data-category="depression"] .related-tag {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
}
.related-section .related-card[data-category="anxiety"] .related-tag {
    background: rgba(234, 179, 8, 0.15);
    color: #fde047;
}

.related-section .related-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: #E8E6E6;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.related-section .related-card:hover .related-card-title {
    color: #fff;
}

.related-section .related-card-excerpt {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-style: normal;
    color: rgba(192, 191, 191, 0.7);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== AA?? ===== */
@media (max-width: 900px) {
    .related-section .related-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .article-hero {
        height: 60vh;
        min-height: 400px;
    }

    .article-hero .hero-title {
        font-size: 2.2rem;
    }

    .article-hero .hero-content {
        padding: 40px 20px;
    }

    .article-hero .hero-blob {
        width: 200px;
        height: 200px;
        filter: blur(60px);
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .article-cta {
        padding: 40px 25px;
        margin-left: 16px;
        margin-right: 16px;
    }

    .article-cta .cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .article-hero .hero-title {
        font-size: 1.8rem;
    }

    .article-hero .hero-meta {
        gap: 10px;
    }

    .article-hero .hero-date::after {
        display: none;
    }

    .article-hero .hero-date,
    .article-hero .hero-reading-time {
        font-size: 0.8rem;
    }

    .article-content {
        padding: 40px 16px 60px;
    }

    .article-content p {
        font-size: 1rem;
    }

    .article-content blockquote,
    .article-content .wp-block-quote,
    .article-content .article-highlight {
        padding: 24px 20px;
    }

    .related-section {
        padding: 0 16px 80px;
    }

    .related-section .related-title {
        font-size: 1.6rem;
    }
}

/* =====================================================
   ??c???? A?A ? KSM Theme
   ?? u  ?? ??ob'? ?lassmorphism
   I?? ??o base.css
   ===================================================== */

/* ===== ?? A?A ===== */
.blog-section {
    padding: 140px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ??? ? ????? ????*/
.blog-header { animation: fadeInUp 0.8s ease forwards; }
.category-filter { animation: fadeInUp 0.8s ease 0.2s forwards; opacity: 0; }

.blog-card:nth-child(1) { transition-delay: 0.1s; }
.blog-card:nth-child(2) { transition-delay: 0.2s; }
.blog-card:nth-child(3) { transition-delay: 0.3s; }
.blog-card:nth-child(4) { transition-delay: 0.4s; }
.blog-card:nth-child(5) { transition-delay: 0.5s; }
.blog-card:nth-child(6) { transition-delay: 0.6s; }

/* ===== HEADER ===== */
.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    font-size: 3.2rem;
    color: #E8E6E6;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.blog-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    color: rgba(192, 191, 191, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===== ?? ??I?===== */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: rgba(192, 191, 191, 0.7);
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #E8E6E6;
}

.filter-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: #E8E6E6;
}

/* ??u????????*/
.filter-btn[data-filter="trauma"] {
    border-color: rgba(168, 85, 247, 0.4);
    color: rgba(192, 132, 252, 0.8);
}
.filter-btn[data-filter="trauma"]:hover,
.filter-btn[data-filter="trauma"].active {
    border-color: rgba(168, 85, 247, 0.7);
    background: rgba(168, 85, 247, 0.1);
    color: #c084fc;
}

.filter-btn[data-filter="relationships"] {
    border-color: rgba(236, 72, 153, 0.4);
    color: rgba(244, 114, 182, 0.8);
}
.filter-btn[data-filter="relationships"]:hover,
.filter-btn[data-filter="relationships"].active {
    border-color: rgba(236, 72, 153, 0.7);
    background: rgba(236, 72, 153, 0.1);
    color: #f472b6;
}

.filter-btn[data-filter="growth"] {
    border-color: rgba(20, 184, 166, 0.4);
    color: rgba(94, 234, 212, 0.8);
}
.filter-btn[data-filter="growth"]:hover,
.filter-btn[data-filter="growth"].active {
    border-color: rgba(20, 184, 166, 0.7);
    background: rgba(20, 184, 166, 0.1);
    color: #5eead4;
}

.filter-btn[data-filter="self"] {
    border-color: rgba(249, 115, 22, 0.4);
    color: rgba(253, 186, 116, 0.8);
}
.filter-btn[data-filter="self"]:hover,
.filter-btn[data-filter="self"].active {
    border-color: rgba(249, 115, 22, 0.7);
    background: rgba(249, 115, 22, 0.1);
    color: #fdba74;
}

.filter-btn[data-filter="depression"] {
    border-color: rgba(59, 130, 246, 0.4);
    color: rgba(147, 197, 253, 0.8);
}
.filter-btn[data-filter="depression"]:hover,
.filter-btn[data-filter="depression"].active {
    border-color: rgba(59, 130, 246, 0.7);
    background: rgba(59, 130, 246, 0.1);
    color: #93c5fd;
}

.filter-btn[data-filter="anxiety"] {
    border-color: rgba(234, 179, 8, 0.4);
    color: rgba(253, 224, 71, 0.8);
}
.filter-btn[data-filter="anxiety"]:hover,
.filter-btn[data-filter="anxiety"].active {
    border-color: rgba(234, 179, 8, 0.7);
    background: rgba(234, 179, 8, 0.1);
    color: #fde047;
}

/* ===== GRID ??? ? 2 ???==== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* ===== ??? ?BLOB'? ===== */
.blog-card {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    min-height: 420px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

/* Blob ?????*/
.blog-card::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    z-index: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.blog-card:hover::before {
    opacity: 0.8;
    transform: scale(1.1);
}

/* ??????lob'?? ??uo ????*/

/* ???   ??/??  */
.blog-card[data-category="trauma"]::before {
    background: radial-gradient(circle, #a855f7 0%, #7c3aed 50%, transparent 70%);
    top: -40px;
    right: -30px;
}

/* ? ?y - ???/??? */
.blog-card[data-category="relationships"]::before {
    background: radial-gradient(circle, #ec4899 0%, #db2777 50%, transparent 70%);
    bottom: -30px;
    left: -40px;
}

/* ?? ?? ?? - ???u?/
.blog-card[data-category="growth"]::before {
    background: radial-gradient(circle, #14b8a6 0%, #0d9488 50%, transparent 70%);
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
}

.blog-card[data-category="growth"]:hover::before {
    transform: translateY(-50%) scale(1.1);
}

/* ????? ? ?/y ?? */
.blog-card[data-category="self"]::before {
    background: radial-gradient(circle, #f97316 0%, #ea580c 50%, transparent 70%);
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.blog-card[data-category="self"]:hover::before {
    transform: translateX(-50%) scale(1.1);
}

/* h??? - ???/
.blog-card[data-category="depression"]::before {
    background: radial-gradient(circle, #3b82f6 0%, #2563eb 50%, transparent 70%);
    bottom: -40px;
    right: -30px;
}

/* ???- ???*/
.blog-card[data-category="anxiety"]::before {
    background: radial-gradient(circle, #eab308 0%, #ca8a04 50%, transparent 70%);
    top: -30px;
    left: -40px;
}

/* ===== GLASSMORPHISM ??? ===== */
.card-glass {
    position: relative;
    z-index: 1;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover .card-glass {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* ===== ?UA?????(??) ===== */
.card-visual {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .card-visual img {
    transform: scale(1.05);
}

/* ===== ??o???? ===== */
.card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ?????*/
.card-tag {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 16px;
}

/* ?? ???/
.blog-card[data-category="trauma"] .card-tag {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
}

.blog-card[data-category="relationships"] .card-tag {
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
}

.blog-card[data-category="growth"] .card-tag {
    background: rgba(20, 184, 166, 0.15);
    color: #5eead4;
}

.blog-card[data-category="self"] .card-tag {
    background: rgba(249, 115, 22, 0.15);
    color: #fdba74;
}

.blog-card[data-category="depression"] .card-tag {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
}

.blog-card[data-category="anxiety"] .card-tag {
    background: rgba(234, 179, 8, 0.15);
    color: #fde047;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #E8E6E6;
    line-height: 1.3;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.blog-card:hover .card-title {
    color: #fff;
}

.card-date {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: rgba(192, 191, 191, 0.5);
    margin-bottom: 14px;
}

.card-excerpt {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    color: rgba(192, 191, 191, 0.75);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
    flex: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(192, 191, 191, 0.8);
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-card:hover .card-link {
    color: #fff;
    gap: 12px;
}

/* ===== ?E???===== */
.blog-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.blog-pagination .nav-links {
    display: flex;
    gap: 10px;
}

.blog-pagination a,
.blog-pagination span {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(192, 191, 191, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-pagination a:hover {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
    border-color: rgba(168, 85, 247, 0.3);
}

.blog-pagination .current {
    background: rgba(168, 85, 247, 0.3);
    color: #c084fc;
    border-color: rgba(168, 85, 247, 0.4);
}

/* ===== ?? ??S===== */
.blog-empty {
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    color: rgba(192, 191, 191, 0.5);
    padding: 60px 20px;
    grid-column: 1 / -1;
}

/* ===== AA?? ===== */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .blog-card::before {
        width: 150px;
        height: 150px;
        filter: blur(50px);
    }
}

@media (max-width: 600px) {
    .blog-section {
        padding: 120px 16px 60px;
    }

    .blog-title {
        font-size: 2.4rem;
    }

    .blog-subtitle {
        font-size: 1rem;
    }

    .category-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .card-visual {
        height: 160px;
    }

    .card-content {
        padding: 22px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .blog-card::before {
        width: 120px;
        height: 120px;
        filter: blur(40px);
        opacity: 0.5;
    }
}

@media (max-width: 380px) {
    .blog-title {
        font-size: 2rem;
    }

    .card-title {
        font-size: 1.2rem;
    }
}

/* ===== AA?? A?A ? ?????? ===== */

html, body {
    overflow-x: hidden;
}

@media (max-width: 900px) {
    /* ???????u ???*/
    .blog-card[data-category="trauma"]::before {
        right: 20px !important;
    }
    
    .blog-card[data-category="relationships"]::before {
        left: 20px !important;
    }
    
    .blog-card[data-category="self"]::before {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .blog-card[data-category="growth"]::before {
        left: 20px !important;
    }
}