#main-content h2 {
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
}

.green {
    background-color: green;
}

.blue {
    background-color: lightblue;
}

.red {
    background-color: red;
}


.layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    margin: 20px;
}

@media (max-width: 780px) {
    .layout {
        display: flex;
        flex-direction: column;
    }

}


.card-img-top {
    height: 220px;
    /* choose any height you want */
    object-fit: cover;
    /* crop without stretching */
    width: 100%;
}

/* Featured News Carousel */
#mainCarousel .carousel-item img {
    height: 420px;
    /* choose your height */
    width: 100%;
    object-fit: cover;
    /* crop instead of stretch */
}

.featured {
    position: relative;
    overflow: hidden;
}

.featured img {
    width: 100%;
    height: 220px;          /* choose any height you like */
    object-fit: cover;     /* fills container without stretching */
    display: block;
    border-radius: 6px;
}

.news-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

.sidebox {
    grid-column-start: 2;
    grid-row-start: 1;
    grid-row-end: 3;
}

.latest-news-live {
    animation: pulse 2s infinite;
    border-radius: 50px;
    background-color: transparent;
}

.news-link{
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: small;
}
.news-link:hover {
    color: #2e650c;
}

.carousel-caption {
    background: rgba(0, 0, 0, .55);
    border-radius: 6px;
    padding: 1rem;
}

.section-title {
    font-weight: 400;          /* remove bold */
    font-size: 1.1rem;         /* smaller */
    letter-spacing: 0.3px;
}

/* News titles (H5) */
.news-title {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Video titles */
.video-title {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Carousel titles */
.carousel-caption h3 {
    font-weight: 400;
    font-size: 1.1rem;
}

/* Mobile tweak */
@media (max-width: 768px) {
    .section-title {
        font-size: 1rem;
    }

    .news-title,
    .video-title {
        font-size: 0.85rem;
    }
}

.fire-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.fire-card img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.fire-card:hover img {
    transform: scale(1.15);
}

.fire-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fire-card:hover .overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(25px);
    transition: transform 0.4s ease;
}

.fire-card:hover .overlay-content {
    transform: translateY(0);
}

.fire-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.fire-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
}

/* Mobile always visible */
@media (max-width: 768px) {
    .fire-card .overlay {
        opacity: 1;
    }
}

