/**
 * Page: Arama (Search Results)
 *
 * @package Saha
 */

/* ----------------------------------------
   Page — overlay açık olduğu için üst boşluk
   ---------------------------------------- */

.saha-page--arama {
    padding-top: 170px;
    padding-bottom: 60px;
}

/* ----------------------------------------
   Results Header
   ---------------------------------------- */

.saha-search-results__header {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--saha-color-border);
    margin-bottom: 40px;
}

.saha-search-results__term {
    font-family: var(--saha-font-primary);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--saha-color-text-primary);
    margin: 0 0 8px;
}

.saha-search-results__count {
    font-family: var(--saha-font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--saha-color-text-primary);
    margin: 0;
}

/* ----------------------------------------
   Group (category section)
   ---------------------------------------- */

.saha-search-results__group {
    margin-bottom: 40px;
}

.saha-search-results__group-header {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--saha-color-border);
    margin-bottom: 0;
}

.saha-search-results__group-label {
    font-family: var(--saha-font-primary);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #999;
    text-transform: uppercase;
}

/* ----------------------------------------
   Result Item
   ---------------------------------------- */

.saha-search-results__item {
    border-bottom: 1px solid var(--saha-color-border);
}

.saha-search-results__link {
    display: block;
    padding: 24px 0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.15s ease;
}

.saha-search-results__link:hover {
    opacity: 0.6;
}

.saha-search-results__title {
    display: block;
    font-family: var(--saha-font-primary);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--saha-color-text-primary);
}

.saha-search-results__subtitle {
    display: block;
    font-family: var(--saha-font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--saha-color-text-primary);
    margin-top: 4px;
}

/* ----------------------------------------
   Empty State
   ---------------------------------------- */

.saha-search-results__empty {
    padding: 60px 0;
    text-align: center;
}

.saha-search-results__empty p {
    font-family: var(--saha-font-primary);
    font-size: 18px;
    color: #999;
    margin: 0;
}

/* ----------------------------------------
   Responsive
   ---------------------------------------- */

@media (max-width: 640px) {
    .saha-page--arama {
        padding-top: 120px;
    }

    .saha-search-results__term {
        font-size: 22px;
    }

    .saha-search-results__link {
        padding: 18px 0;
    }
}
