/* ═══════════════════════════════════════
   AŞK-I TURKUAZ — BLOG SAYFALARI
   Liste + Detay için ortak stiller
   ═══════════════════════════════════════ */

/* ── Breadcrumb ── */
.blog-breadcrumb {
    padding: 1.25rem 0 .5rem;
}

.blog-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--text-4);
}

.blog-breadcrumb a {
    color: var(--text-3);
    transition: color .2s;
}

.blog-breadcrumb a:hover {
    color: var(--teal);
}

.blog-breadcrumb .fa-chevron-right {
    font-size: .6rem;
    color: var(--text-5, #ccc);
}

.blog-breadcrumb .current {
    color: var(--text);
    font-weight: 500;
}

/* ── Page Header ── */
.blog-page-header {
    padding: 2rem 0 2.5rem;
    border-bottom: 1px solid var(--surface-2);
    margin-bottom: 2.5rem;
}

.blog-page-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--teal);
    margin-bottom: .75rem;
}

.blog-page-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}

.blog-page-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    margin: 0 0 .5rem;
}

.blog-page-desc {
    font-size: 1rem;
    color: var(--text-3);
    line-height: 1.65;
    max-width: 720px;
}

/* ── Layout Grid (content + sidebar) ── */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
    padding-bottom: 4rem;
}

/* ══ LİSTE ══ */
.blog-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--surface-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-0, #fff);
    transition: box-shadow .3s, border-color .3s, transform .3s;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
    border-color: var(--teal-soft, #b8e0d9);
    transform: translateY(-3px);
}

.blog-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    background: var(--surface-1, #f5f5f5);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

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

.blog-card-cat {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: rgba(255, 255, 255, .95);
    color: var(--teal);
    font-size: .7rem;
    font-weight: 600;
    padding: .3rem .7rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .03em;
    backdrop-filter: blur(4px);
}

.blog-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .75rem;
    color: var(--text-4);
}

.blog-card-meta i {
    margin-right: .3rem;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    font-size: .85rem;
    color: var(--text-3);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-card-read {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--teal);
    font-size: .82rem;
    font-weight: 600;
    margin-top: auto;
}

.blog-card-read i {
    transition: transform .25s;
}

.blog-card:hover .blog-card-read i {
    transform: translateX(4px);
}

/* ══ EMPTY STATE ══ */
.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    border: 2px dashed var(--surface-2);
    border-radius: var(--radius-lg);
    color: var(--text-4);
}

.blog-empty i {
    font-size: 2.5rem;
    color: var(--text-5, #ccc);
    margin-bottom: 1rem;
}

.blog-empty p {
    font-size: .95rem;
}

/* ══ PAGINATION ══ */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .35rem;
    margin-top: 2.5rem;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 .75rem;
    border-radius: var(--radius-sm, 6px);
    border: 1px solid var(--surface-2);
    color: var(--text-3);
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
}

.blog-pagination a:hover {
    background: var(--teal-wash);
    color: var(--teal);
    border-color: var(--teal-soft);
}

.blog-pagination .current {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

.blog-pagination .disabled {
    opacity: .4;
    pointer-events: none;
}

/* ══ SIDEBAR ══ */
.blog-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-sb-card {
    border: 1px solid var(--surface-2);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    background: var(--surface-0, #fff);
}

.blog-sb-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 1rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--teal-wash);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.blog-sb-title i {
    color: var(--teal);
    font-size: .9rem;
}

.blog-sb-cats {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.blog-sb-cat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .6rem .85rem;
    border-radius: var(--radius-sm, 6px);
    font-size: .85rem;
    color: var(--text-3);
    text-decoration: none;
    transition: all .2s;
    border: 1px solid transparent;
}

.blog-sb-cat:hover {
    background: var(--teal-wash);
    color: var(--teal);
}

.blog-sb-cat.active {
    background: var(--teal);
    color: #fff;
    font-weight: 600;
}

.blog-sb-cat em {
    font-style: normal;
    background: rgba(0, 0, 0, .05);
    padding: .1rem .5rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 600;
}

.blog-sb-cat.active em {
    background: rgba(255, 255, 255, .25);
}

.blog-sb-recent {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.blog-sb-recent-item {
    display: flex;
    gap: .75rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform .2s;
}

.blog-sb-recent-item:hover {
    transform: translateX(3px);
}

.blog-sb-recent-thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm, 6px);
    overflow: hidden;
    background: var(--surface-1);
}

.blog-sb-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-sb-recent-body {
    flex: 1;
    min-width: 0;
}

.blog-sb-recent-title {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 .25rem;
}

.blog-sb-recent-date {
    font-size: .72rem;
    color: var(--text-4);
}

/* ═══════════════════════════════════════
   BLOG DETAY
   ═══════════════════════════════════════ */

.blog-detail-hero {
    padding: 2rem 0 2.5rem;
    border-bottom: 1px solid var(--surface-2);
    margin-bottom: 2.5rem;
}

.blog-detail-cat {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--teal-wash);
    color: var(--teal);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .35rem .8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    text-decoration: none;
}

.blog-detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    margin: 0 0 1rem;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: .85rem;
    color: var(--text-4);
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.blog-detail-meta i {
    color: var(--teal);
}

.blog-detail-cover {
    aspect-ratio: 16/9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 2.5rem;
    background: var(--surface-1);
}

.blog-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-content {
    font-size: 1.02rem;
    color: var(--text-2, var(--text));
    line-height: 1.85;
}

.blog-detail-content p {
    margin: 0 0 1.25rem;
}

.blog-detail-content h2,
.blog-detail-content h3 {
    font-family: var(--font-display);
    color: var(--text);
    margin: 2rem 0 1rem;
    line-height: 1.25;
}

.blog-detail-content h2 {
    font-size: 1.5rem;
}

.blog-detail-content h3 {
    font-size: 1.2rem;
}

.blog-detail-content img {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--teal);
    background: var(--teal-wash);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-2);
}

.blog-detail-content ul,
.blog-detail-content ol {
    padding-left: 1.5rem;
    margin: 0 0 1.25rem;
}

.blog-detail-content li {
    margin-bottom: .4rem;
}

.blog-detail-content a {
    color: var(--teal);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* Tags */
.blog-detail-tags {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--surface-2);
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
}

.blog-detail-tags-label {
    font-size: .8rem;
    color: var(--text-4);
    font-weight: 600;
    margin-right: .5rem;
}

.blog-detail-tag {
    background: var(--surface-1, #f5f5f5);
    color: var(--text-3);
    font-size: .75rem;
    padding: .35rem .85rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all .2s;
}

.blog-detail-tag:hover {
    background: var(--teal);
    color: #fff;
}

/* Share */
.blog-detail-share {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--surface-2);
}

.blog-detail-share-label {
    font-size: .85rem;
    color: var(--text-3);
    font-weight: 600;
}

.blog-detail-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-1);
    color: var(--text-3);
    transition: all .2s;
    text-decoration: none;
}

.blog-detail-share-btn:hover {
    background: var(--teal);
    color: #fff;
    transform: translateY(-2px);
}

/* Related */
.blog-related {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--surface-2);
}

.blog-related-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 1.5rem;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 960px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-layout { gap: 1.5rem; padding-bottom: 2.5rem; }
    .blog-page-header { padding: 1.25rem 0 1.5rem; margin-bottom: 1.5rem; }
    .blog-list { gap: 1rem; }

    /* Pagination — küçük ekran dostu */
    .blog-pagination { gap: .25rem; flex-wrap: wrap; margin-top: 1.5rem; }
    .blog-pagination a, .blog-pagination span {
        min-width: 34px; height: 34px; padding: 0 .5rem; font-size: .8rem;
    }

    /* Blog detay başlık */
    .blog-detail-title { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }
    .blog-detail-cover { margin-bottom: 1.5rem; }
    .blog-detail-content h2 { font-size: 1.25rem; }
    .blog-detail-content h3 { font-size: 1.1rem; }

    /* Sidebar kartları daha kompakt */
    .blog-sb-card { padding: 1rem; }
    .blog-sb-title { font-size: .95rem; margin-bottom: .75rem; }
}

@media (max-width: 640px) {
    .blog-list {
        grid-template-columns: 1fr;
    }

    .blog-related-grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-meta {
        flex-wrap: wrap;
        gap: .75rem;
    }

    .blog-card-body { padding: 1rem; }
    .blog-card-title { font-size: 1rem; }
    .blog-card-excerpt { font-size: .82rem; }
}

@media (max-width: 420px) {
    .blog-pagination a, .blog-pagination span {
        min-width: 30px; height: 30px; padding: 0 .4rem; font-size: .75rem;
    }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  Yorumlar Listeleme Sayfası — ek stiller                  ║
   ╚══════════════════════════════════════════════════════════╝ */

.yorumlar-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
}

.yorumlar-stat {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: var(--teal-wash);
    border-radius: 999px;
    font-size: .85rem;
    color: var(--teal);
    font-weight: 600;
}

.yorumlar-stat i {
    font-size: .9rem;
}

.yorumlar-section {
    padding-bottom: 4rem;
}

/* Tur etiketi (yorumun hangi tura ait olduğu) */
.testi-tour-tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .7rem;
    color: var(--teal);
    background: var(--teal-wash);
    padding: .25rem .6rem;
    border-radius: 999px;
    margin-bottom: .75rem;
    text-decoration: none;
    font-weight: 600;
}

.testi-tour-tag:hover {
    background: var(--teal);
    color: #fff;
}

.testi-tour-tag i {
    font-size: .65rem;
}

.testi-media-card .testi-tour-tag {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: rgba(255, 255, 255, .95);
    z-index: 3;
    backdrop-filter: blur(4px);
}

.yorumlar-empty {
    text-align: center;
    padding: 4rem 2rem;
    border: 2px dashed var(--surface-2);
    border-radius: var(--radius-lg, 12px);
    color: var(--text-4);
}

.yorumlar-empty i {
    font-size: 2.5rem;
    color: var(--text-5, #ccc);
    margin-bottom: 1rem;
}

/* Yorumlar sayfası: anasayfa 3 kolon, burada 4 kolon */
.yorumlar-section .testi-masonry {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* 4 kolonda media kartları biraz daha kompakt */
.yorumlar-section .testi-media-tall { height: 360px; }
.yorumlar-section .testi-media-hero { height: 420px; }

@media (max-width: 1200px) {
    .yorumlar-section .testi-masonry {
        grid-template-columns: repeat(3, 1fr);
    }
    .yorumlar-section .testi-media-tall { height: 380px; }
    .yorumlar-section .testi-media-hero { height: 440px; }
}

@media (max-width: 960px) {
    .yorumlar-section .testi-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .yorumlar-section .testi-masonry {
        grid-template-columns: 1fr;
    }
    .yorumlar-section .testi-media-tall,
    .yorumlar-section .testi-media-hero { height: 320px; }
}
