:root {
    --accent-color-yorum: #ffd285;
    /* Hover renkleri için */
    --like-color: #ff4b4b;
    /* Beğeni rengi */
    --white: #fdfaf3;
    --black: #000;
    --gray-light: #ccc;
    --border-radius: 10px;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-base: "Poppins", sans-serif;
}

/* ================== YORUMLAR ================== */
body {
    font-family: var(--font-base);
}

.yorumlar {
    color: var(--black);
    padding: 25px 0;
}

.yorum-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.yorum {
    padding: 30px;
}

.yorum-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.yorum-actions {
    display: flex;
    gap: 15px;
}

.yorum-actions button {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color var(--transition-medium);
}

.yorum-actions button i {
    margin-right: 5px;
}

.yorum-actions button:hover {
    color: var(--accent-color-yorum);
}

.like-btn.liked {
    color: var(--like-color);
}

/* Cevaplar */
.cevaplar {
    margin-top: 15px;
    padding-left: 20px;
    border-left: 2px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cevap {
    padding: 15px;
}

.cevap p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Profil resmi ve isim bilgisi */
.yorum-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.profil-resmi {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.yorum-bilgi {
    display: flex;
    flex-direction: column;
}

.yorum-bilgi strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.yorum-bilgi span {
    color: var(--gray-light);
    font-size: 0.85rem;
}

/* =========================================================
   🔹 YORUMLAR BÖLÜMÜ – SOL/SAĞ DÜZEN + STICKY BLOG
========================================================= */
.yorumlar-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.yorumlar-left {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
}

.yorumlar-right {
    position: relative;
}

/* Sağ tarafın sabit kalması */
.sticky-blog {
    position: sticky;
    top: 100px;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Sağ başlık */
.sidebar-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

/* Sağdaki küçük yazı kartları */
.side-post {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    transition: transform var(--transition-medium);
}

.side-post:hover {
    transform: translateX(5px);
}

.side-post img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.side-post-content a {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 1.4rem;
    text-decoration: none;
    transition: color var(--transition-medium);
}

.side-post-content a:hover {
    color: var(--secondary-color);
}

/* 2 Sütunlu Ana Yapı */
.two-column {
    display: flex;
    gap: 20px;
}

/* SOL %80 */
.left-content {
    width: 80%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 15px;
}

.left-content .main-img {
    width: 40%;
    height: auto;
    border-radius: var(--border-radius);
}

.left-content .text-area {
    width: 60%;
}

/* Başlık ve metin */
.main-title {
    font-size: 2rem;
    font-weight: 700;
}

.main-text {
    font-size: 1rem;
    line-height: 1.6;
}

/* SAĞ %20 */
.right-sidebar {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* BLOG KUTULARI */
.blog-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.blog-item:hover {
    transform: translateY(-3px);
}

.blog-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.blog-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px;
}

/* 📱 MOBİL GÖRÜNÜM */
@media (max-width: 900px) {

    .yorumlar-layout {
        grid-template-columns: 1fr;
    }
    
    .yorumlar-left {
        padding: 0;
    }

    .sticky-blog {
        position: static;
        box-shadow: none;
    }

    .two-column {
        flex-direction: column;
    }

    .left-content {
        width: 100%;
        flex-direction: column;
    }

    .left-content .main-img {
        width: 100%;
        height: auto;
    }

    .left-content .text-area {
        width: 100%;
    }

    .right-sidebar {
        width: 100%;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .blog-item {
        width: 100%;
        margin-bottom: 5px;
    }

    .blog-item img {
        height: 160px;
    }
}