/* ========================================================= */
/* === SABİT SON YAZILAR BÖLÜMÜ ============================ */
/* ========================================================= */

.activity-card.big-card {
    width: 100%;
    max-width: 593px;
    height: 556px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.09);
    border: 1px solid #eee;
    background: #fff;
}

.activity-img {
    width: 100%;
    height: 334px;
}
.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-content {
    padding: 18px 22px;
    height: 222px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.activity-content h3 {
    font-size: 18px;
    font-weight: 600;
}

.activity-content p {
    font-size: 14px;
    color: #555;
    overflow: hidden;
}

.activity-btn {
    text-decoration: underline;
    color: #000;
}

/* ========================================================= */
/* === SAĞDAKİ KÜÇÜK KARTLAR =============================== */
/* ========================================================= */

.blog-card.small-card {
    height: 260px;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.09);
    border: 1px solid #eee;
    background: #fff;
}

.blog-card.small-card img {
    width: 40%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btn-read {
    text-decoration: underline;
    color: #000;
}

/* ========================================================= */
/* === TÜM YAZILAR — GRID KARTLAR (2 SÜTUN) =============== */
/* ========================================================= */

.grid-blog-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.09);
    border: 1px solid #eee;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .18s ease, box-shadow .18s ease;
}

.grid-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.14);
}

/* Görsel */
.grid-blog-img {
    width: 100%;
    height: 230px;
}
.grid-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* İçerik */
.grid-blog-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.grid-blog-body h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.grid-blog-body p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    max-height: 56px;
    overflow: hidden;
}

.grid-read-btn {
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid #111;
    font-size: 13px;
    color: #111;
    text-decoration: none;
    align-self: flex-start;
}

.grid-read-btn:hover {
    background: #111;
    color: #fff;
}

/* ========================================================= */
/* === P A G I N A T I O N ================================ */
/* ========================================================= */

.pagination-container {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
}

/* Önceki / Sonraki */
.pagination-prev,
.pagination-next {
    color: #7c8595;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pagination-prev.disabled,
.pagination-next.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Sayfa numaraları */
#pageNumbers {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.page-number {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    font-size: 14px;
    background: #fff;
    transition: 0.2s;
}

.page-number:hover {
    border-color: #aaa;
}

.page-number.active {
    background: #b30000;
    color: #fff;
    border-color: #b30000;
}

.pagination-dots {
    font-size: 16px;
    color: #666;
}

/* ========================================================= */
/* === RESPONSIVE ========================================= */
/* ========================================================= */

@media(max-width: 992px){
    .activity-card.big-card {
        max-width: 100%;
    }
}

@media(max-width: 768px){
    .blog-card.small-card {
        height: auto;
        flex-direction: column;
    }

    .blog-card.small-card img {
        width: 100%;
        height: 180px;
    }
}

/* ======= Breadcrumb (Güçlü Versiyon — Asla bozulmaz) ======= */
.cj-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cj-breadcrumb a {
    color: #777 !important;
    text-decoration: none !important;
    font-weight: 500;
}

.cj-breadcrumb a:hover {
    color: #b30000 !important;
    text-decoration: underline !important;
}

.cj-breadcrumb span {
    color: #aaa;
}

.cj-breadcrumb .current {
    color: #222 !important;
    font-weight: 600;
}
