.contents-page .news-head {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.contents-page .news-head .q {
    flex: 1;
    min-width: 220px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 14px;
    font: inherit;
    transition: border-color .3s ease, box-shadow .3s ease
}

.contents-page .news-head .q:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(7, 91, 94, 0.1)
}

.contents-page .news-head .btn {
    height: 42px;
    border-radius: 12px
}

.contents-page .newsnav {
    display: flex;
    gap: 12px;
    margin: 28px 0 32px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    position: relative;
    z-index: 1;
}

.contents-page .newsnav::-webkit-scrollbar {
    display: none;
}

/* Mobile dropdown - hidden on desktop */
.contents-page .newsnav-mobile {
    display: none;
    margin: 20px 0;
}

.contents-page .newsnav-mobile .category-select {
    width: 100%;
    height: 48px;
    padding: 0 40px 0 16px;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230b2e5c' d='M2 4l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 16px center;
    color: #0b2e5c;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contents-page .newsnav-mobile .category-select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(7, 91, 94, 0.1);
}

/* Desktop tabs - hidden on mobile */
@media (max-width: 768px) {
    .contents-page .newsnav-desktop {
        display: none !important;
    }

    .contents-page .newsnav-mobile {
        display: block;
    }
}

.contents-page .newsnav [role="tab"] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid #e1e8ed;
    border-radius: 999px;
    background: #fff;
    color: #0b2e5c;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all .25s ease;
}

.contents-page .newsnav [role="tab"]:hover:not([aria-selected="true"]) {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.contents-page .newsnav [role="tab"][aria-selected="true"] {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
    box-shadow: 0 4px 12px rgba(7, 91, 94, 0.2);
}

.contents-page .newsnav .cnt {
    font-size: .85rem;
    opacity: .8
}

.contents-page .kfeed {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px
}

@media (max-width: 1280px) {
    .contents-page .kfeed {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 720px) {
    .contents-page .kfeed {
        grid-template-columns: 1fr
    }
}

.contents-page .card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease
}

.contents-page .card>a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit
}

.contents-page .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
    z-index: 10;
}

.contents-page .card .cov {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f1f5f9;
    overflow: hidden;
    position: relative;
}

.contents-page .card .cov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.contents-page .card .cov .no-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #075B5E 0%, #0a8a8d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.contents-page .card .cov .no-img-placeholder::before {
    content: "";
    position: absolute;
    width: 60%;
    height: 60%;
    background: url('../../images/logo.png') no-repeat center center;
    background-size: contain;
    opacity: 0.12;
    filter: brightness(0) invert(1);
}

.contents-page .card .cov .placeholder-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contents-page .card .bd {
    padding: 18px 18px 12px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contents-page .card .kind {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    margin-bottom: 12px;
    align-self: flex-start;
}

.contents-page .kind[data-k="haber"] {
    border-color: #0ea5b7;
    color: #075B5E
}

.contents-page .kind[data-k="aciklama"] {
    border-color: #d2a760;
    color: #7a5b1a
}

.contents-page .kind[data-k="duyuru"] {
    border-color: #93c5fd;
    color: #1e3a8a
}

.contents-page .card .ttl {
    font-weight: 800;
    color: #0b2e5c;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    line-height: 1.4;
}

.contents-page .card .ex {
    color: #475569;
    font-size: .92rem;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.2em;
    line-height: 1.4;
}

.contents-page .card .meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: .9rem
}

.contents-page .card .meta .dot:before {
    content: "·";
    margin: 0 6px;
    color: #cbd5e1
}

.contents-page .card .ft {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: auto;
    padding: 0 18px 18px 18px;
}

.contents-page .card .btn {
    height: 36px
}

.contents-page .inforow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 16px;
    color: #475569
}

.contents-page .inforow .count strong {
    color: #0b2e5c
}

.contents-page .inforow .page-info {
    font-size: 0.9rem;
    color: #64748b;
}