/* ===== 기본 스타일 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ec4899;
    --secondary: #a855f7;
    --accent: #f472b6;
    --light-bg: #fdf2f8;
    --dark-text: #1f2937;
    --light-text: #6b7280;
    --border-color: #e5e7eb;
    --success: #10b981;
    --error: #ef4444;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 80px;
}

.hero-en {
    font-size: 0.85em;
    color: var(--light-text);
    font-weight: 400;
}

body {
    font-family: 'Noto Sans KR', 'Nunito', sans-serif;
    color: var(--dark-text);
    background-color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 네비게이션 ===== */
.navbar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.navbar-brand .brand-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    min-width: 220px;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu,
.dropdown.open-dropdown .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    color: var(--dark-text);
    padding: 0.6rem 1.2rem;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: var(--light-bg);
    opacity: 1;
    color: var(--primary);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--secondary);
        gap: 0;
        padding: 0.5rem 0;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu li {
        padding: 0.6rem 1.5rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 0;
    }

    .dropdown-menu li a {
        color: white;
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.15);
        color: white;
    }

    .navbar-brand .brand-title {
        font-size: 1.2rem;
    }
}

/* ===== 히어로 섹션 ===== */
.hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, #fce7f3 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.hero-animation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.flower {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

.flower:nth-child(2) {
    animation-delay: 0.5s;
}

.flower:nth-child(3) {
    animation-delay: 1s;
}

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

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .flower {
        font-size: 3rem;
    }
}

/* ===== 소개 섹션 ===== */
.about {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.about h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.brand-story {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.story-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.story-card h3 {
    color: var(--primary);
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.story-card p {
    color: var(--light-text);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .brand-story {
        grid-template-columns: 1fr;
    }
}

.lily-profile {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

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

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.testimonial-card .stars {
    margin-bottom: 0.5rem;
}

.testimonial-author {
    margin-top: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

@media (max-width: 768px) {
    .testimonials {
        grid-template-columns: 1fr;
    }
}

.profile-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    border-left: 4px solid var(--primary);
}

.profile-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.profile-card p {
    margin-bottom: 0.8rem;
    color: var(--light-text);
}

.badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== Learn 섹션 ===== */
.learn {
    padding: 4rem 0;
    background: white;
}

.learn > .container > h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.learn-block {
    max-width: 800px;
    margin: 0 auto 3.5rem;
    scroll-margin-top: 90px;
}

.learn-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.learn-intro {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tab-btn {
    padding: 0.5rem 1.1rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: white;
    color: var(--light-text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-color: transparent;
}

.tab-panel {
    display: none;
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
}

.tab-panel.active {
    display: block;
}

.tab-panel ul {
    padding-left: 1.2rem;
}

.tab-panel li {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.shadowing-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.drama-source {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.lyric-line {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
    line-height: 1.7;
}

.lyric-guide {
    color: var(--light-text);
    line-height: 1.7;
}

.travel-tips {
    list-style: none;
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
}

.travel-tips li {
    padding: 0.5rem 0;
    color: var(--dark-text);
}

/* ===== 수강 신청 섹션 (Classes) ===== */
.classes {
    padding: 4rem 0;
    background: #f9fafb;
    scroll-margin-top: 90px;
}

.classes h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.classes .form {
    margin-bottom: 2.5rem;
}

.classes .form h3 {
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.theme-online-1on1 {
    border-color: #fbcfe8;
}

.theme-online-1on1 h3 {
    color: #ec4899;
}

.theme-online-1on1 .btn-submit {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.theme-online-group {
    border-color: #e9d5ff;
}

.theme-online-group h3 {
    color: #a855f7;
}

.theme-online-group .btn-submit {
    background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
}

.theme-offline-1on1 {
    border-color: #ddd6fe;
}

.theme-offline-1on1 h3 {
    color: #8b5cf6;
}

.theme-offline-1on1 .btn-submit {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.theme-offline-group {
    border-color: #f5d0fe;
}

.theme-offline-group h3 {
    color: #d946ef;
}

.theme-offline-group .btn-submit {
    background: linear-gradient(135deg, #d946ef 0%, #e879f9 100%);
}

.subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.google-form-wrap {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    border: 2px solid #f3e8ff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.google-form-wrap iframe {
    display: block;
    width: 100%;
    border: none;
}

.form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid #f3e8ff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ===== 버튼 ===== */
.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ===== 폼 메시지 ===== */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #7f1d1d;
    display: block;
}

/* ===== 게시판 섹션 ===== */
.board {
    padding: 4rem 0;
    background: #f9fafb;
}

.board h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.board-write {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.board-write h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.board-posts {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.board-posts h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

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

.post-item {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.post-item:hover {
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.2);
    border-color: var(--primary);
}

.post-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.post-item p {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-meta {
    font-size: 0.85rem;
    color: #9ca3af;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.loading {
    text-align: center;
    color: var(--light-text);
    padding: 2rem;
}

/* ===== 모달 ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

.modal-content h3 {
    color: var(--success);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

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

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== 로딩 오버레이 ===== */
.loading-overlay {
    display: none;
    position: fixed;
    z-index: 1999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    justify-content: center;
    align-items: center;
}

.loading-overlay.show {
    display: flex;
}

.spinner {
    border: 4px solid var(--light-bg);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== 푸터 ===== */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer p {
    margin: 0.5rem 0;
}

/* ===== 반응형 디자인 ===== */
@media (max-width: 768px) {
    .form {
        padding: 1.5rem;
    }
    
    .board-write,
    .board-posts {
        padding: 1.5rem;
    }
    
    .classes,
    .learn,
    .about,
    .board {
        padding: 2rem 0;
    }

    .learn-block {
        margin-bottom: 2.5rem;
    }
}

/* ===== 히어로 v2 (재디자인) ===== */

.hero-v2 {
    border-radius: 0;
}

.hero-v2-blue {
    background: #e6f1fb;
    padding: 88px 48px;
    padding-right: 420px;
    position: relative;
    overflow: hidden;
    /* 사진(top 64 + 높이 455 + 테두리 10 + 아래 여백 64)이 잘리지 않도록 */
    min-height: 593px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-v2-blob {
    position: absolute;
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    background: #f5c4b3;
}

.hero-v2-blob-bottom {
    width: 140px;
    height: 140px;
    bottom: -48px;
    left: 20%;
}

.hero-v2-blob-top {
    width: 112px;
    height: 112px;
    top: -32px;
    right: -24px;
}

.hero-v2-text {
    flex: 1;
    position: relative;
    min-width: 0;
}

.hero-v2-text h1,
.hero-v2-text h2 {
    font-family: 'Gaegu', sans-serif;
    font-weight: 700;
    color: #0c447c;
    margin: 0 0 16px;
    line-height: 1.4;
}

.hero-v2-text h1 .hl-lg,
.hero-v2-text h2 .hl-lg {
    display: block;
    font-size: 50px;
    font-weight: 700;
    white-space: nowrap;
}

.hero-v2-text h1 .hl-sm,
.hero-v2-text h2 .hl-sm {
    display: block;
    font-size: 42px;
    font-weight: 400;
    white-space: nowrap;
}

.hero-v2-text p {
    font-size: 24px;
    color: #185fa5;
    margin: 0 0 28px;
}

.hero-v2-btn {
    background: #d85a30;
    color: #ffffff;
    font-family: 'Gaegu', sans-serif;
    font-weight: 700;
    font-size: 26px;
    padding: 16px 36px;
    border-radius: 48px;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.hero-v2-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(216, 90, 48, 0.3);
}

.hero-v2-wrap {
    position: relative;
}

.hero-v2-photo {
    position: absolute;
    top: 64px;
    right: 240px;
    width: 340px;
    height: 455px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #ffffff;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    z-index: 5;
}

.hero-v2-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero-v2-pink {
    background: #f4c0d1;
    padding: 20px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-v2-icon-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 12px 20px;
    text-align: center;
    min-width: 72px;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-v2-icon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.hero-v2-icon-sub {
    font-family: 'Gaegu', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin: 0;
}

.hero-v2-icon-card span {
    font-size: 20px;
}

.hero-v2-icon-card p {
    font-family: 'Gaegu', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin: 4px 0 0;
}

.hero-v2-icon-blue p,
.hero-v2-icon-blue .hero-v2-icon-sub {
    color: #0c447c;
}

.hero-v2-icon-rose p {
    color: #72243e;
}

@media (max-width: 768px) {
    .hero-v2-blue {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 32px 20px;
        min-height: 0;
    }
    .hero-v2-photo {
        position: static;
        width: 220px;
        height: 295px;
        margin: 20px auto 0;
    }
    .hero-v2-text h1 .hl-lg,
    .hero-v2-text h2 .hl-lg {
        font-size: 30px;
    }
    .hero-v2-text h1 .hl-sm,
    .hero-v2-text h2 .hl-sm {
        font-size: 26px;
    }
    .hero-v2-text p {
        font-size: 16px;
    }
    .hero-v2-btn {
        font-size: 18px;
        padding: 12px 26px;
    }
    .hero-v2-pink {
        gap: 14px;
    }
    .hero-v2-icon-card {
        min-width: 68px;
        padding: 12px 14px;
    }
    .hero-v2-icon-card p,
    .hero-v2-icon-sub {
        font-size: 18px;
    }
}

/* ===== 언어 선택 드롭다운 ===== */
.lang-select {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-text);
    border: none;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    margin-left: auto;
    margin-right: 1rem;
    max-width: 150px;
}

@media (max-width: 768px) {
    .lang-select {
        margin-left: 0;
        margin-right: 0;
        order: 1;
        max-width: 120px;
        font-size: 0.8rem;
    }
    .nav-toggle {
        order: 2;
    }
    .navbar .container {
        flex-wrap: wrap;
        row-gap: 0.5rem;
    }
}


/* ===== SEO: 브랜드 링크 스타일 ===== */
.navbar-brand a {
    text-decoration: none;
    color: inherit;
}

.navbar-brand .brand-title {
    display: inline-block;
}

/* ===== 블로그 섹션 ===== */
.blog-section {
    padding: 4rem 0;
    background: #ffffff;
    scroll-margin-top: 90px;
}

.blog-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--light-text);
    line-height: 1.7;
}

.blog-links {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 960px;
    margin: 0 auto;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: #f9fafb;
    border: 2px solid #e6f1fb;
    border-left: 5px solid #03c75a;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    min-width: 220px;
    flex: 1;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* 채널별 색상 */
.blog-card.sns-youtube { border-left-color: #ff0000; }
.blog-card.sns-instagram { border-left-color: #e1306c; }
.blog-card.sns-blog { border-left-color: #03c75a; }

.blog-card.sns-youtube .blog-card-label { color: #ff0000; }
.blog-card.sns-instagram .blog-card-label { color: #e1306c; }
.blog-card.sns-blog .blog-card-label { color: #03c75a; }


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

.blog-card-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #03c75a;
    letter-spacing: 0.03em;
}

.blog-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-text);
}

.blog-card-meta {
    font-size: 0.85rem;
    color: var(--light-text);
}


@media (max-width: 768px) {
    .blog-links {
        flex-direction: column;
    }
    .blog-card {
        min-width: 0;
    }
}



