.article-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.news-article {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.article-header {
    padding: 30px;
    background: var(--ankahed-red);
    color: #fff;
    height: fit-content;
    min-height: 50px;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
    text-align: center;
}

.article-header h1 {
    font-size: 24px;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

.article-meta {
    font-size: 14px;
    opacity: 0.9;
 
}

.article-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.article-image img {
    width: auto;
    height: 500px;
    object-fit: contain;
}

.article-content {
    padding: 30px;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.article-content div {
    margin-bottom: 1em;
}

.article-content [style*="text-align: center"] {
    text-align: center;
    margin: 1.5em 0;
}

.article-content b {
    font-weight: 600;
    color: #222;
}

.article-content ol {
    margin: 1.5em 0;
    padding-left: 2em;
    list-style-type: decimal;
}

.article-content ol > div {
    margin-bottom: 0.5em;
}

/* Emoji için özel stil */
.article-content div:first-child b {
    font-size: 1.2em;
    color: var(--ankahed-red);
}

/* Gündem başlığı için */
.article-content div b:first-child {
    display: block;
    margin: 1.5em 0 1em;
    font-size: 1.1em;
    color: var(--ankahed-dark);
}

/* Son duyuru notu için */
.article-content div:last-child b {
    display: block;
    margin-top: 2em;
    text-align: center;
    color: var(--ankahed-red);
}

.article-content h1, 
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    margin: 1.5em 0 0.8em;
    color: #222;
    line-height: 1.4;
}

.article-content ul,
.article-content ol {
    margin: 1em 0;
    padding-left: 2em;
}

.article-content li {
    margin-bottom: 0.5em;
}

.article-content blockquote {
    margin: 1.5em 0;
    padding: 1em 2em;
    border-left: 4px solid var(--ankahed-red);
    background: #f8f9fa;
    font-style: italic;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.article-content th,
.article-content td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.article-content th {
    background: #f8f9fa;
    font-weight: bold;
}

.article-content a {
    color: var(--ankahed-red);
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
}

.article-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.share-buttons {
    text-align: center;
}

.share-buttons h4 {
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 10px;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 24px;
    }
    
    .article-content {
        font-size: 15px;
        padding: 20px;
    }

    .article-image {
        max-height: 300px;
    }

    .share-btn {
        width: 35px;
        height: 35px;
        margin: 0 8px;
    }
}