:root {
    --cherry: #53bd16;
    --cherry-dark: #300d8f;
    --dark: #354b7e;
    --soft: #fff5f6;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fafafa;
    color: #1f2937;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
}

.header {
    background: linear-gradient(120deg, #129f2a, #1ddb92);
    padding: 14px 0;
}

.header .nav-link {
    color: #fff !important;
    margin: 0 10px;
    font-weight: 600;
}

.header .nav-link:hover {
    opacity: .8;
}

.brand {
    font-size: 26px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.hero {
    border-radius: 22px;
    overflow: hidden;
}

.hero img {
    height: 520px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .85));
    display: flex;
    align-items: flex-end;
    padding: 50px;
}

.category-pill {
    background: var(--cherry);
    color: #fff;
    font-size: 12px;
    padding: 4px 14px;
    border-radius: 30px;
}

.article-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    transition: .3s;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
}

.article-card img {
    height: 220px;
    object-fit: cover;
}

.footer {
    background: linear-gradient(120deg, #021716, #3ead79);
    color: #cbd5f5;
}

.footer a {
    color: #cbd5f5;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1f2933;
    display: flex;
    align-items: center;
    justify-content: center;
}






.article-hero {
    height: 460px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .6));
}

.article-hero-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: white;
    z-index: 5;
    max-width: 700px;
}

.category-pill {
    font-weight: 600;
    display: inline-block;
}

.article-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-top: 12px;
}

.article-meta {
    font-size: 14px;
    opacity: .85;
}

.article-wrapper {
    background: white;
    border-radius: 22px;
    padding: 3rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .07);
}

.article-wrapper p {
    font-size: 1.05rem;
    line-height: 1.9;
}

.article-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    border-left: 5px solid var(--cherry);
    padding-left: 12px;
    margin-top: 3rem;
}

.section-divider {
    height: 3px;
    width: 70px;
    background: var(--cherry);
    margin: 2.5rem 0;
}

.tag {
    background: var(--soft);
    color: var(--cherry);
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
}

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    background: var(--cherry);
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .2);
}

.back-to-top:hover {
    background: var(--cherry-dark);
}