/* ============================
   ENTERTAINMENT SECTION
=============================== */
.entertainment-section {
    background-image: url("../images/home/arthatantrasection/r\ \(1\).png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  padding: 0.8rem 1rem;
    color: #fff;
}
.entertainment-content{
    max-width: 1280px;
}

/* SECTION HEADER */
.entertainment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.entertainment-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e73be;
    margin: 0;
}

.entertainment-title-line {
    flex-grow: 1;
    height: 2px;
    background: #1e73be;
    margin: 0 20px;
}

.entertainment-more {
    font-size: 14px;
    color: #1e73be;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s ease;
}

.entertainment-more:hover {
    text-decoration: underline;
}


/* FEATURED POSTS */
.entertainment-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 2 items per row */
    gap: 20px;
}
@media (max-width: 768px) {
.entertainment-featured {
    grid-template-columns: repeat(1, 1fr); /* 2 items per row */
}
}

.entertainment-featured a {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    background: #fff;
    text-decoration: none;
    position: relative;
}
.entertainment-featured a :hover{
    color:     #f1f1f1;

}



.entertainment-featured img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
}

.entertainment-featured h3 {
font-size: 20px;
    padding: 10px 12px;
    line-height: 1.4;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.3s;
    text-align: left;
    width: 100%;position: absolute;
    bottom: 0;
    background: #0000008a;

}






