/* ------------------  Article Section ------------------ */

article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: start;
    gap: 20px;
    background-color: #F4F4F4;
}

article h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    margin: 0;
    font-weight: 500;
    color: black;
}
article p {
    font-family: 'Merriweather', serif;
    font-size: 19px;
    margin: 0;
    font-weight: 400;
    color: black;
}

.card_container {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 10px;
    gap: 40px;
}
.card {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    position: relative;
    width: 320px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 6px 10px 0 rgba(0,0,0,0.3);
}
.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.overlay {
    position: absolute;
    box-sizing: border-box;
    bottom: 0;
    left: 0;
    right: 0;
    height: 95px;
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    overflow: hidden;
    padding: 10px 30px 10px 30px;
    width: 100%;
    transition: .5s ease;
    border-radius: 0 0 10px 10px;
    backdrop-filter: blur(6px) brightness(50%);
}
  .card:hover .overlay {
    height: 100%;
    border-radius: 10px;
}

.overlay h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: white;
    margin: 0;
}
#small_profile_heading {
    font-size: 23px;
}
.overlay h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    color: #a4b381;
}
.overlay p {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    font-weight: 400;
    color: white;
    margin-top: 20px;
    width: 100%
}

.card_socials {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    justify-self: end;
    margin-top: auto;
}
.card_social_logo {
    width: 30px;
    height: 30px;
    margin: 0 10px;
    color: white;
}

/* Sponsor logo */
#sponsor_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 100px;
    padding: 10px 0;
}

#sponsor_container img {
    height: 150px;
}
