/* =========================================================================
   HOME BLOG / TRAVEL GUIDE COMPONENT
   Architecture: Scoped BEM Grid & Equal Height Flex Engine
   Target: assets/css/components/home-blog.css
   ========================================================================= */

.home-blog-section {
    background-color: #f8fafc;
    padding: 50px 0 55px 0;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.home-blog-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* BAŞLIK */
.home-blog-header {
    text-align: center;
    margin-bottom: 30px;
}

.home-blog-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--fogya-orange, #f16b4e);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.home-blog-title {
    font-size: 25px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.4px;
}

.home-blog-divider {
    width: 42px;
    height: 3px;
    background-color: var(--fogya-orange, #f16b4e);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

/* SWIPER CORE KAPSAYICI */
.umitBlogSwiper {
    width: 100%;
    overflow: hidden;
    padding: 6px 0 24px 0;
    position: relative;
}

.umitBlogSwiper .swiper-wrapper {
    box-sizing: border-box;
}

.umitBlogSwiper .swiper-slide {
    height: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    box-sizing: border-box !important;
    display: flex !important;
}

/* KART DÜZENİ */
.blog-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px -8px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
}

/* KART GÖRSELİ */
.blog-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #0f172a;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.05);
}

/* KART İÇERİK */
.blog-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.blog-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.blog-card-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--fogya-orange, #f16b4e);
}

.blog-card-excerpt {
    font-size: 13.5px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 16px 0;
    flex-grow: 1;
}

/* KART FOOTER & CTA */
.blog-card-footer {
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--fogya-orange, #f16b4e);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.blog-read-more:hover {
    gap: 8px;
}

.blog-read-more .dashicons {
    font-size: 15px;
    width: 15px;
    height: 15px;
}

/* SAYFALAMA */
.blog-pagination {
    position: relative !important;
    margin-top: 16px !important;
    bottom: 0 !important;
    text-align: center;
}

.blog-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background-color: #cbd5e1;
    opacity: 1;
    transition: all 0.25s ease;
}

.blog-pagination .swiper-pagination-bullet-active {
    background-color: var(--fogya-orange, #f16b4e);
    width: 20px;
    border-radius: 4px;
}