/* =====================================================
   İç Sayfalar Ortak Stilleri – inner-pages.css
   Blog Detay + İç Sayfa Detay
   style.css token'larını kullanır
   ===================================================== */

/* ═══════════════════════════════════════════
   PAGE HERO
   Blog: lacivert bg, breadcrumb > > , kategori badge + H1
   İç sayfa: lacivert bg, breadcrumb / / , sadece H1
═══════════════════════════════════════════ */
.ip-hero {
    background: var(--navy);
    padding: 28px 0 36px;
}

/* Breadcrumb */
.ip-breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

.ip-breadcrumb__link {
    font-size: .8rem;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color var(--t);
}

    .ip-breadcrumb__link:hover,
    .ip-breadcrumb__link:focus-visible {
        color: rgba(255,255,255,.95);
        text-decoration: underline;
    }

.ip-breadcrumb__sep {
    font-size: .65rem;
    color: rgba(255,255,255,.3);
    margin: 0 3px;
    display: flex;
    align-items: center;
}

.ip-breadcrumb__list li:last-child span {
    font-size: .8rem;
    color: rgba(255,255,255,.45);
}

/* Kategori badge (blog'da var, iç sayfada yok) */
.ip-cat {
    display: inline-block;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--gold);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
}

/* H1 */
.ip-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 0;
    max-width: 860px;
}

/* İç sayfa H1 — biraz daha büyük ve farklı weight */
.ip-title--page {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
}

/* ═══════════════════════════════════════════
   LAYOUT
   Blog: tek sütun, max-width 780px ortalı
   İç sayfa: tek sütun, max-width 860px ortalı
═══════════════════════════════════════════ */
.ip-single {
    max-width: 1200px;
    padding: 40px 0 60px;
}

.ip-page {
    max-width: 1200px;
    padding: 48px 0 60px;
}

.ip-page-detail {
    padding: 48px 0 60px;
}

/* ═══════════════════════════════════════════
   META BAR (yalnızca blog'da)
═══════════════════════════════════════════ */
.ip-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.ip-meta__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.ip-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    color: var(--text-muted);
    font-style: normal;
}

    .ip-meta__item .bi {
        font-size: .8rem;
        color: #9ca3af;
    }

.ip-meta__tools {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ip-tool-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: .82rem;
    font-weight: 700;
    font-family: var(--font);
    color: var(--text-muted);
    background: #f3f4f6;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: background var(--t), color var(--t), border-color var(--t);
}

    .ip-tool-btn:hover,
    .ip-tool-btn:focus-visible {
        background: var(--navy);
        color: #fff;
        border-color: var(--navy);
    }

/* ═══════════════════════════════════════════
   ORTAK İÇERİK TİPOGRAFİSİ
═══════════════════════════════════════════ */
.ip-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
}

    .ip-content p {
        margin-bottom: 1.25rem;
    }

    .ip-content h2 {
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--navy);
        margin: 2rem 0 1rem;
        line-height: 1.3;
    }

    .ip-content h3 {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--navy);
        margin: 1.5rem 0 .75rem;
    }

    .ip-content a:hover {
        color: var(--gold-dark);
    }

    .ip-content ul, .ip-content ol {
        padding-left: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .ip-content li {
        margin-bottom: .4rem;
    }

/* Öne çıkan alıntı */
.ip-quote {
    border-left: 4px solid var(--gold);
    background: #fafafa;
    margin: 0 0 1.75rem;
    padding: 18px 22px;
    border-radius: 0 8px 8px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.65;
    font-style: normal;
}

/* Görsel */
.ip-figure {
    margin: 2rem 0;
}

.ip-figure__img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
}
/* İç sayfada görsel tam genişlikte değil, doğal boyutunda */
.ip-figure__img--contained {
    width: auto;
    max-width: 100%;
    border-radius: var(--radius);
}

.ip-figure__caption {
    font-size: .8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

/* Font size modifiers */
.ip-content[data-size="sm"] {
    font-size: .9rem;
}

.ip-content[data-size="lg"] {
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════
   SOSYAL MEDYA PAYLAŞIM (blog'da var)
═══════════════════════════════════════════ */
.ip-share {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 32px 0 40px;
    flex-wrap: wrap;
}

.ip-share__label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 4px;
}

.ip-share__btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    color: #fff;
    transition: opacity var(--t), transform var(--t);
}

    .ip-share__btn:hover,
    .ip-share__btn:focus-visible {
        opacity: .85;
        transform: translateY(-2px);
    }

.ip-share__btn--twitter {
    background: #000;
}

.ip-share__btn--facebook {
    background: #1877f2;
}

.ip-share__btn--linkedin {
    background: #0a66c2;
}

.ip-share__btn--whatsapp {
    background: #25d366;
}

.ip-share__btn--copy {
    background: #6b7280;
}

/* ═══════════════════════════════════════════
   İLGİNİZİ ÇEKEBİLİR (blog'da var)
═══════════════════════════════════════════ */
.ip-related__title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 10px;
}

    .ip-related__title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 36px;
        height: 3px;
        background: var(--gold);
        border-radius: 2px;
    }

.ip-related__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ip-related__card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--t), transform var(--t);
}

    .ip-related__card:hover,
    .ip-related__card:focus-visible {
        box-shadow: 0 4px 16px rgba(26,39,68,.1);
        transform: translateY(-2px);
    }

.ip-related__img-wrap {
    overflow: hidden;
}

.ip-related__img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.ip-related__card:hover .ip-related__img {
    transform: scale(1.04);
}

.ip-related__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ip-related__date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    color: var(--text-muted);
    font-style: normal;
}

    .ip-related__date .bi {
        font-size: .75rem;
        color: #9ca3af;
    }

.ip-related__card-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin: 0;
}

/* ═══════════════════════════════════════════
   SAYFA FOOTER — Eklenme tarihi (iç sayfada)
═══════════════════════════════════════════ */
.ip-page-footer {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
}

.ip-page-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--text-muted);
    margin: 0;
}

    .ip-page-meta dt {
        font-weight: 600;
        color: #4b5563;
    }

    .ip-page-meta dd {
        margin: 0;
    }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 767px) {
    .ip-related__grid {
        grid-template-columns: 1fr;
    }

    .ip-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .ip-share {
        gap: 6px;
    }

    .ip-single, .ip-page {
        padding-top: 28px;
    }
}

@media (max-width: 575px) {
    .ip-hero {
        padding: 20px 0 28px;
    }

    .ip-title {
        font-size: 1.45rem;
    }

    .ip-title--page {
        font-size: 1.6rem;
    }
}

/* ═══════════════════════════════════════════
   PRINT
═══════════════════════════════════════════ */
@media print {
    .ip-hero {
        background: #fff !important;
    }

    .ip-title, .ip-cat {
        color: #000 !important;
    }

    .ip-share, .ip-related, .ip-meta__tools {
        display: none !important;
    }

    .ip-content {
        font-size: 11pt;
        line-height: 1.6;
    }

    .ip-quote {
        border-left: 3px solid #999;
        background: #f9f9f9;
    }
}

/* ═══════════════════════════════════════════
   ÖNE ÇIKAN BLOG
═══════════════════════════════════════════ */
.ba-featured {
    background: #fff;
    padding: 48px 0 0;
}

.ba-featured__card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--t);
}

    .ba-featured__card:hover {
        box-shadow: 0 6px 28px rgba(26,39,68,.12);
    }

.ba-featured__link {
    display: flex;
    text-decoration: none;
    color: inherit;
    align-items: stretch;
}

.ba-featured__img-wrap {
    flex-shrink: 0;
    width: 42%;
    overflow: hidden;
}

.ba-featured__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.ba-featured__card:hover .ba-featured__img {
    transform: scale(1.04);
}

.ba-featured__body {
    flex: 1;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.ba-feat-cat {
    display: inline-block;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--gold);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    align-self: flex-start;
}

.ba-featured__title {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin: 0;
}

.ba-featured__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--text-muted);
    font-style: normal;
}

    .ba-featured__date .bi {
        color: #9ca3af;
    }

.ba-featured__excerpt {
    font-size: .9rem;
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ba-featured__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 4px;
    transition: gap var(--t), color var(--t);
}

.ba-featured__card:hover .ba-featured__cta {
    gap: 10px;
    color: var(--gold-dark);
}

/* ═══════════════════════════════════════════
   FİLTRE — Kategori + Arama
═══════════════════════════════════════════ */
.ba-filter {
    background: #fff;
    padding: 36px 0 32px;
}

/* Kategori butonları */
.ba-cats__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.ba-cat {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    background: var(--navy);
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background var(--t), transform var(--t);
    white-space: nowrap;
}

    .ba-cat:hover,
    .ba-cat:focus-visible {
        background: var(--navy-dark);
        color: #fff;
        transform: translateY(-1px);
    }

.ba-cat--active {
    background: var(--gold);
    color: #fff;
}

    .ba-cat--active:hover,
    .ba-cat--active:focus-visible {
        background: var(--gold-dark);
    }

/* Arama + Arşiv toolbar */
.ba-toolbar {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ba-search-form {
    flex: 1;
}

.ba-search-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: border-color var(--t), box-shadow var(--t);
}

    .ba-search-wrap:focus-within {
        border-color: var(--navy);
        box-shadow: 0 0 0 3px rgba(26,39,68,.08);
    }

.ba-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: .9rem;
    font-family: var(--font);
    color: var(--text);
    background: transparent;
}

    .ba-search-input::placeholder {
        color: #9ca3af;
    }

.ba-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: color var(--t);
    flex-shrink: 0;
}

    .ba-search-btn:hover,
    .ba-search-btn:focus-visible {
        color: var(--navy);
    }

.ba-archive-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--gold);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--t);
}

    .ba-archive-btn:hover,
    .ba-archive-btn:focus-visible {
        background: var(--gold-dark);
        color: #fff;
    }

/* ═══════════════════════════════════════════
   BLOG KART LİSTESİ — 3 sütun
═══════════════════════════════════════════ */
.ba-grid-section {
    background: #fff;
    padding: 48px 0 56px;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.ba-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    transition: box-shadow var(--t), transform var(--t);
}

    .ba-card:hover {
        box-shadow: 0 6px 24px rgba(26,39,68,.1);
        transform: translateY(-3px);
    }

.ba-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.ba-card__img-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.ba-card__img {
    width: 100%;
    aspect-ratio: 768/432;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.ba-card:hover .ba-card__img {
    transform: scale(1.04);
}

/* Kategori etiketi — görsel üzerinde */
.ba-card__cat {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-block;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--navy);
    color: #fff;
    padding: 3px 9px;
    border-radius: 4px;
}

.ba-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.ba-card__title {
    font-size: .975rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin: 0;
    /* Tek satır truncate */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ba-card__excerpt {
    font-size: .83rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    /* 3 satır truncate */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.ba-card__date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    color: var(--text-muted);
    font-style: normal;
    margin-top: auto;
    padding-top: 4px;
    border-top: 1px solid #f3f4f6;
}

    .ba-card__date .bi {
        color: #9ca3af;
        font-size: .75rem;
    }

/* ═══════════════════════════════════════════
   SAYFALAMA
═══════════════════════════════════════════ */
.ba-pagination {
    display: flex;
    justify-content: center;
}

.ba-pagination__list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ba-pagination__page,
.ba-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-muted);
    border: 1px solid var(--border);
    background: #fff;
    transition: all var(--t);
}

    .ba-pagination__page:hover,
    .ba-pagination__page:focus-visible,
    .ba-pagination__btn:hover,
    .ba-pagination__btn:focus-visible {
        background: var(--navy);
        border-color: var(--navy);
        color: #fff;
    }

.ba-pagination__page--active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.ba-pagination__btn[aria-disabled="true"] {
    opacity: .4;
    cursor: default;
    pointer-events: none;
}

.ba-pagination__ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1199px) {
    .ba-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .ba-archive__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .ba-featured__link {
        flex-direction: column;
    }

    .ba-featured__img-wrap {
        width: 100%;
        max-height: 280px;
    }

    .ba-featured__body {
        padding: 24px;
    }

    .ba-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ba-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .ba-archive-btn {
        justify-content: center;
    }

    .ba-cats__list {
        gap: 6px;
    }

    .ba-cat {
        padding: 7px 14px;
        font-size: .78rem;
    }
}

@media (max-width: 639px) {
    .ba-grid {
        grid-template-columns: 1fr;
    }

    .ba-archive__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ba-hero__title {
        font-size: 1.6rem;
        text-align: left;
    }
}

@media (max-width: 479px) {
    .ba-archive__grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   PRINT
═══════════════════════════════════════════ */
@media print {
    .ba-hero {
        background: #fff !important;
    }

    .ba-hero__title {
        color: #000 !important;
    }

    .ba-filter, .ba-pagination, .ba-archive {
        display: none !important;
    }

    .ba-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ba-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ═══════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .ba-featured__img,
    .ba-card__img {
        transition: none;
    }
}

/* ═══════════════════════════════════════════
   TABLO
   style.css token'larını kullanır | Bootstrap 5
═══════════════════════════════════════════ */

.kt-wrap {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ─── Thead ─────────────────────────────── */
.kt-table thead tr {
    background: var(--navy);
}

.kt-table thead th {
    padding: 14px 18px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    border: none;
    white-space: nowrap;
}

    .kt-table thead th.kt-th--pdf {
        color: var(--gold);
        text-align: center;
    }

/* ─── Tbody ─────────────────────────────── */
.kt-table tbody tr {
    border-bottom: 1px solid var(--border);
    background: #fff;
    transition: background var(--t);
}

    .kt-table tbody tr:last-child {
        border-bottom: none;
    }

    .kt-table tbody tr:hover {
        background: #f5f7ff;
    }

.kt-table tbody td {
    padding: 16px 18px;
    font-size: .875rem;
    color: var(--text);
    vertical-align: top;
    line-height: 1.6;
    border: none;
}

.kt-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 5px 12px;
    background: #eef0f5;
    color: var(--navy);
    font-size: .78rem;
    font-weight: 700;
    border-radius: 6px;
    white-space: nowrap;
}

.kt-no {
    font-size: .85rem;
    font-weight: 700;
    color: var(--navy-mid);
}

.kt-date {
    font-size: .82rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.kt-ozet {
    max-width: 480px;
}

/* ─── PDF Linki ─────────────────────────── */
.kt-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--gold);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--t);
}

    .kt-pdf-link:hover,
    .kt-pdf-link:focus-visible {
        background: var(--navy);
        color: #fff;
    }

/* ─── Sütun genişlikleri ────────────────── */
.kt-col-toplanti {
    width: 130px;
}

.kt-col-no {
    width: 90px;
}

.kt-col-tarih {
    width: 120px;
}

.kt-col-pdf {
    width: 140px;
    text-align: center;
}

/* ─── Responsive ────────────────────────── */
@media (max-width: 767px) {
    .kt-ozet {
        max-width: 100%;
    }

    .kt-table thead th,
    .kt-table tbody td {
        padding: 12px 14px;
    }
}

@media (max-width: 575px) {
    .kt-col-toplanti,
    .kt-col-no,
    .kt-col-tarih {
        width: auto;
    }
}
