/* ===== Blog Sayfası ===== */

.blog-page .page-column {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.blog-page .blog-item {
    position: relative;
    background-color: #fff;
    border-radius: 16px;
    padding: 0;
    margin-bottom: 0;
    flex: 0 0 calc(33.333% - 16px);
    min-width: 260px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-page .blog-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(168,21,112,0.13);
}

/* Görsel */
.blog-page .blog-item__image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.blog-page .blog-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.blog-page .blog-item:hover .blog-item__image img {
    transform: scale(1.04);
}
/* Görsel yoksa pembe arka plan */
.blog-page .blog-item .row {
    height: auto;
}

/* İçerik alanı */
.blog-page .blog-item .col-xs-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    padding: 20px 24px 24px;
    min-height: auto;
    height: auto;
}

.blog-page .blog-item__category {
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a81570;
    opacity: 1;
    font-weight: 600;
}

.blog-page .blog-item__title {
    margin: 0;
}

.blog-page .blog-title {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    transition: color 0.2s ease;
}
.blog-page .blog-title:hover {
    color: #a81570;
    text-decoration: none;
    opacity: 1;
}

.blog-page .blog-item__desc,
.blog-page .blog-item__date {
    display: none;
}

.blog-page .blog-item__readmore {
    float: none !important;
    margin-top: 4px;
}

.blog-page .blog-item__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border-radius: 20px;
    background: transparent;
    border: 1.5px solid #a81570;
    color: #a81570;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease;
    min-width: auto;
    min-height: auto;
}
.blog-page .blog-item__btn:hover {
    background: #a81570;
    color: #fff;
    text-decoration: none;
}
.blog-page .blog-item__btn:before,
.blog-page .blog-item__btn:after {
    display: none;
}

.blog-page .blog-item .desc img {
    max-width: 100%;
}

/* Görsel olmayan kartlar için minimal pembe */
.blog-page .blog-item:not(:has(.blog-item__image)) {
    background: linear-gradient(135deg, #a81570 0%, #7a0f52 100%);
}
.blog-page .blog-item:not(:has(.blog-item__image)) .blog-title,
.blog-page .blog-item:not(:has(.blog-item__image)) .blog-item__category {
    color: #fff;
}
.blog-page .blog-item:not(:has(.blog-item__image)) .blog-item__btn {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}
.blog-page .blog-item:not(:has(.blog-item__image)) .blog-item__btn:hover {
    background: #fff;
    color: #a81570;
    border-color: #fff;
}

/* Pagination */
.blog-page .blog-pagination {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
    margin-top: 24px;
}
.blog-page .blog-pagination .pull-left,
.blog-page .blog-pagination .pull-right {
    float: none !important;
    display: inline-block;
}

/* Blog intro */
.cakewich-blog-intro {
    margin: 40px 0 60px;
    padding: 0 15px;
    background-color: rgb(245, 245, 247);
}
.cakewich-blog-intro__inner {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}
.cakewich-blog-intro__subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #2D205A;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "DM Sans", sans-serif;
}
.cakewich-blog-intro__subtitle::before,
.cakewich-blog-intro__subtitle::after {
    content: "";
    width: 6px;
    height: 6px;
    border: 2px solid #a81570;
    border-radius: 50%;
}
.cakewich-blog-intro__title {
    margin-bottom: 16px;
    color: #a81570;
    font-size: 56px;
    line-height: 1.15;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
}
.cakewich-blog-intro__text {
    max-width: 535px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .blog-page .blog-item {
        flex: 0 0 calc(50% - 12px);
        min-width: auto;
    }
}
@media (max-width: 767px) {
    .blog-page .blog-item {
        flex: 0 0 100%;
        min-width: auto;
    }
    .cakewich-blog-intro { margin: 30px 0 40px; }
    .cakewich-blog-intro__title { font-size: 36px; }
    .cakewich-blog-intro__text { font-size: 15px; }
}