/**
 * Molecule: Press Item
 *
 * Figma node: 172:12694 / 178:3733
 *
 * Layout: flex row, space-between, align-center
 * Container: 136px min-height, border top+bottom, 50px horizontal padding
 * Date: Regular 13px/22px
 * Title: Regular 22px/34px
 * Link: Bold 16px/28px, underline
 * Arrow icon: 7×11.65px (PDF türünde)
 *
 * Responsive: Organism seviyesinde yönetilir.
 *
 * @package Saha
 */

/* ----------------------------------------
   Container
   ---------------------------------------- */

.saha-press-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    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;
}

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

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

/* ----------------------------------------
   Source (opsiyonel)
   ---------------------------------------- */

.saha-press-item__source {
    font-family: var(--saha-font-primary);
    font-weight: 700;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0;
    color: var(--saha-color-text-primary);

    text-transform: uppercase;
}

/* ----------------------------------------
   Date
   ---------------------------------------- */

.saha-press-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;
}

/* ----------------------------------------
   Title
   ---------------------------------------- */

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

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

.saha-press-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-press-item__link:hover {
    text-decoration: none;
}

/* ----------------------------------------
   Arrow Icon (saha_icon çıktısı, PDF türünde)
   ---------------------------------------- */

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