/* =============================================================
   KATYLA — Story List Page
   ============================================================= */

.kt-story-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 80px;
}

/* ---- Page header ---- */
.kt-story-header {
    margin: 35px 0;
}
.kt-story-header__title {
       font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin: 0 0 15px;
    font-family: 'Playfair Display', serif;
    color: #a55e3f;
   
}
.kt-story-header__desc {
    font-size: 16px;
    color: #888;
    margin: 0;
}

/* ---- Grid ---- */
.kt-story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 28px;
}
/* ---- Pagination ---- */
.kt-story-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.kt-story-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}
.kt-story-pagination .page-numbers:hover,
.kt-story-pagination .page-numbers.current {
    background: #b07d5a;
    border-color: #b07d5a;
    color: #fff;
}
.kt-story-pagination .page-numbers.dots {
    border: none;
    background: transparent;
}

/* ---- Empty ---- */
.kt-story-empty {
    text-align: center;
    color: #999;
    padding: 60px 0;
    font-size: 15px;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
	.kt-story-page {
    padding: 0 15px 80px;
}
    .kt-story-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .kt-story-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
	   .kt-story-grid .story-card {
             padding-bottom: 25px;
        border-bottom: 1px solid #e8e0d8;
    }
		   .kt-story-grid .story-card:last-child {
        border-bottom: none;
    }
}
