/* Blog Page Styles */

.coming-soon-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.coming-soon-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1600px;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: blogPulse 4s ease-in-out infinite;
}

@keyframes blogPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.blog-coming-soon-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 4vw, 3rem);
    margin: 0 auto;
}

.blog-coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: blogFloat 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes blogFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.blog-coming-soon-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.blog-coming-soon-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.blog-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.blog-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.blog-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.blog-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.blog-feature-description {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

.blog-notify-section {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.blog-notify-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.blog-notify-message {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.blog-notify-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.blog-notify-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Noto Sans Lao', 'Phetsarath OT', 'Saysettha OT', 'Plus Jakarta Sans', sans-serif;
}

.blog-notify-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.blog-notify-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.blog-notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.blog-notify-btn:active {
    transform: translateY(0);
}

.blog-back-link {
    margin-top: 2rem;
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-back-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .coming-soon-section {
        padding: 2rem 0;
        min-height: 60vh;
    }

    .blog-coming-soon-icon {
        font-size: 3.5rem;
    }

    .blog-coming-soon-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-notify-form {
        flex-direction: column;
    }

    .blog-notify-btn {
        width: 100%;
    }
}

/* ===== Blog Page Hero & Cards (moved from inline) ===== */
.blog-hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #0F172A 100%);
  padding: 5rem 0 4rem; color: white; text-align: center;
}
.blog-hero .container { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.blog-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,102,255,0.15); border: 1px solid rgba(0,102,255,0.3);
  padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.85rem;
  color: #60A5FA; margin-bottom: 1.5rem;
}
.blog-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.blog-hero p { font-size: 1.1rem; color: #94A3B8; line-height: 1.7; max-width: 600px; margin: 0 auto; }

.blog-content { padding: 4rem 0; }
.blog-content .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.blog-card {
  background: white; border: 1px solid #E2E8F0; border-radius: 16px;
  overflow: hidden; transition: all 0.3s ease;
}
.blog-card:hover { border-color: #0066FF; box-shadow: 0 8px 30px rgba(0,102,255,0.1); transform: translateY(-4px); }
.blog-card-thumb {
  height: 160px; background: linear-gradient(135deg, #0066FF 0%, #00C48C 100%);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 2.5rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-tag {
  display: inline-block; background: #EFF6FF; color: #0066FF;
  font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem;
  border-radius: 50px; margin-bottom: 0.75rem;
}
.blog-card-body h3 { font-size: 1.1rem; font-weight: 700; color: #1E293B; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card-body p { color: #64748B; font-size: 0.9rem; line-height: 1.6; }
.blog-card-date { color: #94A3B8; font-size: 0.8rem; margin-top: 0.75rem; }

.blog-coming-notice {
  text-align: center; padding: 3rem;
  background: linear-gradient(135deg, #F0F7FF 0%, #E8FFF5 100%);
  border-radius: 20px;
}
.blog-coming-notice h2 { font-size: 1.5rem; font-weight: 700; color: #1E293B; margin-bottom: 0.75rem; }
.blog-coming-notice p { color: #64748B; max-width: 500px; margin: 0 auto; }

@media (max-width: 768px) {
  .blog-hero h1 { font-size: 1.75rem; }
  .blog-grid { grid-template-columns: 1fr; }
}
