.medias {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 0;
}

.media-item {
    display: flex;
    justify-content: center;
}

.media-item a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.panel {
    height: 100%;
}

.media-select {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.media-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 10px 15px;
    gap: 8px;
}

.media-icones {
    border: 8px solid #eee;
}

.media-revue {
    margin-top: auto;
    text-align: center;
}

.media-auteur,
.media-titre {
    margin-top: 15px;
}

/* Tablette */
@media (max-width: 992px) {
    .medias {
        grid-template-columns: repeat(2, 1fr);
    }
}