#explore{
    width: 90%;
    padding: 50px 5%;
}
#explore_header{
    font-size: 5em;
    font-weight: 600;
    margin-bottom: 20px;
}
#explore_items{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.explore_item{
    width: 31%;
    max-width: 400px;
    min-width: 300px;
    margin-bottom: 40px;
}
.explore_item_img{
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 5px;
    overflow: hidden;
}
.explore_item_text{
    width: 98%;
    padding: 13px 1%;
}
.explore_item_text header{
    font-size: 3.4em;
}
.explore_item_text p{
    font-size: 2.5em;
    margin-top: 8px;
    margin-bottom: 10px;
    height: 90px;
    line-height: 160%;
}
.explore_item_text .action_button{
    font-size: 2.8em;
    font-weight: 400;
    padding: 10px 20px;
    margin-top: 10px;
}
@media (max-width: 600px) {
    .explore_item{
        width: 100%;
        min-width: 0px;
    }
}