/**
 * Sarı Klemens — light portal UI (Webtekno / ShiftDelete tarzı grid & spacing).
 */

:root {
    --sk-bg: #ffffff;
    --sk-surface: #f8f9fa;
    --sk-text: #2d2d2d;
    --sk-text-muted: #5c5c5c;
    --sk-accent: #f9a825;
    --sk-accent-hover: #ffc107;
    --sk-border: #e8eaed;
    --sk-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    --sk-shadow-hover: 0 10px 28px rgba(0, 0, 0, 0.12);
    --sk-radius: 8px;
    --sk-radius-sm: 6px;
    --sk-header-h: 68px;
    --sk-max: 1224px;
    --sk-gap: 20px;
    --sk-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-padding-top: calc(var(--sk-header-h) + 12px);
}

body.sk-body {
    margin: 0;
    font-family: var(--sk-font);
    font-size: 16px;
    line-height: 1.55;
    color: var(--sk-text);
    background: var(--sk-bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.sk-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sk-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 99999;
    padding: 0.75rem 1rem;
    background: var(--sk-accent);
    color: #1a1a1a;
    font-weight: 700;
}

.sk-skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.sk-container {
    width: 100%;
    max-width: var(--sk-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
}

/* ——— Header ——— */
.sk-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--sk-border);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.2s ease;
}

.sk-header.is-scrolled {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.sk-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px 24px;
    min-height: var(--sk-header-h);
    padding-top: 10px;
    padding-bottom: 10px;
}

@media (min-width: 960px) {
    .sk-header__inner {
        grid-template-columns: auto minmax(280px, 1fr) auto;
        gap: 20px 32px;
    }
}

.sk-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.sk-logo__mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--sk-accent) 0%, #ffb300 100%);
    box-shadow: 0 2px 8px rgba(249, 168, 37, 0.45);
    flex-shrink: 0;
}

.sk-logo__text {
    font-size: 1.15rem;
    line-height: 1;
}

.sk-logo__sari {
    color: var(--sk-accent);
}

.sk-logo__klemens {
    color: var(--sk-text);
}

.sk-logo--footer .sk-logo__text {
    font-size: 1.25rem;
}

.sk-logo__mark--footer {
    width: 40px;
    height: 40px;
}

/* ——— Search ——— */
.sk-header__search {
    min-width: 0;
}

.sk-search {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    border: 2px solid var(--sk-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--sk-shadow);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sk-search:focus-within {
    border-color: var(--sk-accent);
    box-shadow: 0 0 0 3px rgba(249, 168, 37, 0.25);
}

.sk-search__icon {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 14px;
    color: var(--sk-text-muted);
}

@media (min-width: 640px) {
    .sk-search__icon {
        display: flex;
    }
}

.sk-search__input {
    flex: 1;
    min-width: 0;
    border: 0;
    padding: 14px 12px;
    font: inherit;
    font-size: 0.95rem;
    color: var(--sk-text);
    background: transparent;
}

.sk-search__input::placeholder {
    color: #888;
}

.sk-search__submit {
    border: 0;
    padding: 0 18px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    background: var(--sk-accent);
    color: #1a1a1a;
    transition: background 0.2s;
}

.sk-search__submit:hover {
    background: var(--sk-accent-hover);
}

.sk-header__search--404 .sk-search {
    max-width: 100%;
}

/* ——— Nav ——— */
.sk-nav {
    display: none;
}

@media (min-width: 960px) {
    .sk-nav {
        display: block;
    }
}

.sk-nav__list,
.sk-nav .menu {
    display: flex;
    align-items: center;
    gap: 4px 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sk-nav__item,
.sk-nav .menu-item {
    list-style: none;
}

.sk-nav__link,
.sk-nav .menu-item > a {
    display: block;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sk-text);
    border-radius: var(--sk-radius-sm);
    transition: color 0.2s, background 0.2s;
}

.sk-nav__link:hover,
.sk-nav__link:focus-visible,
.sk-nav .menu-item > a:hover,
.sk-nav .menu-item > a:focus-visible {
    color: #1a1a1a;
    background: rgba(249, 168, 37, 0.18);
}

.sk-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--sk-border);
    border-radius: var(--sk-radius-sm);
    background: #fff;
    cursor: pointer;
    padding: 0 10px;
}

@media (min-width: 960px) {
    .sk-nav-toggle {
        display: none;
    }
}

.sk-nav-toggle__bar {
    display: block;
    height: 2px;
    background: var(--sk-text);
    border-radius: 1px;
}

.sk-mobile-nav {
    border-top: 1px solid var(--sk-border);
    background: var(--sk-surface);
}

.sk-mobile-nav[hidden] {
    display: none !important;
}

.sk-mobile-nav__inner {
    padding: 12px 0 16px;
}

.sk-mobile-nav__list,
.sk-mobile-nav .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sk-mobile-nav .menu-item > a,
.sk-mobile-nav__list .sk-nav__link {
    padding: 12px 14px;
    border-radius: var(--sk-radius-sm);
}

/* ——— Main & hero ——— */
.sk-main {
    background: var(--sk-surface);
    padding-bottom: 48px;
}

.sk-hero {
    padding: 20px 0 8px;
}

@media (min-width: 960px) {
    .sk-hero {
        padding: 24px 0 12px;
    }
}

.sk-hero__grid {
    display: grid;
    gap: var(--sk-gap);
}

@media (min-width: 960px) {
    .sk-hero__grid {
        grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.95fr);
        align-items: stretch;
    }
}

.sk-hero__side {
    display: grid;
    gap: 12px;
}

@media (min-width: 640px) and (max-width: 959px) {
    .sk-hero__side {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 960px) {
    .sk-hero__side {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, minmax(0, 1fr));
    }
}

/* ——— Cards ——— */
.sk-card {
    background: #fff;
    border-radius: var(--sk-radius);
    box-shadow: var(--sk-shadow);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.sk-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sk-shadow-hover);
}

.sk-card--hero {
    position: relative;
    min-height: 280px;
}

@media (min-width: 960px) {
    .sk-card--hero {
        min-height: 420px;
    }
}

.sk-card__media-link {
    display: block;
    height: 100%;
    color: #fff;
}

.sk-card__media {
    position: absolute;
    inset: 0;
}

.sk-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sk-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 20px 22px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.78) 100%);
}

.sk-card__title {
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.sk-card__title--hero {
    font-size: clamp(1.25rem, 2.6vw, 1.75rem);
    line-height: 1.25;
    margin-top: 10px;
}

.sk-card__excerpt {
    margin: 10px 0 0;
    font-size: 0.95rem;
    opacity: 0.92;
    max-width: 52ch;
}

.sk-card--mini {
    box-shadow: var(--sk-shadow);
}

.sk-card--mini .sk-card__row {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    min-height: 100%;
}

@media (min-width: 960px) {
    .sk-card--mini .sk-card__row {
        grid-template-columns: 120px minmax(0, 1fr);
        padding: 10px 14px;
    }
}

.sk-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.sk-card__body {
    min-width: 0;
    padding: 4px 0;
}

.sk-card__title--mini {
    font-size: 0.9rem;
    line-height: 1.35;
    color: var(--sk-text);
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sk-card--mini:hover .sk-card__title--mini {
    color: #111;
}

.sk-pill {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 999px;
    background: rgba(249, 168, 37, 0.95);
    color: #1a1a1a;
}

.sk-pill--sm {
    font-size: 0.65rem;
    padding: 3px 8px;
}

.sk-card__overlay .sk-pill {
    align-self: flex-start;
}

/* ——— Section feed ——— */
.sk-section {
    padding: 20px 0 8px;
}

.sk-section__head {
    margin-bottom: 20px;
}

.sk-section__title {
    margin: 0 0 8px;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    padding-left: 14px;
    border-left: 4px solid var(--sk-accent);
    line-height: 1.2;
}

.sk-section__sub {
    margin: 0;
    padding-left: 18px;
    color: var(--sk-text-muted);
    font-size: 0.95rem;
}

.sk-feed {
    display: grid;
    gap: var(--sk-gap);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .sk-feed {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .sk-feed {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.sk-card--feed {
    overflow: hidden;
}

.sk-card__feed-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.sk-card__feed-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sk-card__feed-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.sk-card__title--feed {
    font-size: 1.05rem;
    line-height: 1.3;
}

.sk-card__excerpt--feed {
    margin: 0;
    font-size: 0.88rem;
    color: var(--sk-text-muted);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sk-btn-more {
    margin-top: 4px;
    font-size: 0.82rem;
    font-weight: 800;
    color: #1a1a1a;
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--sk-accent);
    transition: background 0.2s;
}

.sk-card__feed-link:hover .sk-btn-more {
    background: var(--sk-accent-hover);
}

/* ——— Aspect ratios ——— */
.sk-aspect {
    position: relative;
    overflow: hidden;
    background: #e0e0e0;
}

.sk-aspect--hero {
    aspect-ratio: 16 / 10;
}

@media (min-width: 960px) {
    .sk-card--hero .sk-aspect--hero {
        aspect-ratio: auto;
        height: 100%;
    }
}

.sk-aspect--mini {
    aspect-ratio: 16 / 10;
    height: 100%;
    max-height: 84px;
}

.sk-aspect--card {
    aspect-ratio: 16 / 9;
}

.sk-aspect--article {
    aspect-ratio: 21 / 9;
    border-radius: var(--sk-radius);
    margin-bottom: 24px;
}

.sk-aspect--article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ——— Page / article / pagination ——— */
.sk-page {
    padding: 28px 0 48px;
    background: var(--sk-surface);
    min-height: 40vh;
}

.sk-page__header {
    margin-bottom: 24px;
}

.sk-page__title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.sk-page__desc {
    margin: 10px 0 0;
    color: var(--sk-text-muted);
}

.sk-article {
    padding: 28px 0 56px;
    background: var(--sk-surface);
}

.sk-article__header {
    max-width: 820px;
    margin-bottom: 20px;
}

.sk-article__title {
    margin: 12px 0 0;
    font-size: clamp(1.6rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.sk-article__meta {
    margin: 12px 0 0;
    color: var(--sk-text-muted);
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
}

.sk-article__author a {
    font-weight: 700;
    color: var(--sk-text);
}

.sk-article__author a:hover {
    color: var(--sk-accent);
}

.sk-article__sep {
    color: #bbb;
    user-select: none;
}

.sk-article__time {
    font-weight: 500;
}

.sk-prose {
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.sk-prose > *:first-child {
    margin-top: 0;
}

.sk-prose p {
    margin: 0 0 1em;
}

.sk-pagination {
    margin-top: 32px;
}

.sk-pagination .nav-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.sk-pagination a,
.sk-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--sk-radius-sm);
    background: #fff;
    border: 1px solid var(--sk-border);
    font-weight: 600;
    box-shadow: var(--sk-shadow);
}

.sk-pagination a:hover {
    border-color: var(--sk-accent);
    background: rgba(249, 168, 37, 0.12);
}

.sk-pagination .current {
    background: var(--sk-accent);
    border-color: var(--sk-accent);
    color: #1a1a1a;
}

.sk-empty {
    text-align: center;
    padding: 48px 16px;
    color: var(--sk-text-muted);
    font-size: 1.05rem;
}

/* ——— Footer ——— */
.sk-footer {
    background: #fff;
    border-top: 1px solid var(--sk-border);
    padding-top: 36px;
}

.sk-footer__grid {
    display: grid;
    gap: 28px;
    padding-bottom: 28px;
}

@media (min-width: 720px) {
    .sk-footer__grid {
        grid-template-columns: 1.2fr 1fr;
        align-items: start;
    }
}

.sk-footer__tagline {
    margin: 14px 0 0;
    max-width: 42ch;
    color: var(--sk-text-muted);
    font-size: 0.92rem;
}

.sk-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sk-footer__list a {
    font-weight: 600;
    color: var(--sk-text);
}

.sk-footer__list a:hover {
    color: var(--sk-accent);
}

.sk-footer__bottom {
    border-top: 1px solid var(--sk-border);
    background: var(--sk-surface);
}

.sk-footer__bottom-inner {
    padding: 16px 0;
}

.sk-footer__copy {
    margin: 0;
    font-size: 0.85rem;
    color: var(--sk-text-muted);
    text-align: center;
}

@media (max-width: 959px) {
    .sk-header__inner {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
    }

    .sk-logo {
        grid-column: 1;
        grid-row: 1;
    }

    .sk-nav-toggle {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .sk-header__search {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .sk-search {
        max-width: none;
    }
}

.sk-card__img,
.sk-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ——— Son dakika bandı ——— */
.sk-ticker {
    background: #fff;
    border-top: 1px solid var(--sk-border);
    border-bottom: 1px solid var(--sk-border);
    padding: 10px 0;
}

.sk-ticker__head {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 720px) {
    .sk-ticker__head {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
}

.sk-ticker__badge {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #1a1a1a;
    background: var(--sk-accent);
    padding: 6px 12px;
    border-radius: 6px;
}

.sk-ticker__rail {
    display: flex;
    gap: 0 20px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.sk-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--sk-text);
    padding: 6px 0;
}

.sk-ticker__item:hover {
    color: #000;
}

.sk-ticker__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sk-accent);
    flex-shrink: 0;
}

.sk-ticker__text {
    max-width: 42ch;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ——— Üçlü promo ——— */
.sk-promo3 {
    display: grid;
    gap: 12px;
}

@media (min-width: 720px) {
    .sk-promo3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sk-promo3__box {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 18px 20px;
    border-radius: var(--sk-radius);
    background: #fff;
    box-shadow: var(--sk-shadow);
    border: 1px solid var(--sk-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sk-promo3__box:hover {
    transform: translateY(-2px);
    box-shadow: var(--sk-shadow-hover);
}

.sk-promo3__box strong {
    font-size: 1rem;
    font-weight: 800;
}

.sk-promo3__box span {
    font-size: 0.85rem;
    color: var(--sk-text-muted);
    line-height: 1.4;
}

.sk-section__head--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.sk-section__link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--sk-text);
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(249, 168, 37, 0.2);
}

.sk-section__link:hover {
    background: rgba(249, 168, 37, 0.35);
}

.sk-section__title--mb {
    margin-bottom: 16px;
}

.sk-feed--editor {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.sk-feed--tight {
    margin-top: 20px;
}

/* ——— İki kolon liste ——— */
.sk-split {
    display: grid;
    gap: 20px;
}

@media (min-width: 880px) {
    .sk-split {
        grid-template-columns: 1fr 1fr;
    }
}

.sk-split__col {
    background: #fff;
    border-radius: var(--sk-radius);
    box-shadow: var(--sk-shadow);
    padding: 18px 20px 16px;
    border: 1px solid var(--sk-border);
}

.sk-split__head {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 800;
    border-bottom: 2px solid var(--sk-accent);
    padding-bottom: 8px;
}

.sk-split__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sk-split__list a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sk-text);
    display: block;
    line-height: 1.35;
}

.sk-split__list a:hover {
    color: #000;
}

.sk-split__more {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.82rem;
    font-weight: 800;
    color: #1a1a1a;
}

/* ——— Yeni ürünler yatay şerit ——— */
.sk-prod-rail {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 0 8px;
    scrollbar-width: thin;
}

.sk-prod-rail__card {
    flex: 0 0 min(240px, 78vw);
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    border-radius: var(--sk-radius);
    box-shadow: var(--sk-shadow);
    border: 1px solid var(--sk-border);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sk-prod-rail__card:hover {
    transform: translateY(-2px);
    box-shadow: var(--sk-shadow-hover);
}

.sk-aspect--rail {
    aspect-ratio: 16 / 10;
    background: #eee;
}

.sk-prod-rail__media .sk-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sk-prod-rail__title {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--sk-text);
    padding: 0 12px 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ——— Dört kategori sütunu ——— */
.sk-quad {
    display: grid;
    gap: 16px;
}

@media (min-width: 720px) {
    .sk-quad {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sk-quad {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sk-quad__col {
    background: #fff;
    border-radius: var(--sk-radius);
    border: 1px solid var(--sk-border);
    box-shadow: var(--sk-shadow);
    padding: 14px 16px 12px;
}

.sk-quad__head {
    margin: 0 0 10px;
    font-size: 0.88rem;
    font-weight: 800;
}

.sk-quad__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sk-quad__list a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sk-text-muted);
    line-height: 1.35;
}

.sk-quad__list a:hover {
    color: var(--sk-text);
}

.sk-quad__more {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--sk-accent);
}

/* ——— Kompakt geniş ızgara ——— */
.sk-widegrid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .sk-widegrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .sk-widegrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .sk-widegrid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sk-widegrid__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    background: #fff;
    border-radius: var(--sk-radius);
    border: 1px solid var(--sk-border);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    min-height: 72px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sk-widegrid__item:hover {
    border-color: rgba(249, 168, 37, 0.55);
    box-shadow: var(--sk-shadow);
}

.sk-widegrid__cat {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--sk-accent);
}

.sk-widegrid__t {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--sk-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ——— Footer: özelleştirici (görsel logo) ——— */
.sk-footer__brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.sk-footer__brand-link:focus-visible {
    outline: 2px solid var(--sk-accent);
    outline-offset: 4px;
    border-radius: 4px;
}

.sk-footer__logo-img {
    max-height: 48px;
    width: auto;
    height: auto;
    display: block;
}

.sk-footer__brand--image .sk-footer__brand-link {
    gap: 0;
}

/* ——— Header: özelleştirici görsel logo ——— */
.sk-header__brand-image-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.sk-header__brand-image-link:focus-visible {
    outline: 2px solid var(--sk-accent);
    outline-offset: 4px;
    border-radius: 4px;
}

.sk-header__logo-img {
    max-height: 42px;
    width: auto;
    height: auto;
    display: block;
}

/* ——— Filtre çubuğu ——— */
.sk-filter-bar {
    padding: 18px 0 6px;
    border-bottom: 1px solid var(--sk-border);
    margin-bottom: 28px;
}

.sk-filter-bar__row {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.sk-filter-bar__row:last-of-type {
    margin-bottom: 0;
}

.sk-filter-bar__label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--sk-text-muted);
    white-space: nowrap;
    min-width: 96px;
    flex-shrink: 0;
    padding-top: 6px;
}

.sk-filter-bar__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    flex: 1;
}

.sk-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 13px;
    border-radius: 999px;
    border: 1.5px solid var(--sk-border);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sk-text);
    background: #fff;
    text-decoration: none;
    transition: border-color 0.18s, background 0.18s, color 0.18s;
    white-space: nowrap;
    cursor: pointer;
}

.sk-filter-pill:hover {
    border-color: var(--sk-accent);
    background: rgba(249, 168, 37, 0.07);
    color: #1a1a1a;
}

.sk-filter-pill.is-active {
    background: var(--sk-accent);
    border-color: var(--sk-accent);
    color: #1a1a1a;
    font-weight: 700;
}

.sk-filter-pill.is-active:hover {
    background: var(--sk-accent-hover);
    border-color: var(--sk-accent-hover);
}

.sk-filter-pill__count {
    font-size: 0.68rem;
    font-weight: 500;
    opacity: 0.55;
    margin-left: 1px;
}

.sk-filter-pill__remove {
    font-size: 0.68rem;
    opacity: 0.65;
    margin-left: 2px;
    line-height: 1;
}

.sk-filter-bar__clear-row {
    padding-top: 8px;
    display: flex;
    align-items: center;
}

.sk-filter-clear {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sk-text-muted);
    text-decoration: none;
    padding: 4px 10px;
    border-radius: var(--sk-radius-sm);
    transition: background 0.2s, color 0.2s;
}

.sk-filter-clear:hover {
    background: rgba(249, 168, 37, 0.1);
    color: var(--sk-text);
}

/* ——— Arşiv başlığı ——— */
.sk-archive-page {
    padding-bottom: 56px;
}

.sk-archive-head {
    padding: 28px 0 8px;
    border-bottom: 1px solid var(--sk-border);
    margin-bottom: 0;
}

.sk-archive-head__eyebrow {
    margin: 0 0 6px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sk-accent);
}

.sk-archive-head__title {
    margin: 0 0 8px;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.sk-archive-head__desc {
    margin: 0 0 6px;
    color: var(--sk-text-muted);
    font-size: 0.98rem;
    max-width: 62ch;
}

.sk-archive-count {
    margin: 4px 0 16px;
    font-size: 0.84rem;
    color: var(--sk-text-muted);
}

.sk-archive-count strong {
    color: var(--sk-text);
    font-weight: 700;
}

/* ——— Tür navigasyon pill satırı (icerik_turu arşivinde) ——— */
.sk-taxonomy-nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    padding: 12px 0 0;
}

.sk-taxonomy-nav__item {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: var(--sk-radius-sm);
    color: var(--sk-text-muted);
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.sk-taxonomy-nav__item:hover {
    color: #1a1a1a;
    background: rgba(249, 168, 37, 0.1);
}

.sk-taxonomy-nav__item.is-current {
    color: #1a1a1a;
    background: rgba(249, 168, 37, 0.15);
    border-color: var(--sk-accent);
    font-weight: 700;
}

/* ——— Sayfalama ——— */
.sk-pagination {
    margin-top: 40px;
    text-align: center;
}

.sk-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.sk-pagination .page-numbers a,
.sk-pagination .page-numbers span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: var(--sk-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sk-text);
    text-decoration: none;
    border: 1.5px solid var(--sk-border);
    background: #fff;
    transition: border-color 0.2s, background 0.2s;
}

.sk-pagination .page-numbers a:hover {
    border-color: var(--sk-accent);
    background: rgba(249, 168, 37, 0.07);
}

.sk-pagination .page-numbers .current {
    background: var(--sk-accent);
    border-color: var(--sk-accent);
    color: #1a1a1a;
}

.sk-pagination .page-numbers .dots {
    border-color: transparent;
    background: transparent;
    cursor: default;
}

@media (max-width: 640px) {
    .sk-filter-bar__label {
        min-width: 72px;
        font-size: 0.68rem;
    }
    .sk-filter-pill {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    .sk-archive-head__title {
        font-size: 1.5rem;
    }
}
