:root {
    --orange-500: #FF7A30;
    --orange-600: #F97316;
    --orange-700: #EA580C;
    --peach-light: #FFE8D6;
    --peach: #FFDAC1;
    --peach-gradient: linear-gradient(135deg, #FFE8D6 0%, #FFDAC1 50%, #FFD4B8 100%);
    --navy-900: #1E293B;
    --navy-800: #1E3A5F;
    --navy-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748B;
    --gray-400: #94A3B8;
    --gray-200: #E2E8F0;
    --gray-100: #F1F5F9;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    animation: pageLoad 0.6s ease 0.1s forwards;
}

@keyframes pageLoad {
    to { opacity: 1; }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

article img,
.blog-content img,
.featured-article img,
.blog-card img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}




.blog-hero {
    position: relative;
    padding: 100px 0 60px;
    background: var(--peach-gradient);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    animation: orbFloat 8s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(30px, -30px) scale(1.1); opacity: 0.8; }
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 122, 48, 0.3) 0%, transparent 70%);
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 212, 184, 0.4) 0%, transparent 70%);
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    top: 40%;
    right: 30%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--navy-800);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    margin-bottom: 24px;
    animation: slideDown 0.6s ease 0.3s both;
}

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

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--navy-800);
    line-height: 1.15;
    margin-bottom: 16px;
    animation: slideDown 0.6s ease 0.4s both;
}

.hero-text h1 em {
    color: var(--orange-500);
    font-style: italic;
}

.hero-text > p {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
    animation: slideDown 0.6s ease 0.5s both;
}

.hero-features {
    display: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    font-size: 0.875rem;
    color: var(--navy-900);
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.75);
}

.feature-item svg {
    color: var(--orange-500);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.newsletter-section {
    display: none;
}

.newsletter-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.newsletter-subtitle {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
}

.input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--gray-400);
    pointer-events: none;
}

.input-wrapper input {
    width: 100%;
    padding: 15px 16px 15px 48px;
    font-size: 0.95rem;
    color: var(--navy-900);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    outline: none;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.input-wrapper input:focus {
    border-color: var(--orange-500);
    box-shadow: 0 4px 16px rgba(255, 122, 48, 0.15);
}

.input-wrapper input::placeholder {
    color: var(--gray-400);
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    background: var(--orange-500);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(255, 122, 48, 0.3);
}

.newsletter-btn:hover {
    background: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 122, 48, 0.4);
}

.newsletter-btn svg {
    transition: transform 0.3s;
}

.newsletter-btn:hover svg {
    transform: translateX(3px);
}

.hero-featured {
    position: relative;
    animation: slideUp 0.8s ease 0.5s both;
}

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

.featured-article {
    display: block;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-article:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.featured-image-wrapper {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-article:hover .featured-image-wrapper img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 100%);
    pointer-events: none;
}

.article-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--orange-500);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(255, 122, 48, 0.4);
}

.featured-info {
    padding: 14px;
}

.featured-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-800);
    line-height: 1.3;
    margin-bottom: 8px;
}

.featured-info p {
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 10px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.meta-item svg {
    color: var(--orange-500);
}

.blog-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--navy-900);
}

.filter-tabs {
    display: flex;
    gap: 10px;
}

.filter-tab {
    padding: 11px 22px;
    background: var(--gray-100);
    border: none;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tab:hover {
    background: var(--gray-200);
    color: var(--navy-900);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: var(--orange-500);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 122, 48, 0.3);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.blog-card {
    display: block;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.blog-card.animate-in {
    animation: cardFadeIn 0.6s ease forwards;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.blog-card.animate-in:nth-child(1) { animation-delay: 0.05s; }
.blog-card.animate-in:nth-child(2) { animation-delay: 0.1s; }
.blog-card.animate-in:nth-child(3) { animation-delay: 0.15s; }
.blog-card.animate-in:nth-child(4) { animation-delay: 0.2s; }
.blog-card.animate-in:nth-child(5) { animation-delay: 0.25s; }
.blog-card.animate-in:nth-child(6) { animation-delay: 0.3s; }
.blog-card.animate-in:nth-child(7) { animation-delay: 0.35s; }
.blog-card.animate-in:nth-child(8) { animation-delay: 0.4s; }
.blog-card.animate-in:nth-child(9) { animation-delay: 0.45s; }

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--gray-100);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .card-image img {
    transform: scale(1.12);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
    transition: opacity 0.4s;
}

.blog-card:hover .card-overlay {
    opacity: 0.7;
}

.card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    background: var(--orange-500);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 7px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 12px rgba(255, 122, 48, 0.35);
}

.card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.card-content p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange-500);
    transition: all 0.3s;
}

.blog-card:hover .read-more {
    gap: 10px;
}

.read-more svg {
    transition: transform 0.3s;
}

.blog-card:hover .read-more svg {
    transform: translateX(4px);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 60px;
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--gray-600);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover:not(:disabled) {
    background: var(--orange-500);
    border-color: var(--orange-500);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 122, 48, 0.3);
}

.page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--gray-600);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.page-num:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
    transform: translateY(-2px);
}

.page-num.active {
    background: var(--orange-500);
    border-color: var(--orange-500);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 122, 48, 0.35);
}

.cta-section {
    padding: 0 0 90px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    background: var(--navy-800);
    border-radius: 24px;
    padding: 56px 64px;
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 122, 48, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--orange-500);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    white-space: nowrap;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(255, 122, 48, 0.4);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background: var(--orange-600);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 122, 48, 0.5);
}


@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text > p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .featured-article {
        max-width: 100%;
    }

    .featured-image-wrapper {
        height: 200px;
    }

    .featured-info {
        padding: 16px;
    }

    .featured-info h2 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .featured-info p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .card-image {
        height: 180px;
    }

    .card-content {
        padding: 20px;
    }

    .card-content h3 {
        font-size: 0.95rem;
        margin-bottom: 10px;
        min-height: 2.4em;
    }

    .card-content p {
        font-size: 0.8rem;
        margin-bottom: 16px;
        min-height: 2.4em;
    }

}

@media (max-width: 768px) {




    .blog-hero {
        padding: 80px 0 50px;
    }

    .hero-content {
        gap: 24px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .hero-text > p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
        margin-bottom: 18px;
    }

    .hero-features {
        display: none;
    }

    .newsletter-section {
        display: none;
    }

    .featured-article {
        max-width: 100%;
    }

    .featured-image-wrapper {
        height: 160px;
    }

    .featured-info {
        padding: 14px;
    }

    .featured-info h2 {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .featured-info p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .article-meta {
        gap: 12px;
    }

    .meta-item {
        font-size: 0.7rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .filter-tabs {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 4px;
    }

    .filter-tab {
        flex-shrink: 0;
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 48px;
    }

    .card-image {
        height: 140px;
    }

    .card-content {
        padding: 16px;
    }

    .card-content h3 {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 8px;
        min-height: auto;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card-content p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 12px;
        min-height: auto;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card-footer {
        padding-top: 14px;
    }

    .post-meta {
        font-size: 0.75rem;
    }

    .read-more {
        font-size: 0.85rem;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
        gap: 28px;
    }

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

    .cta-content p {
        font-size: 0.95rem;
    }


    .pagination {
        margin-top: 48px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .blog-hero {
        padding: 72px 0 40px;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.15;
    }

    .hero-text > p {
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 7px 14px;
    }

    .featured-image-wrapper {
        height: 130px;
    }

    .featured-info {
        padding: 12px;
    }

    .featured-info h2 {
        font-size: 0.85rem;
    }

    .featured-info p {
        font-size: 0.7rem;
    }

    .meta-item {
        font-size: 0.65rem;
    }

    .section-header h2 {
        font-size: 1.35rem;
    }

    .card-image {
        height: 120px;
    }

    .card-content {
        padding: 14px;
    }

    .card-content h3 {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .card-content p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .cta-card {
        padding: 36px 24px;
    }

    .cta-content h2 {
        font-size: 1.35rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .input-wrapper input {
        padding: 14px 16px 14px 44px;
    }

    .newsletter-btn {
        padding: 14px 24px;
        justify-content: center;
    }
}
