/* eGUMUS V5 - ARTICLE DETAIL & LIST */

/* --- MAKALE LİSTESİ (Ana Akış) --- */
.post-feed-v4 {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 100%; /* Taşmayı önlemek için eklendi */
    overflow: hidden; /* Taşmayı önlemek için eklendi */
}

.post-card-v4 {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: transform 0.2s ease;
    max-width: 100%; /* Taşmayı önlemek için eklendi */
}

.post-card-v4:hover {
    transform: translateY(-2px);
}

.post-card-v4:last-child {
    border-bottom: none;
}

.post-image-v4 {
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.image-overlay {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.post-card-v4:hover .image-overlay {
    transform: scale(1.05);
}

.category-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    color: var(--text-main);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.post-content-v4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta-v4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dot {
    width: 4px;
    height: 4px;
    background: var(--border);
    border-radius: 50%;
}

.post-title-v4 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text-main);
}

.post-card-v4:hover .post-title-v4 a {
    color: var(--accent);
}

.post-desc-v4 {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-link-v4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- MAKALE DETAY SAYFASI --- */
.article-wrapper {
    background: var(--bg-surface);
    padding: 0; /* Minimalist tasarımda kutu içine hapsedilmez, serbest akar */
}

.article-header {
    margin-bottom: 40px;
    text-align: left;
}

.article-title-v4 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

/* Date Badge Box (Replaces Featured Image) */
.date-badge-box {
    background: #fff; /* Explicit white for card feel */
    border-left: 4px solid var(--accent);
    padding: 32px;
    margin-bottom: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.date-badge-day {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
    font-family: var(--font-heading);
}

.date-badge-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.date-badge-month {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-main);
    line-height: 1.2;
}

.date-badge-year {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* Typography Content */
.article-content-v4 {
    font-size: 1.125rem; /* 18px okuma boyutu */
    line-height: 1.8;
    color: var(--text-main);
}

.article-content-v4 p {
    margin-bottom: 24px;
    text-align: justify; /* Corporate look */
}

.article-content-v4 h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--text-main);
    border-bottom: 2px solid var(--border);
    padding-bottom: 8px;
}

/* --- EXTRA MODULES --- */
.box-title-v4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-left: 3px solid var(--accent);
    padding-left: 12px;
}

/* Daily Summary Box (Bot Generated) */
.daily-summary-box {
    margin-top: 40px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.daily-summary-box table {
    width: 100%;
    border-collapse: collapse;
}

.daily-summary-box th {
    text-align: left;
    padding: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border);
    font-weight: 700;
    text-transform: uppercase;
}

.daily-summary-box td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 600;
}

.daily-summary-box tr:last-child td {
    border-bottom: none;
}

/* Share Bar V4 */
.share-bar-v4 {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.s-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.s-links {
    display: flex;
    gap: 12px;
}

.s-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.s-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.s-btn.whatsapp { background: #25D366; }
.s-btn.twitter { background: #000000; }
.s-btn.facebook { background: #1877F2; }
.s-btn.telegram { background: #0088cc; }
