/* Banner */
.banner {
    padding-top: 150px;
}

.my-btn-wrapper button {
    background-color: rgba(36, 81, 36, 0.628);
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    color: white;
    font-weight: 500;
}

.my-btn-wrapper button:nth-child(1) {
    background-color: var(--primary);
}

/* story-card */
.f-story-card {
    background-color: var(--light-bg-green);
    border-radius: 30px;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.f-story-card:hover h2 {
    color: var(--primary);
}

.story-info>div span:nth-child(1) {
    background-color: rgba(48, 42, 212, 0.285);
    color: rgb(137, 183, 246);
    padding: 5px 20px;
    border-radius: 16px;
    display: inline-block;
    font-weight: 500;
}

.story-info>div span:nth-child(2) {
    color: var(--grey);
}

.story-info h2 {
    font-size: clamp(1.3rem,5vw,2.4rem);
    line-height: 1.5;
    margin-bottom: 30px;
}

.story-info p{
    color: var(--grey);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 50px;
}

.story-info a {
    background-color: rgba(36, 81, 36, 0.628);
    padding: 10px 20px;
    display: inline-block;
    border-radius: 30px;
    font-weight: 500;
    transition: all .3s ease-in-out;
}

.story-info a:hover {
    background-color: var(--primary);
    color: black;
}

/* News */
.news-card {
    transition: transform .6s ease-in-out;
}

.news-card:hover img {
    transform: scale(1.1);
}

.news-card:hover h3 {
    color: var(--primary);
}

.news-card figure img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.news-card figure {
    position: relative;
    overflow: hidden;
    border-radius: 45px;
}

.news-card .title {
    position: absolute;
    text-transform: uppercase;
    color: white;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 16px;
    top: 30px;
    left: 10px;
}

.title-cric {
    background-color: var(--secondary-orange);
}

.title-football {
    background-color: var(--secondary-blue);
}

.title-badminton {
    background-color: rgb(173, 91, 250);
}

.title-tennis {
    background-color: var(--primary);
}

.news-body p {
    color: var(--grey);
}

.news-body button {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 500;
}

.news-body button:hover {
    color: white;
}


