/**
 * Molecule: Download Item
 *
 * Figma node: 172:12493
 *
 * Varyantlar:
 *   default    → compact: Bold 16px title + PDF link alt alta, 94px min-height
 *   with-date  → featured: date + Regular 22px title (sol) + PDF link (sağ), 136px min-height
 *
 * Ortak:
 *   Border: top + bottom, 1px solid --saha-color-border
 *   Padding: 0 50px
 *   Font feature: 'kern' 0, 'case' 0
 *
 * Responsive: Organism seviyesinde yönetilir.
 *
 * @package Saha
 */

/* ----------------------------------------
   Container — Default (compact)
   ---------------------------------------- */

.saha-download-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0 18px 50px;
    border-top: 1px solid var(--saha-color-border);
    border-bottom: 1px solid var(--saha-color-border);
    margin-bottom: -1px;
}

/* ----------------------------------------
   Container — With Date (featured)
   ---------------------------------------- */

.saha-download-item--with-date {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 136px;
}

/* ----------------------------------------
   Info (title + date grubu)
   ---------------------------------------- */

.saha-download-item__info {
    display: flex;
    flex-direction: column;
}

/* ----------------------------------------
   Date (sadece with-date varyantı)
   ---------------------------------------- */

.saha-download-item__date {
    font-family: var(--saha-font-primary);
    font-weight: 400;
    font-size: 13px;
    line-height: 21.125px;
    letter-spacing: 0;
    color: var(--saha-color-text-primary);

}

/* ----------------------------------------
   Title — Default
   ---------------------------------------- */

.saha-download-item__title {
    font-family: var(--saha-font-primary);
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
    color: var(--saha-color-text-primary);
    text-decoration: underline;

    margin: 0;
}

/* Title — With Date varyantı (farklı tipografi) */

.saha-download-item--with-date .saha-download-item__title {
    font-weight: 400;
    font-size: 22px;
    line-height: 35.75px;
}

/* ----------------------------------------
   Download Link
   ---------------------------------------- */

.saha-download-item__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--saha-font-primary);
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    line-height: 28px;
    color: var(--saha-color-text-primary);
    text-decoration: none;
}

.saha-download-item__link:hover {
    text-decoration: underline;
}

/* Link — With Date varyantında Bold */

.saha-download-item--with-date .saha-download-item__link {
    font-weight: 700;
}

/* ----------------------------------------
   Arrow Icon (saha_icon çıktısı)
   ---------------------------------------- */

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