/* :root {
    --border-radius: 6px;
    --blue-color: #0bbcd6;
    --pink-color: #FC1CB2;
    --white-color: #fff;
    --transition: 0.3s all ease;
    --transform: scale(1.1);
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
} */

.div_for_main_of_sports_that_create_by_anirban {
    width: 100%;
    max-width: 1300px;
    /* margin: 20px auto; */
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* padding: 10px; */
    gap: 20px;
    /* overflow: hidden; */

}

.div_for_left_side_main_under_main_sports {
    width: 70%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.div_for_1st_section_under_main_left_side,
.div_for_2nd_section_under_main_left_side {
    width: 49%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.div_for_right_side_main_under_sports {
    width: 30%;
    min-height: 500px;
}

.div_for_imges_only {
    width: 100%;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
}

.div_for_imges_only .only-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* border-radius: var(--border-radius); */
    transition: var(--transition);
}

.div_for_image_main_under_1st_left {
     background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 15px;
    overflow: hidden;
}

.div_for_image_main_under_1st_left:hover .only-img {
    transform: scale(1.1);
    /* border-radius: var(--border-radius); */
}

.div_for_bottom_of_image {
    width: 100%;
    background-color: var(--white-color);
    border-radius: 0 0 6px 6px;
    padding-bottom: 10px;
}

.div_for_heading_und_image {
    font-size: var(--big-card-fsize);
    font-weight: bold;
    padding: 15px 15px 5px 0px;
    color: #333;
}

.div_for_image_main_under_1st_left:hover .div_for_heading_und_image {
    color: var(--blue-color);
    transition: var(--transition);
}

.div_for_short_description {
    font-size: var(--para-fsize);
    padding: 0 15px 15px 0px;
    color: #666;
    line-height: 1.4;
}

.div_for_profile_main {
    /* display: flex; */
    align-items: center;
    padding: 0 0 0px 0;
    gap: 10px;
}

/* .div_for_profile_photo_border_radious {
            height: 35px;
            width: 35px;
            border-radius: 50%;
            overflow: hidden;
            background: linear-gradient(135deg, #0bbcd6, #FC1CB2);
        }

        .div_for_profile_photo_border_radious img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .div_for_profile_holder_name {
            font-size: 20px;
            color: #444;
        }

        .div_for_post_date_update {
            font-size: 18px;
            color: #444;
        } */

.div_for_main_of_small_card_under_1st_section {
    width: 100%;
    display: flex;
    gap: 10px;
    /* margin-top: 10px; */
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 10px;
    transform: var(--transition);
    box-shadow: 0 10px 40px rgba(182, 182, 182, 0.271);
}
.div_for_main_of_small_card_under_1st_section:hover .div_for_some_desc_und_small{
    color: var(--blue-color);
}
 .div_for_some_desc_und_small .date{
    font-size: var(--para-fsize);
    color: #777;
    font-weight: normal;
}
.div_for_left_images_und_small {
    flex-shrink: 0;
    width: 80px;
    height:80px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.div_for_left_images_und_small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.div_for_main_of_small_card_under_1st_section:hover img {
    transform: scale(1.1);
}

.div_for_some_desc_und_small {
    font-size: var(--small-card-fsize);
    font-weight: bold;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
}

.edu-content {
    width: 100%;
    max-width: 500px; /* Limits width on desktop for that "mobile feed" look */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.edu-card {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 12px;
    margin-top: 9px;
    overflow: hidden; /* Clips the image to the border radius */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    aspect-ratio: 16 / 9; /* Maintains the cinematic shape */
}

.edu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7)); /* Gradient for text readability */
    color: white;
}

.date {
    font-size: 0.85rem;
    margin-bottom: 8px;
    opacity: 0.9;
    display: flex;
    align-items: center;
}

.title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}
.add_this_section{
    width: 100%;
    height: 150px;
    background: linear-gradient(45deg, #dfe6e9, #b2bec3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-weight: 600;
    color: rgb(148, 148, 148);
    font-size: 13px;
    margin-top: 15px;
}

/* Responsiveness: Adjust font sizes for smaller screens */
@media (max-width: 480px) {
    .title {
        font-size: 1.1rem;
    }
    .edu-content {
        padding: 10px;
    }
}
