/* ==========================================================================
   Molecule: Newsletter Item
   ========================================================================== */

.saha-newsletter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 136px;
    padding: 0 50px;
    border-top: 1px solid var(--saha-color-border);
    border-bottom: 1px solid var(--saha-color-border);
    margin-bottom: -1px;
}

/* --- Content (date + title) --- */

.saha-newsletter-item__content {
    display: flex;
    flex-direction: column;
}

.saha-newsletter-item__date {
    font-family: var(--saha-font-primary);
    font-weight: 500;
    font-size: 13px;
    line-height: 22px;
    color: var(--saha-color-text-primary);
    margin-bottom: 10px;
}

.saha-newsletter-item__title {
    font-family: var(--saha-font-primary);
    font-weight: 400;
    font-size: 22px;
    line-height: 34px;
    color: var(--saha-color-text-primary);
    margin: 0;
}

/* --- Download link --- */

.saha-newsletter-item__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--saha-font-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: var(--saha-color-text-primary);
    text-decoration: underline;
    flex-shrink: 0;
}

.saha-newsletter-item__link:hover {
    opacity: 0.7;
}

/* --- Arrow icon --- */

.saha-newsletter-item__link .saha-icon {
    width: 7px;
    height: 12px;
    flex-shrink: 0;
}

/* --- Responsive: Mobile --- */

@media (max-width: 639px) {
    .saha-newsletter-item {
        padding: 0;
        min-height: 100px;
    }

    .saha-newsletter-item__title {
        font-size: 18px;
        line-height: 28px;
    }
}
