.hero-section {
    text-align: center;
    padding: 100px 20px;
}

    .hero-section h1 {
        font-size: 60px;
        font-weight: 700;
    }

    .hero-section p {
        font-size: 20px;
        color: gray;
    }

.card {
    border: none;
    border-radius: 20px;
}

body {
    background: #f8fafc;
    font-family: 'Segoe UI',sans-serif;
}

.hero-section {
    padding: 120px 0;
    text-align: center;
}

    .hero-section h1 {
        font-size: 4rem;
        font-weight: 800;
    }

    .hero-section p {
        max-width: 700px;
        margin: auto;
        color: #666;
        font-size: 1.2rem;
    }

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.trend-card,
.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    transition: .3s;
}

    .trend-card:hover,
    .article-card:hover {
        transform: translateY(-8px);
    }

.category-box {
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    transition: .3s;
}

    .category-box:hover {
        transform: translateY(-5px);
    }

.newsletter {
    background: #111827;
    color: white;
    padding: 80px 0;
}

.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0;
}

.category-tag {
    background: #eef2ff;
    color: #4f46e5;
    padding: 5px 10px;
    border-radius: 20px;
}


.ck-editor__editable_inline {
    min-height: 500px;
}

.card {
    border-radius: 15px;
}

    .card img {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }



.hero-section {
    background: linear-gradient(135deg,#0d6efd,#6610f2);
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.featured-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .3s;
}

    .article-card:hover {
        transform: translateY(-8px);
    }

    .article-card img {
        height: 220px;
        width: 100%;
        object-fit: cover;
    }

.category-box {
    background: white;
    padding: 25px;
    text-align: center;
    border-radius: 16px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.section-title {
    margin-bottom: 30px;
    font-weight: 700;
}
.footer-section {
    background: linear-gradient(135deg,#0f172a,#111827);
    color: #d1d5db;
    padding: 70px 0 20px;
    margin-top: auto;
}

/* Newsletter */

.newsletter-box {
    padding-bottom: 30px;
}

.newsletter-input {
    height: 55px;
    border: none;
}

    .newsletter-input:focus {
        box-shadow: none;
    }

/* Footer */

.footer-description {
    color: #9ca3af;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: .3s;
}

    .footer-links a:hover {
        color: #fff;
        padding-left: 5px;
    }

.footer-divider {
    border-color: rgba(255,255,255,.1);
}

.social-links a {
    color: white;
    font-size: 22px;
    margin-right: 15px;
    transition: .3s;
}

    .social-links a:hover {
        transform: translateY(-4px);
        color: #0d6efd;
    }