/* #content {
    padding-top: 90px;
}
*/
#content-achiever-list .title2 {
    font-weight: 500;
    /* padding-bottom: 20px; */
    font-size: 18px;
    color: white;
} 

#achiever {
    display: grid;
    row-gap: 40px;
}
#achiever .block:last-child{
    padding-bottom: 10px;
}

#achiever .category-title {
    padding: 40px 0px 20px;
}

#achiever .category-title img {
    width: 100%;
}

#achiever .category-video {
    padding-bottom: 15px;
}

#achiever .category-video img {
    width: 100%;
}

#achiever .category-video-embed {
    padding-bottom: 15px;
}

#achiever .category-video-embed iframe {
    display: block;
    border-radius: 15px;
    overflow: hidden;
}

/* #achiever .achiever-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
} */
#achiever .achiever-list {
    display: flex; /* change from grid to flex */
    flex-wrap: wrap;
    gap: 20px;
    justify-content: start;
}
  
#achiever .achiever-list.single {
    justify-content: center; /* center one item */
}
  
#achiever .achiever-list .block {
    width: calc(50% - 10px); /* 2 per row with 20px gap */
    box-sizing: border-box;
}
  
#achiever .block .photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
#achiever .block .photo img {
    height: 100%;
    width: auto;
    object-fit: cover;
}
   
#achiever .block  .info{
    text-align: center;
}

#achiever .block .photo img {
    width: 100%;
}

#achiever .block .preferred-name {
    font-weight: 500;
    padding-top: 10px;
    font-size: 15px;
    color: white;
}

#achiever .block .agency {
    font-weight: 400;
    font-size: 13px;
    color: white;
}