#frontend_applicants_content_offer_categories {
    /* XXX - danielvg: TODO */
    padding-top: 40px!important;
    margin-bottom: 80px;

    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

#frontend_applicants_content_offer_categories #frontend_applicants_content_offer_categories_title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #071437;
}

#frontend_applicants_content_offer_categories #frontend_applicants_content_offer_categories_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    row-gap: 32px;
    column-gap: 32px;
}
#frontend_applicants_content_offer_categories #frontend_applicants_content_offer_categories_list .frontend_applicants_content_offer_categories_list_item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex-basis: calc( 33.33% - 32px * ( 2 / 3 ) );
}
#frontend_applicants_content_offer_categories #frontend_applicants_content_offer_categories_list .frontend_applicants_content_offer_categories_list_item .frontend_applicants_content_offer_categories_list_item_image {
    position: relative;
    height: 100%;
}
#frontend_applicants_content_offer_categories #frontend_applicants_content_offer_categories_list .frontend_applicants_content_offer_categories_list_item .frontend_applicants_content_offer_categories_list_item_image img {
    width: 100%;
    max-width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1.75;
}
#frontend_applicants_content_offer_categories #frontend_applicants_content_offer_categories_list .frontend_applicants_content_offer_categories_list_item .frontend_applicants_content_offer_categories_list_item_image_overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(64, 64, 64, 0.5);
    transition: background-color 0.3s ease;
}
#frontend_applicants_content_offer_categories #frontend_applicants_content_offer_categories_list .frontend_applicants_content_offer_categories_list_item:hover .frontend_applicants_content_offer_categories_list_item_image_overlay {
    background-color: rgba( 64, 64, 64, 0.75 );
}
#frontend_applicants_content_offer_categories #frontend_applicants_content_offer_categories_list .frontend_applicants_content_offer_categories_list_item .frontend_applicants_content_offer_categories_list_item_text {
    position: absolute;
    bottom: 5%;
    left: 5%;
    color: var(--color-frontend_white);
}
#frontend_applicants_content_offer_categories #frontend_applicants_content_offer_categories_list .frontend_applicants_content_offer_categories_list_item .frontend_applicants_content_offer_categories_list_item_text .frontend_applicants_content_offer_categories_list_item_text_name {
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1;
}
#frontend_applicants_content_offer_categories #frontend_applicants_content_offer_categories_list .frontend_applicants_content_offer_categories_list_item .frontend_applicants_content_offer_categories_list_item_text .frontend_applicants_content_offer_categories_list_item_text_number {
    font-weight: 400;
    font-size: 1.25rem;
}

@media only screen and (max-width: 600px) {
    #frontend_applicants_content_offer_categories #frontend_applicants_content_offer_categories_list { flex-wrap: no-wrap; }
    #frontend_applicants_content_offer_categories #frontend_applicants_content_offer_categories_list .frontend_applicants_content_offer_categories_list_item { flex-basis: 100%; }
    #frontend_applicants_content_offer_categories #frontend_applicants_content_offer_categories_list .frontend_applicants_content_offer_categories_list_item .frontend_applicants_content_offer_categories_list_item_image img { aspect-ratio: 4; }    
}
