/* CARDS */
.cards-container-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px
}

.cards-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 20px;
    padding-bottom: 10px;
}

.cards-container.wrap {
    flex-wrap: wrap;
}

.cards-container::-webkit-scrollbar {
    display: none
}

div:has(.cards-container) {
    width: 100%;
    overflow-x: scroll;
}

.cards-container-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 10px;
}

.card {
    display: flex;
    flex-direction: column;
    background-color: var(--light);
    border-radius: 10px;
    width: 310px;
    padding: 5px;
    border: 1px solid #00000017;
    transition: all 200ms; 
    cursor: pointer;
}

.card:hover {
    background-color: #00000017;
}

.card.little {
    width: 280px;
}

.card img {
    border-radius: 5px 5px 0px 0px;
    height: 200px;
    object-fit: cover;
}

.card.little img {
    aspect-ratio: 1/1;
}

.card div {
    margin: 10px;
}

.card h4 {
    text-align: center;
    margin-bottom: 10px;
}

/* BOX */
.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: var(--light);
    border-radius: 10px;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.nav-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

/* NAV */
.nav-container .content {
    border-radius: 10px;
    border: 1px solid #00000017;
    padding: 10px;
    width: 200px;
    height: 150px;
    transition: all 200ms; 
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.nav-container .content:hover {
    background-color: #00000017;
}

.nav-container .content .material-symbols-outlined {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    font-size: 128px;
    color: #00000017;
    position: absolute;
    bottom: -20px;
    right: -20px;
}