/* ===== INDIA STORY INTRO ===== */
.india-story-section {
    padding: 50px 0 60px;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

    .india-story-section::before {
        content: '';
        position: absolute;
        top: -150px;
        right: -150px;
        width: 500px;
        height: 500px;
        background: rgba(232, 93, 43, 0.03);
        border-radius: 50%;
    }

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-visual {
    position: relative;
}

.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

    .story-image-wrapper img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        transition: transform 0.8s var(--transition-smooth);
    }

    .story-image-wrapper:hover img {
        transform: scale(1.05);
    }

.story-badge {
    position: absolute;
    bottom: 30px;
    left: -25px;
    background: var(--primary-green);
    color: var(--white);
    padding: 24px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 139, 69, 0.35);
    z-index: 2;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.story-badge .number {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    font-family: 'Playfair Display', serif;
}

.story-badge .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    margin-top: 4px;
    font-weight: 500;
}

.story-content .lead {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 24px;
}

    .story-content .lead span {
        color: var(--primary-orange);
    }

.story-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.story-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

    .highlight-item:hover {
        border-color: var(--primary-orange);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

    .highlight-item i {
        width: 36px;
        height: 36px;
        min-width: 36px;
        background: rgba(232, 93, 43, 0.1);
        color: var(--primary-orange);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .highlight-item h5 {
        font-size: 14px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 4px;
    }

    .highlight-item p {
        font-size: 13px;
        color: var(--gray);
        margin: 0;
        line-height: 1.5;
    }

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 50px 0;
    background: linear-gradient(45deg, var(--primary-green), var(--primary-orange));
    position: relative;
    overflow: hidden;
}

    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.02"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
        opacity: 0.5;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: rgb(0 0 0 / 51%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

    .stat-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-8px);
        border-color: rgba(255, 255, 255, 0.25);
    }

    .stat-card .stat-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        font-size: 24px;
        color: var(--white);
        transition: all 0.4s ease;
    }

    .stat-card:hover .stat-icon {
        background: var(--primary-orange);
        transform: rotateY(360deg);
    }

    .stat-card .stat-number {
        font-size: 2.6rem;
        font-weight: 800;
        color: var(--white);
        line-height: 1;
        margin-bottom: 8px;
        font-variant-numeric: tabular-nums;
        font-family: 'Playfair Display', serif;
    }

        .stat-card .stat-number span {
            color: var(--accent-gold);
            font-size: 1.4rem;
        }

    .stat-card .stat-label {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 500;
    }

/* ===== SECTOR SECTIONS ===== */
.sector-section {
    padding: 50px 0;
    position: relative;
}

    .sector-section:nth-child(even) {
        background: var(--white);
    }

    .sector-section:nth-child(odd) {
        background: var(--light);
    }

.sector-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sector-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: all 0.5s var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
}

    .sector-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-orange), var(--primary-green));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s var(--transition-smooth);
    }

    .sector-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        border-color: transparent;
    }

        .sector-card:hover::before {
            transform: scaleX(1);
        }

    .sector-card .card-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, rgba(232, 93, 43, 0.1), rgba(0, 139, 69, 0.1));
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: var(--primary-orange);
        margin-bottom: 24px;
        transition: all 0.4s ease;
        position: relative;
        z-index: 2;
    }

    .sector-card:hover .card-icon {
        transform: scale(1.1) rotate(-5deg);
        background: var(--primary-orange);
        color: var(--white);
    }

    .sector-card h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 14px;
        line-height: 1.3;
    }

    .sector-card p {
        color: var(--gray);
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 0;
    }

        .sector-card p strong {
            color: var(--primary-orange);
            font-weight: 600;
        }

.card-hover-bg {
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 140px;
    color: var(--primary-orange);
    opacity: 0;
    transition: all 0.5s var(--transition-smooth);
    z-index: 1;
    line-height: 1;
}

.sector-card:hover .card-hover-bg {
    opacity: 0.04;
    transform: scale(1.1) rotate(10deg);
}

/* ===== PACKAGING SECTION (Special Layout) ===== */
.packaging-section {
    padding: 50px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
    position: relative;
    overflow: hidden;
}

    .packaging-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(232, 93, 43, 0.03) 0%, transparent 70%);
        pointer-events: none;
    }

.feature-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.feature-block {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--light-gray);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .feature-block::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-orange), var(--primary-green));
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.4s ease;
    }

    .feature-block:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        border-color: transparent;
    }

        .feature-block:hover::after {
            transform: scaleY(1);
        }

    .feature-block .icon-wrap {
        width: 56px;
        height: 56px;
        min-width: 56px;
        background: rgba(232, 93, 43, 0.08);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--primary-orange);
        transition: all 0.3s ease;
    }

    .feature-block:hover .icon-wrap {
        background: var(--primary-orange);
        color: var(--white);
        transform: rotateY(360deg);
    }

    .feature-block h5 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 8px;
    }

    .feature-block p {
        color: var(--gray);
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 0;
    }

/* ===== TISSUE SECTION ===== */
.tissue-section {
    padding: 50px 0;
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

    .tissue-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.02"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    }

    .tissue-section .section-heading .title {
        color: var(--white);
    }

    .tissue-section .section-heading p {
        color: rgba(255, 255, 255, 0.7);
    }

.tissue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tissue-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

    .tissue-card:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-10px);
        border-color: var(--primary-orange);
    }

    .tissue-card .tissue-icon {
        width: 80px;
        height: 80px;
        background: rgba(232, 93, 43, 0.15);
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        font-size: 32px;
        color: var(--primary-orange);
        transition: all 0.4s ease;
    }

    .tissue-card:hover .tissue-icon {
        background: var(--primary-orange);
        color: var(--white);
        transform: scale(1.1) rotate(5deg);
    }

    .tissue-card h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 14px;
        color: var(--white);
    }

    .tissue-card p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 0;
    }

.tissue-stat-highlight {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    background: rgba(232, 93, 43, 0.2);
    border: 1px solid rgba(232, 93, 43, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-orange);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #006b36 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: var(--primary-orange);
        border-radius: 50%;
        opacity: 0.2;
    }

    .cta-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: var(--primary-orange);
        border-radius: 50%;
        opacity: 0.15;
    }

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

    .cta-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: var(--white);
        margin-bottom: 20px;
    }

    .cta-content p {
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 40px;
        line-height: 1.7;
    }

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

    .cta-buttons .btn-ProPaper-white {
        background: var(--white);
        color: var(--primary-green);
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    }

        .cta-buttons .btn-ProPaper-white:hover {
            background: var(--dark);
            color: var(--white);
            transform: translateY(-2px);
        }

    .cta-buttons .btn-ProPaper-outline-white {
        background: transparent;
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

        .cta-buttons .btn-ProPaper-outline-white:hover {
            background: var(--white);
            color: var(--primary-green);
            border-color: var(--white);
            transform: translateY(-2px);
        }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-smooth);
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}



/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-badge {
        left: 20px;
        bottom: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sector-cards,
    .tissue-grid {
        grid-template-columns: 1fr;
    }

    .feature-row {
        grid-template-columns: 1fr;
    }

    .story-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-banner {
        min-height: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }

    .sector-card,
    .feature-block,
    .tissue-card {
        padding: 30px 20px;
    }
}



/* ===== STATS ROW ===== */
.market-visual {
    margin-block: 20px;
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a1a2e 100%);
    border-radius: 24px !important;
    overflow: hidden;
    margin-bottom: 60px;
}

.market-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.india-map-svg {
    width: 100%;
    height: 100%;
    max-height: 300px;
}

.market-stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.market-stat-item {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* ===== CONTENT GRID ===== */
.bn-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
}

.bn-content-col {
    padding: 40px;
}

    .bn-content-col:first-child {
        border-right: 1px solid var(--light-gray);
    }

.bn-content-block {
    margin-bottom: 32px;
}

    .bn-content-block:last-child {
        margin-bottom: 0;
    }

    .bn-content-block h4 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 10px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .bn-content-block h4 i {
            color: var(--primary-orange);
            font-size: 1rem;
        }

    .bn-content-block:nth-child(2) h4 i {
        color: var(--primary-green);
    }

    .bn-content-block p {
        color: var(--gray);
        line-height: 1.7;
        font-size: clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
        margin: 0;
    }

        .bn-content-block p strong {
            color: var(--primary-orange);
            font-weight: 600;
        }

@media (max-width: 991px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .market-visual {
        padding: 30px 20px;
    }

    .bn-content-grid {
        grid-template-columns: 1fr;
    }

    .bn-content-col:first-child {
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
    }

    .market-stat-item {
        padding: 10px;
    }

    .market-stats-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===== PAPER ROLL CARDS ===== */
.bn-roll-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    padding: 50px 20px;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.bn-roll-card {
    position: relative;
    background: linear-gradient(180deg, #f8f6f2 0%, #ffffff 15%, #ffffff 85%, #f0ece4 100%);
    border-radius: 0 0 20px 20px;
    padding: 50px 16px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.5s var(--transition-smooth);
    border: 1px solid var(--light-gray);
    border-top: none;
}

    .bn-roll-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 10%;
        right: 10%;
        height: 8px;
        background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
        border-radius: 0 0 50% 50%;
    }

    .bn-roll-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    }

.bn-roll-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.bn-roll-card:nth-child(1) .bn-roll-header {
    background: linear-gradient(135deg, #c41e3a, var(--primary-orange));
}

.bn-roll-card:nth-child(2) .bn-roll-header {
    background: linear-gradient(135deg, #7cb342, var(--primary-green));
}

.bn-roll-card:nth-child(3) .bn-roll-header {
    background: linear-gradient(135deg, #29b6f6, #0288d1);
}

.bn-roll-card:nth-child(4) .bn-roll-header {
    background: linear-gradient(135deg, var(--accent-gold), #8d6e63);
}

.bn-roll-card:nth-child(5) .bn-roll-header {
    background: linear-gradient(135deg, #ffa726, #f57c00);
}

.bn-roll-card:nth-child(6) .bn-roll-header {
    background: linear-gradient(135deg, #fdd835, #f9a825);
    color: var(--dark);
}

.bn-roll-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.bn-roll-card p {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

    .bn-roll-card p strong {
        color: var(--primary-orange);
        font-weight: 600;
    }

/* ===== HERO WITH MILL IMAGE ===== */
.about-hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .about-hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center left;
    }

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.2) 0%, rgba(26, 26, 46, 0.5) 45%, rgba(26, 26, 46, 0.85) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 25px 20px;
}

.about-glass-panel {
    width: 100%;
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

    .about-glass-panel p {
        font-size: clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
        line-height: 1.8;
        color: var(--light);
        margin: 0 0 16px;
    }

        .about-glass-panel p:last-child {
            margin-bottom: 0;
        }

        .about-glass-panel p strong {
            color: var(--primary-orange);
            font-weight: 600;
        }

@media (max-width: 991px) {
    .about-hero {
        min-height: auto;
    }

    .about-hero-content {
        justify-content: center;
        padding: 40px 20px;
    }

    .bn-roll-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .bn-roll-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
