body {
    font-family: 'Inter', sans-serif;
    background: #fafafa;
}

/* ================= HERO SECTION ================= */
.stories-hero {
    position: relative;
    padding: 140px 20px 120px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 230, 230, 0.6), transparent 45%),
        radial-gradient(circle at 80% 50%, rgba(225, 245, 255, 0.6), transparent 45%),
        #ffffff;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* BADGE */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #fdecec;
    color: #e53935;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
}

/* TITLE */
.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #1f2933;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.hero-title span {
    color: #e53935;
}

/* DESCRIPTION */
.hero-desc {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #6b7280;
}

/* ================= FILTER TABS ================= */
.filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.filters button {
    border: 0;
    padding: 10px 22px;
    border-radius: 30px;
    background: #f2f2f2;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.filters button.active {
    background: #d63b2f;
    color: #fff;
}

/* Mobile horizontal scroll */
@media (max-width: 768px) {
    .filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
    }

    .filters::-webkit-scrollbar {
        display: none;
    }
}

/* ================= FEATURED STORY ================= */
.featured {
    margin-top: 60px;
}

.featured img {
    width: 100%;
    border-radius: 18px;
}

.featured .tag {
    display: inline-block;
    background: #d63b2f;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 12px;
}

/* Mobile featured layout */
@media (max-width: 768px) {
    .featured {
        margin-top: 40px;
    }

    .featured h2 {
        font-size: 24px;
    }

    .featured p {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* ================= IMPACT SECTION ================= */
.impact {
    padding: 80px 0;
}

.impact-container {
    padding-left: 60px;
    padding-right: 60px;
}

/* Responsive padding */
@media (max-width: 991px) {
    .impact-container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 575px) {
    .impact-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .impact h3 {
        font-size: 22px;
    }
}

/* ================= STORY CARDS ================= */
.story-card .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    border: 0;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover animation */
.story-card .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Image wrapper */
.story-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Image pop-up on hover */
.story-card .card:hover img {
    transform: scale(1.06);
}

/* Card body alignment */
.story-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.story-card .card-body p {
    flex-grow: 1;
}

/* Tag on image */
.story-card .tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Footer */
.story-card .footer {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-weight: 600;
    font-size: 14px;
}

/* Mobile image ratio tweak */
@media (max-width: 575px) {
    .story-card img {
        aspect-ratio: 16 / 11;
    }
}

/* ================= LOAD MORE BUTTON ================= */
.load-more {
    background: #d63b2f;
    color: #fff;
    border: 0;
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.25s ease;
}

.load-more:hover {
    background: #bf2f25;
    transform: translateY(-2px);
}

/* ================= HERO RESPONSIVE ================= */
@media (max-width: 768px) {
    .stories-hero {
        padding: 100px 16px 90px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-desc {
        font-size: 16px;
    }
}
/* ================= STATS BAR ================= */
.stories-stats {
    background: #d63b2f;
    color: #ffffff;
}

.stat-item {
    padding: 48px 20px;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 15px;
    opacity: 0.9;
}

/* Mobile stats */
@media (max-width: 575px) {
    .stat-item {
        padding: 32px 16px;
    }

    .stat-item h3 {
        font-size: 32px;
    }
}

/* ================= SHARE YOUR STORY ================= */
.share-story {
    position: relative;
    padding: 110px 20px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 60%),
        linear-gradient(180deg, #1f2933 0%, #111827 100%);
    color: #ffffff;
}

.share-inner {
    max-width: 720px;
    margin: 0 auto;
}

/* Heart Icon */
.share-icon {
    font-size: 40px;
    color: #e53935;
    margin-bottom: 24px;
}

/* Title */
.share-story h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 18px;
}

/* Description */
.share-story p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
}

/* Buttons */
.share-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.share-actions .btn-primary {
    background: #e53935;
    color: #fff;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.share-actions .btn-primary:hover {
    background: #c92f2b;
    transform: translateY(-2px);
}

.share-actions .btn-secondary {
    background: rgba(255,255,255,0.12);
    color: #fff;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.25s ease;
}

.share-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

/* Mobile CTA */
@media (max-width: 575px) {
    .share-story {
        padding: 80px 16px;
    }

    .share-story h2 {
        font-size: 30px;
    }

    .share-story p {
        font-size: 15px;
    }
}
/* ================= STORY MODAL ================= */
.story-modal {
    border-radius: 18px;
    overflow: hidden;
}

.story-modal .modal-header {
    background: #f9fafb;
    border-bottom: 1px solid #eee;
}

.story-modal .modal-title {
    font-weight: 700;
}

.story-modal label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.story-modal .form-control {
    border-radius: 10px;
    padding: 10px 14px;
}

.btn-submit {
    background: #e53935;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
}

.btn-submit:hover {
    background: #c92f2b;
}

.form-feedback {
    font-size: 14px;
    font-weight: 600;
}
