.root {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 840px;
    height: 469px;
    padding: 32px;
    border-radius: var(--border-radius-lg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-decoration: none;
    color: inherit;
}

.label {
    width: fit-content;
}

.text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 505px;
}

.title {
    color: var(--color-text-primary-inverted);
}

.date {
    color: var(--color-text-secondary-inverted);
}

@media (width <= 1024px) {
    .root {
        width: 100%;
        height: auto;
        max-height: 469px;
        aspect-ratio: 840 / 469;
        padding: 16px;
        border-radius: var(--border-radius-xxs);
    }
}

@media (width <= 768px) {
    .root {
        width: 100%;
        height: auto;
        max-height: 469px;
        aspect-ratio: 335 / 250;
        padding: 16px;
        border-radius: var(--border-radius-xxs);
    }
}
