.news-card {
    background: #fff;
    border: 1px solid #e5eaf2;
    border-radius: 14px;
    padding: .85rem .85rem .75rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    box-shadow:
        0 1px 2px rgba(0,0,0,.03),
        0 4px 16px rgba(0, 56, 77, .05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.news-card:hover {
    border-color: #47A9D6;
    transform: translateY(-4px);
    box-shadow:
        0 1px 2px rgba(0,0,0,.03),
        0 12px 28px rgba(0, 56, 77, .1);
}

.news-link-cover {
    text-decoration: none;
    color: inherit;
}

.news-media {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    background: #00384d;
}

.news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.news-card:hover .news-media img {
    transform: scale(1.04);
}

.news-title {
    font-size: 1rem;
    font-weight: 700;
    color: #00384d;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-title a {
    color: inherit;
    text-decoration: none;
}

.news-title a:hover {
    color: #006f9e;
}

.news-summary {
    margin: 0;
    color: #64748b;
    font-size: .85rem;
    font-weight: 400;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.55em;
}

.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-top: auto;
    padding-top: .35rem;
    border-top: 1px solid #f1f5f9;
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 500;
    color: #64748b;
}

.news-date i {
    font-size: .75rem;
    color: #94a3b8;
}

.news-more {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    background: #00384d;
    color: #fff;
    border: none;
    transition: all .2s ease;
    text-decoration: none;
}

.news-more:hover {
    background: #005f73;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 56, 77, .25);
}

.news-more svg {
    width: 16px;
    height: 16px;
}

/* Sayfalama */
.pagination .page-link {
    color: #00384d;
    border-radius: 8px;
    margin: 0 3px;
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5eaf2;
    background: #fff;
    font-size: .85rem;
    font-weight: 600;
    transition: all .2s ease;
}

.pagination .page-link:hover {
    background: #eef8fb;
    border-color: #47A9D6;
    color: #00384d;
}

.pagination .page-item.active .page-link {
    background: #00384d;
    border-color: #00384d;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 56, 77, .25);
}

.pagination .page-item.disabled .page-link {
    background-color: #f8fafc;
    color: #94a3b8;
    border-color: #e5eaf2;
}

.news-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: .75rem;
}

.news-empty__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #f1f5f9;
    display: grid;
    place-items: center;
    color: #94a3b8;
    font-size: 1.5rem;
}

.news-empty__text {
    color: #94a3b8;
    font-size: .9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .news-card {
        border-radius: 12px;
    }

    .news-title {
        font-size: .95rem;
    }
}
