.hw-body{
    display: flex;
    flex-wrap: wrap;
    gap : 60px 80px;
    /*max-width: 1200px; /*Override la max-width du theme si besoin, 1200 = 3 par ligne */
}
.hw-card{
    border-radius : 15px;
    border: 3px solid black;
    box-shadow: 5px 5px 0px #000000;
    width: 245px;
    height: 288px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: content-box;
    font-family : "Open Sans", Sans-serif;
}
.hw-card-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hw-days-ago{
    font-style: italic;
    font-size: 12px;
    color : #1E211B;
}
.hw-card-title{
    font-size: 24px;
}
.hw-tags{
    display: flex;
    flex-wrap: wrap;
    gap : 8px;
    font-size: 16px;
}
.hw-tag{
    background : #F2F2F2;
    padding :3px;
}
.hw-check-button{
    background: #375064;
    color: white !important;
    border-radius: 6px;
    border: none;
    width: 213px;
    height: 33px;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}