.tribunes-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px;
}

.tribune-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #fdfdfb;
    border: 1px solid #e3e2dd;
    border-radius: 6px;
    padding: 24px;
}

.tribune-image-container {
    flex-shrink: 0;
}

.tribune-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.tribune-body {
    min-width: 0;
}

.tribune-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.tribune-category {
    color: #882f1c;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tribune-date {
    color: var(--light-grey-color);
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.tribune-title {
    margin: 0 0 14px 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.6rem;
    color: #00132a;
}

.tribune-title a {
    color: inherit;
    text-decoration: none;
}

.tribune-title a:hover {
    text-decoration: underline;
}

.tribune-chapo {
    margin: 0 0 20px 0;
    font-size: 0.9rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5rem;
    color: #3a3a3a;
}

.tribune-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid #ececea;
}

.tribune-signature {
    font-size: 0.8rem;
    color: var(--dark-grey-color);
}

.tribune-link {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #882f1c;
    text-decoration: none;
}

.tribune-link:hover {
    text-decoration: underline;
}

.tribune-back {
    display: inline-block;
    margin: 0 0 20px 0;
    color: var(--dark-grey-color);
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-decoration: none;
}

.tribune-back:hover {
    color: #882f1c;
}

.tribune-single-title {
    margin: 0 0 20px 0;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.2rem;
    color: #00132a;
}

.tribune-single-chapo {
    margin: 0 0 24px 0;
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6rem;
    color: #3a3a3a;
    padding-bottom: 24px;
    border-bottom: 1px solid #ececea;
}

.tribune-single-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 24px;
}

.tribune-single-content {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7rem;
    color: #1c1c1c;
}

.tribune-single-content h2,
.tribune-single-content h3 {
    color: #00132a;
    font-weight: 700;
    margin: 30px 0 14px 0;
}

.tribune-single-signature {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--dark-grey-color);
}

@media (min-width: 700px) {
    .tribune-card {
        flex-direction: row;
    }

    .tribune-image-container {
        width: 240px;
    }

    .tribune-image {
        height: 100%;
        min-height: 180px;
    }
}

@media (min-width: 1050px) {
    .tribunes-list {
        padding: 0;
        gap: 30px;
    }

    .tribune-card {
        padding: 34px;
        gap: 34px;
    }

    .tribune-image-container {
        width: 300px;
    }

    .tribune-title {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }

    .tribune-chapo {
        font-size: 0.95rem;
    }

    .tribune-single-title {
        font-size: 2.2rem;
        line-height: 2.6rem;
    }

    .tribune-single-chapo {
        font-size: 1.1rem;
    }

    .tribune-single-content {
        font-size: 1rem;
        line-height: 1.8rem;
    }
}
