/*
Theme Name: IT1004
Theme URI: https://it1004.com
Author: IT1004, 오늘의개발자
Author URI: https://it1004.com
Description: IT1004 공식 블로그 테마
Version: 2.0
License: All Rights Reserved
License URI: https://it1004.com/license
Text Domain: it1004
*/

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');
@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&display=swap');

:root {
    --mint: #2AC1BC;
    --mint-light: #e8f9f8;
    --neon: #D4F932;
    --black: #111111;
    --dark: #1a1a1a;
    --gray-900: #222;
    --gray-700: #555;
    --gray-500: #888;
    --gray-300: #ccc;
    --gray-100: #f4f4f4;
    --white: #ffffff;
    --radius: 1.5rem;
    --radius-sm: 0.75rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Pretendard', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--mint);
    color: var(--white);
}

a { color: inherit; text-decoration: none; transition: all 0.3s; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.font-display { font-family: 'Black Han Sans', sans-serif; }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.site-logo {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 1.75rem;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--mint);
    border-radius: 50%;
}

.site-logo .logo-text {
    color: var(--black);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
}

.header-nav a:hover {
    color: var(--mint);
}

.header-cta {
    border: 2px solid var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--black);
}

.header-cta:hover {
    background: var(--black);
    color: var(--white);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--neon);
    border: 2px solid var(--black);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--black);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-title .accent { color: var(--mint); }

.hero-desc {
    font-size: 1.25rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--mint);
    color: var(--black);
}

.btn-outline {
    border: 2px solid var(--gray-300);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--black);
}

/* Hero Bento */
.hero-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.bento-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.bento-large {
    grid-column: span 2;
    background: var(--black);
    color: var(--white);
    padding: 2.5rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-large .bento-icon {
    font-size: 3rem;
    color: var(--neon);
}

.bento-large h3 {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 2.5rem;
    line-height: 1.1;
}

.bento-stat {
    background: var(--mint);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
}

.bento-stat .number {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 3.5rem;
}

.bento-stat .label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.bento-tech {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 180px;
}

.tech-icons {
    display: flex;
    gap: -0.5rem;
}

.tech-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-left: -8px;
}

.tech-icon:first-child { margin-left: 0; }

/* Marquee */
.marquee {
    background: var(--black);
    padding: 1.5rem 0;
    overflow: hidden;
    border-top: 1px solid var(--gray-700);
    border-bottom: 1px solid var(--gray-700);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 2rem;
    color: var(--white);
}

.marquee-track .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--mint);
    border-radius: 50%;
    vertical-align: middle;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Posts Section */
.posts-section {
    padding: 4rem 0;
    background: var(--gray-100);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.view-all {
    font-weight: 600;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all:hover { color: var(--mint); }

/* Featured Post */
.featured-post {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
}

.featured-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--gray-300);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.featured-post:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--neon);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.post-category {
    background: var(--mint-light);
    color: var(--mint);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.featured-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.featured-title a:hover { color: var(--mint); }

.featured-excerpt {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--black);
}

.read-more:hover { color: var(--mint); gap: 1rem; }

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.post-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.post-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.post-card:hover .post-card-image img {
    transform: scale(1.08);
}

.post-card:nth-child(2n) .post-card-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.post-card:nth-child(3n) .post-card-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.post-card:nth-child(4n) .post-card-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.post-card-body {
    padding: 1.5rem;
}

.post-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.post-card-title a:hover { color: var(--mint); }

.post-card-excerpt {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Sidebar */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
}

.widget-dark {
    background: var(--black);
    color: var(--white);
}

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

.widget-logo {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 1.75rem;
    color: var(--mint);
    margin-bottom: 1rem;
}

.widget-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-100);
}

.widget-dark .widget-title {
    border-color: var(--gray-700);
}

.popular-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: inherit;
}

.popular-item:hover { color: var(--mint); }

.popular-num {
    width: 28px;
    height: 28px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--mint);
    flex-shrink: 0;
}

.widget-dark .popular-num {
    background: var(--gray-700);
}

.popular-title {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
}

.category-list {
    list-style: none;
}

.category-list li {
    border-bottom: 1px solid var(--gray-100);
}

.category-list li:last-child { border: none; }

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 0;
    font-weight: 500;
}

.category-list a:hover { color: var(--mint); }

.cat-count {
    background: var(--gray-100);
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud a {
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.tag-cloud a:hover {
    background: var(--mint);
    color: var(--white);
}

/* Single Post */
.single-header {
    padding: 6rem 2rem 3rem;
    text-align: center;
    background: var(--white);
}

.single-category {
    display: inline-block;
    background: var(--mint);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.single-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.single-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.single-featured {
    max-width: 1000px;
    margin: 0 auto 3rem;
    border-radius: var(--radius);
    overflow: hidden;
}

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

.post-content h2 {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 1.75rem;
    margin: 3rem 0 1rem;
}

.post-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 2.5rem 0 0.75rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.post-content a {
    color: var(--mint);
    text-decoration: underline;
}

.post-content blockquote {
    border-left: 4px solid var(--mint);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--gray-100);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--gray-700);
}

.post-content pre {
    background: var(--dark);
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: 2rem 0;
    font-size: 0.875rem;
}

.post-content code {
    background: var(--gray-100);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.post-content pre code {
    background: none;
    padding: 0;
}

.post-content ul, .post-content ol {
    margin: 0 0 1.5rem 1.5rem;
    color: var(--gray-700);
}

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

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-300);
}

.post-tags a {
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
}

.post-tags a:hover {
    background: var(--mint);
    color: var(--white);
}

/* Related Posts */
.related-section {
    padding: 4rem 2rem;
    background: var(--gray-100);
}

.related-section h3 {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.pagination a:hover {
    background: var(--black);
    color: var(--white);
}

.pagination .current {
    background: var(--black);
    color: var(--white);
}

/* Footer */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 5rem 2rem 3rem;
}

.footer-cta {
    font-family: 'Black Han Sans', sans-serif;
    font-size: clamp(3rem, 12vw, 8rem);
    line-height: 0.95;
    margin-bottom: 3rem;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-cta:hover { color: var(--mint); }

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-700);
    max-width: 1400px;
    margin: 0 auto;
}

.footer-contact p {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-contact span {
    color: var(--gray-500);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-500);
    font-weight: 600;
    font-size: 0.875rem;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    font-size: 0.75rem;
    color: var(--gray-700);
}

/* Archive */
.archive-header {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: var(--black);
    color: var(--white);
}

.archive-header h1 {
    font-family: 'Black Han Sans', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

/* 404 */
.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-page h1 {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 10rem;
    color: var(--gray-300);
    line-height: 1;
}

.error-page h2 {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.error-page p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

/* Comments */
.comments-area {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.comments-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.comment-list { list-style: none; }

.comment {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.comment-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: 700;
}

.comment-meta { font-size: 0.8125rem; color: var(--gray-500); }

.comment-content { line-height: 1.7; }

.comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    transition: border-color 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--mint);
}

.comment-form textarea { min-height: 120px; resize: vertical; }

.comment-form .submit {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.comment-form .submit:hover { background: var(--mint); }

/* Search */
.search-form {
    display: flex;
    background: var(--gray-100);
    border-radius: 9999px;
    overflow: hidden;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: none;
    background: transparent;
    font-size: 0.9375rem;
}

.search-form button {
    padding: 0.875rem 1.5rem;
    background: var(--black);
    color: var(--white);
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.search-form button:hover { background: var(--mint); }

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; margin: 0 auto; }
    .hero-bento { max-width: 500px; margin: 0 auto; }
    .content-with-sidebar { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-post { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .site-header { padding: 1rem 1.5rem; }
    .header-nav { display: none; }
    .hero { padding: 7rem 1.5rem 3rem; }
    .hero-title { font-size: 3rem; }
    .hero-bento { grid-template-columns: 1fr; }
    .bento-large { grid-column: span 1; }
    .posts-section { padding: 4rem 1.5rem; }
    .posts-grid { grid-template-columns: 1fr; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .footer-content { flex-direction: column; align-items: flex-start; gap: 2rem; }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Main Nav */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.main-nav a:hover {
    color: var(--mint);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mint);
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-toggle {
    background: var(--gray-100);
    border: none;
    color: var(--gray-700);
    cursor: pointer;
    padding: 0.625rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.search-toggle:hover {
    background: var(--mint);
    color: var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s;
    border-radius: 2px;
}

.nav-close {
    display: none;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-overlay .search-form {
    background: var(--white);
}

.search-overlay .search-field {
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
}

/* Hero Section Bento Grid */
.hero-section {
    padding: 7rem 0 3rem;
    background: var(--white);
}

.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.bento-main {
    grid-row: span 2;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--black);
    position: relative;
    min-height: 500px;
}

.bento-link {
    display: block;
    height: 100%;
    position: relative;
    color: inherit;
    text-decoration: none;
}

.bento-main .bento-link {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-main .bento-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.bento-main .bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.5s;
}

.bento-main:hover .bento-image img {
    transform: scale(1.05);
    opacity: 0.5;
}

.bento-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    min-height: 500px;
}

.bento-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.bento-meta .post-category {
    background: var(--mint);
    color: var(--white);
}

.bento-date {
    opacity: 0.8;
}

.bento-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.bento-excerpt {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Bento Side Cards */
.bento-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bento-side .bento-card {
    flex: 1;
    background: var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
}

.bento-side .bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.bento-side .bento-link {
    display: flex;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.bento-card-image {
    width: 140px;
    min-height: 120px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

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

.bento-side .bento-card:hover .bento-card-image img {
    transform: scale(1.1);
}

.bento-side .bento-card:nth-child(2) .bento-card-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.bento-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-card-cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--mint);
    margin-bottom: 0.5rem;
}

.bento-card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

/* Bento Stats */
.bento-stats {
    background: var(--mint);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bento-stats .stat-item {
    text-align: center;
}

.bento-stats .stat-number {
    display: block;
    font-family: 'Black Han Sans', sans-serif;
    font-size: 2.5rem;
    color: var(--black);
}

.bento-stats .stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
    opacity: 0.7;
}

/* Bento About */
.bento-about {
    background: var(--black);
    border-radius: var(--radius);
    padding: 2rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-badge {
    display: inline-block;
    background: var(--neon);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    width: fit-content;
}

.bento-about h3 {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bento-about p {
    font-size: 0.875rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* Marquee Section */
.marquee-section {
    background: var(--black);
    padding: 1.5rem 0;
    overflow: hidden;
}

.marquee {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    padding: 0 1rem;
}

.marquee-dot {
    color: var(--mint);
    font-size: 0.5rem;
    vertical-align: middle;
    padding: 0 1rem;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Categories Section */
.categories-section {
    padding: 3rem 0;
    background: var(--white);
}

.categories-wrapper {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cat-pill {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gray-100);
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.cat-pill:hover,
.cat-pill.active {
    background: var(--black);
    color: var(--white);
}

/* Post Card Updates */
.post-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.post-card {
    height: 100%;
}

.post-card-placeholder,
.bento-placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.post-card-placeholder::before,
.bento-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='1.5'%3E%3Crect x='2' y='3' width='20' height='14' rx='2'/%3E%3Cpath d='m8 21 4-4 4 4'/%3E%3Cpath d='m12 17v-4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.post-card-placeholder::after,
.bento-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

/* Different gradient variations for visual variety */
.post-card:nth-child(2n) .post-card-placeholder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.post-card:nth-child(3n) .post-card-placeholder {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.post-card:nth-child(4n) .post-card-placeholder {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.post-card:nth-child(5n) .post-card-placeholder {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
}

.post-card-cat {
    color: var(--mint);
    font-weight: 600;
}

.post-card-date {
    color: var(--gray-500);
}

.reading-time {
    color: var(--gray-500);
}

/* Popular Section */
.popular-section {
    padding: 5rem 0;
    background: var(--white);
}

.section-header .section-line {
    flex: 1;
    height: 2px;
    background: var(--gray-100);
    margin-left: 2rem;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.popular-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.popular-card:hover {
    background: var(--black);
    color: var(--white);
}

.popular-card:hover .popular-num {
    background: var(--mint);
    color: var(--black);
}

.popular-card .popular-num {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 1.5rem;
    color: var(--gray-300);
    flex-shrink: 0;
}

.popular-content {
    flex: 1;
}

.popular-cat {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--mint);
    margin-bottom: 0.5rem;
}

.popular-card:hover .popular-cat {
    color: var(--neon);
}

.popular-title {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 5rem 2rem;
}

.no-posts h3 {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.no-posts p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.btn-back {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
}

.btn-back:hover {
    background: var(--mint);
}

/* Footer Updates */
.footer-cta {
    padding: 5rem 0;
    text-align: center;
    border-bottom: 1px solid var(--gray-700);
}

.footer-cta-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.footer-cta-desc {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    background: var(--mint);
    color: var(--black);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: var(--neon);
    transform: scale(1.05);
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 2rem;
    color: var(--mint);
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--gray-500);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-nav h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-300);
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: var(--gray-500);
    font-size: 0.9375rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Archive Header Updates */
.archive-header-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.archive-type {
    display: inline-block;
    background: var(--mint);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.archive-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.archive-desc {
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.archive-count {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

/* Single Post Updates */
.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.single-featured-image {
    margin-bottom: 3rem;
}

.single-featured-image img {
    border-radius: var(--radius);
    width: 100%;
}

.single-meta .meta-sep {
    color: var(--gray-300);
}

/* Post Share */
.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid var(--gray-100);
}

.share-label {
    font-weight: 600;
    font-size: 0.875rem;
}

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

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.share-btn:hover {
    background: var(--mint);
    color: var(--white);
}

.share-btn.copied {
    background: var(--mint);
    color: var(--white);
}

/* Related Posts */
.related-posts {
    padding: 4rem 0;
    background: var(--gray-100);
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-main {
        grid-row: span 1;
    }

    .bento-side {
        flex-direction: row;
    }

    .bento-stats,
    .bento-about {
        display: none;
    }

    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.75rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 150;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        font-size: 2.5rem;
        color: var(--black);
        cursor: pointer;
        line-height: 1;
        padding: 0.5rem;
        z-index: 10;
    }

    .nav-close:hover {
        color: var(--mint);
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .main-nav a {
        font-size: 1.5rem;
        color: var(--black);
        font-family: 'Black Han Sans', sans-serif;
    }

    .main-nav a::after {
        display: none;
    }

    .menu-toggle.active span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-section {
        padding: 5rem 0 2rem;
    }

    .bento-content {
        min-height: 300px;
        padding: 1.5rem;
    }

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

    .bento-side {
        flex-direction: column;
    }

    .bento-side .bento-card {
        flex-direction: row;
    }

    .bento-card-image {
        width: 120px;
        height: auto;
        min-height: 100px;
    }

    .categories-section {
        padding: 2rem 0;
    }

    .categories-wrapper {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .cat-pill {
        flex-shrink: 0;
    }

    .posts-section {
        padding: 3rem 0;
    }

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

    .footer-cta {
        padding: 3rem 0;
    }

    .footer-cta-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
    }
}

/* ============================================
   Single Post 3-Column Layout
   ============================================ */

.single-post-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 280px;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem 4rem;
}

/* Sidebars */
.single-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem;
    border: 1px solid var(--gray-200);
}

.widget-title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-title::before {
    content: '';
    width: 4px;
    height: 16px;
    background: var(--mint);
    border-radius: 2px;
}

/* TOC Widget */
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-item {
    margin-bottom: 0.5rem;
}

.toc-item.toc-h3 {
    padding-left: 1rem;
}

.toc-link {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-600);
    text-decoration: none;
    padding: 0.375rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s;
    line-height: 1.4;
}

.toc-link:hover {
    color: var(--mint);
    background: rgba(0, 207, 173, 0.08);
}

.toc-link.active {
    color: var(--mint);
    background: rgba(0, 207, 173, 0.12);
    font-weight: 600;
}

.toc-empty {
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-align: center;
    padding: 1rem 0;
}

/* Share Widget Vertical */
.share-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-btn-v {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.share-btn-v:hover {
    border-color: var(--mint);
    color: var(--mint);
    background: rgba(0, 207, 173, 0.05);
}

.share-btn-v.copied {
    border-color: var(--mint);
    background: var(--mint);
    color: var(--white);
}

/* Popular Posts Widget */
.popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.popular-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-item:first-child {
    padding-top: 0;
}

.popular-rank {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--mint);
    background: rgba(0, 207, 173, 0.1);
    border-radius: 4px;
}

.popular-item:nth-child(1) .popular-rank {
    background: var(--mint);
    color: var(--white);
}

.popular-link {
    font-size: 0.8125rem;
    color: var(--gray-700);
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-link:hover {
    color: var(--mint);
}

/* Trending Tags Widget */
.trending-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trending-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s;
}

.trending-tag:hover {
    background: var(--mint);
    color: var(--white);
}

/* Newsletter Widget */
.newsletter-desc {
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.newsletter-form-mini {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--mint);
}

.newsletter-submit {
    width: 100%;
    padding: 0.75rem;
    background: var(--mint);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-submit:hover {
    background: var(--mint-dark);
}

/* Main Content Area - Compact Header */
.single-main {
    min-width: 0;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.single-header-compact {
    margin-bottom: 1.5rem;
}

.single-header-compact .single-category {
    display: inline-block;
    background: var(--mint);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-decoration: none;
}

.single-header-compact .single-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark);
}

.single-header-compact .single-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.meta-author-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--gray-700);
}

.meta-author-link:hover {
    color: var(--mint);
}

.meta-author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.meta-author-name {
    font-weight: 600;
}

.single-header-compact .meta-sep {
    color: var(--gray-300);
}

/* Featured Image Compact */
.single-featured-compact {
    margin: 0 -2rem 2rem;
    overflow: hidden;
}

.single-featured-compact img {
    width: 100%;
    height: auto;
    display: block;
}

/* Post Content in Main */
.single-main .post-content {
    max-width: none;
    padding: 0;
    margin: 0;
}

/* Post Tags */
.single-main .post-tags {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.author-box-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.author-box-info {
    flex: 1;
    min-width: 0;
}

.author-box-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.author-box-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.author-box-name:hover {
    color: var(--mint);
}

.author-follow-btn {
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--mint);
    background: var(--white);
    border: 1px solid var(--mint);
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s;
}

.author-follow-btn:hover {
    background: var(--mint);
    color: var(--white);
}

.author-follow-btn.following {
    background: var(--mint);
    color: var(--white);
}

.author-box-bio {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .single-post-layout {
        grid-template-columns: 200px minmax(0, 1fr);
    }
    
    .single-sidebar-right {
        display: none;
    }
}

@media (max-width: 900px) {
    .single-post-layout {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .single-sidebar-left {
        display: none;
    }
    
    .single-main {
        padding: 1.5rem;
    }
    
    .single-featured-compact {
        margin: 0 -1.5rem 1.5rem;
    }
}

/* Related Posts Section Fix */
.related-posts {
    margin-top: 0;
}

/* Single Post Layout Header Fix */
.single-post-layout {
    padding-top: calc(80px + 1.5rem); /* Header height + spacing */
}

/* Hide old single-header on new layout */
.single-header {
    display: none;
}

/* Fix for post content images */
.single-main .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

/* Code blocks in post */
.single-main .post-content pre {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

/* Comment Form Fix - explicit colors */
.comment-form label {
    color: var(--black) !important;
}

.comments-title,
.comment-reply-title {
    color: var(--black) !important;
}

.comment-notes {
    color: var(--gray-700) !important;
}

/* Single Article Layout */
.single-article {
    display: grid;
    grid-template-columns: 60px 1fr 300px;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 2rem 4rem;
}

@media (max-width: 1024px) {
    .single-article {
        grid-template-columns: 1fr;
        padding: 50px 1rem 2rem;
    }
}

/* ============================================
   Hero Mega Section
   ============================================ */
.hero-mega {
    padding: 100px 0 2rem;
    background: var(--white);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-top {
    display: grid;
    grid-template-columns: 1fr 300px 200px;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-slider-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
}

.topic-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--mint);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.main-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
    display: block;
    text-decoration: none;
}

.slide.active {
    opacity: 1;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-dim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
}

.slide-cat {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.slide-info h2 {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 1.75rem;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.slide-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.slider-nav {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,0,0,0.5);
    padding: 0.5rem;
    border-radius: 20px;
    z-index: 10;
}

.slider-nav button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
}

.slider-nav span {
    color: white;
    font-size: 0.85rem;
}

/* Hero Side Posts */
.hero-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-post {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: calc(50% - 0.5rem);
    display: block;
    text-decoration: none;
}

.side-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-post-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.side-post-info .spc {
    font-size: 0.75rem;
    color: var(--mint);
}

.side-post-info h4 {
    font-size: 0.95rem;
    margin: 0.25rem 0;
    line-height: 1.3;
}

.side-post-info .spa {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hs-item {
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 1rem;
    text-align: center;
}

.hs-item b {
    display: block;
    font-size: 1.5rem;
    color: var(--mint);
}

.hs-item span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.hs-btn {
    display: block;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.hs-btn.write {
    background: var(--black);
    color: white;
}

.hs-btn.apply {
    background: var(--mint);
    color: white;
}

.hs-btn.community {
    background: var(--gray-100);
    color: var(--black);
}

/* Hero Mid Section */
.hero-mid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-mid h3 {
    font-size: 1rem;
    margin: 0 0 1rem;
    color: var(--black);
}

.hm-popular, .hm-recent, .hm-cats {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.pop-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pop-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

.pop-item:hover {
    background: var(--gray-100);
}

.pr {
    width: 24px;
    height: 24px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
}

.pr.top {
    background: var(--mint);
    color: white;
}

.pi-info {
    flex: 1;
    min-width: 0;
}

.pi-info h5 {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 0.15rem;
    color: var(--black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pi-info span {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.pi-img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
}

/* Comment List */
.comment-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cm-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-sm);
    transition: 0.2s;
}

.cm-item:hover {
    background: var(--gray-50);
}

.cm-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.cm-info {
    flex: 1;
}

.cm-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--black);
}

.cm-text {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0.15rem 0 0;
}

/* Category Grid */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.cat-card {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    text-decoration: none;
    border-left: 3px solid var(--cc);
    transition: 0.2s;
}

.cat-card:hover {
    background: var(--gray-100);
}

.cc-name {
    font-weight: 600;
    color: var(--black);
    font-size: 0.9rem;
}

.cc-count {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-top {
        grid-template-columns: 1fr;
    }
    .hero-slider-wrap {
        height: 300px;
    }
    .hero-side, .hero-stats {
        display: none;
    }
    .hero-mid {
        grid-template-columns: 1fr;
    }
}

/* Hero Bottom */
.hero-bot {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.hb-authors, .hb-tags, .hb-newsletter {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.hb-authors h3, .hb-tags h3, .hb-newsletter h3 {
    font-size: 1rem;
    margin: 0 0 1rem;
}

.author-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.au-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.au-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.au-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--black);
}

.au-cnt {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tc-tag {
    padding: 0.4rem 0.75rem;
    background: var(--gray-50);
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--gray-600);
    text-decoration: none;
    transition: 0.2s;
}

.tc-tag:hover {
    background: var(--mint);
    color: white;
}

.nl-inner p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0 0 1rem;
}

.nl-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nl-form input {
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.nl-form button {
    padding: 0.75rem;
    background: var(--mint);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
}

/* Category Nav */
.cat-nav {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 1.5rem;
}

.cat-nav .container-wide {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.cn-tab {
    padding: 0.5rem 1rem;
    background: var(--gray-50);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gray-600);
    text-decoration: none;
    white-space: nowrap;
    transition: 0.2s;
}

.cn-tab:hover, .cn-tab.active {
    background: var(--mint);
    color: white;
}

/* Main Content Grid */
.main-content {
    padding: 1.5rem 0 3rem;
    background: var(--gray-50);
}

.mc-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.mc-label {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--black);
}

/* Post List */
.post-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pl-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.2s;
}

.pl-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pl-item > a {
    display: grid;
    grid-template-columns: 1fr 200px;
    text-decoration: none;
    color: inherit;
}

.pl-content {
    padding: 1.25rem;
}

.pl-meta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.pl-cat {
    color: var(--mint);
    font-size: 0.8rem;
    font-weight: 600;
}

.pl-date {
    color: var(--gray-400);
    font-size: 0.8rem;
}

.pl-item h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: var(--black);
    line-height: 1.4;
}

.pl-item p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0 0 1rem;
}

.pl-foot {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.pl-foot img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.pl-thumb {
    position: relative;
}

.pl-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sidebar */
.mc-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ms-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.ms-widget h4 {
    font-size: 1rem;
    margin: 0 0 1rem;
}

.ms-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ms-tags a {
    padding: 0.35rem 0.7rem;
    background: var(--gray-50);
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--gray-600);
    text-decoration: none;
}

.ms-tags a:hover {
    background: var(--mint);
    color: white;
}

.ms-nl p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0 0 0.75rem;
}

.ms-nl form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ms-nl input {
    padding: 0.6rem;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
}

.ms-nl button {
    padding: 0.6rem;
    background: var(--mint);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .hero-bot {
        grid-template-columns: 1fr;
    }
    .mc-grid {
        grid-template-columns: 1fr;
    }
    .pl-item > a {
        grid-template-columns: 1fr;
    }
    .pl-thumb {
        height: 200px;
        order: -1;
    }
}

/* ============================================
   Single Post Page
   ============================================ */
.single-article {
    display: grid;
    grid-template-columns: 60px 1fr 300px;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 2rem 4rem;
}

/* Action Bar */
.action-bar {
    position: relative;
}

.action-bar-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem;
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.action-btn:hover {
    background: var(--gray-100);
    color: var(--mint);
}

.action-count {
    font-size: 0.75rem;
    font-weight: 600;
}

/* Single Content */
.single-content {
    min-width: 0;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
}

.article-header {
    margin-bottom: 2rem;
}

.article-category {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--mint);
    margin-bottom: 0.75rem;
    text-decoration: none;
}

.article-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--black);
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.author-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.author-name {
    font-weight: 600;
    color: var(--black);
}

.article-body {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.article-body h2 {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 1.5rem;
    margin: 3rem 0 1rem;
    color: var(--black);
}

.article-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    color: var(--black);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body strong {
    color: var(--black);
}

/* Single Sidebar */
.single-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.sidebar-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.sidebar-card-header h4 {
    font-size: 0.95rem;
    margin: 0;
    color: var(--black);
}

.view-all {
    color: var(--gray-400);
}

.author-posts-list, .related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.author-post-item, .related-post-item {
    display: block;
    text-decoration: none;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.author-post-item:last-child, .related-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ap-cat, .rp-cat {
    font-size: 0.75rem;
    color: var(--mint);
    font-weight: 600;
}

.ap-title, .rp-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
    margin: 0.25rem 0;
    line-height: 1.4;
}

.rp-time {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.related-post-item {
    display: flex;
    gap: 1rem;
}

.rp-info {
    flex: 1;
}

.rp-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
}

.rp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TOC */
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    font-size: 0.85rem;
    color: var(--gray-600);
    text-decoration: none;
}

.toc-list a:hover {
    color: var(--mint);
}

.toc-h3 {
    padding-left: 1rem;
}

@media (max-width: 1024px) {
    .single-article {
        grid-template-columns: 1fr;
        padding: 70px 1rem 2rem;
    }
    .action-bar {
        display: none;
    }
    .single-sidebar {
        order: 1;
    }
}

/* Author Card */
.author-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    margin: 3rem 0;
}

.author-card-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.author-card-info {
    flex: 1;
}

.author-card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.author-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
}

.author-card-name:hover {
    color: var(--mint);
}

.follow-btn-sm {
    padding: 0.4rem 0.75rem;
    background: var(--mint);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.author-card-bio {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Article Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.tag-pill {
    padding: 0.4rem 0.85rem;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 15px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.2s;
}

.tag-pill:hover {
    background: var(--mint);
    color: white;
}

/* Comments Section */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.comments-title, .comment-reply-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--black);
}

.comment-notes {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--black);
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    margin-bottom: 1rem;
    background: var(--white);
    color: var(--black);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--mint);
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-form .submit {
    padding: 0.85rem 2rem;
    background: var(--black);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.comment-form .submit:hover {
    background: var(--mint);
}
