/* Makaleler Page Styles */

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.content-section {
    padding: 4rem 2rem;
}

.content-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.articles-display {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.article-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f8 100%);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #4a90e2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.article-toggle {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.article-toggle h3 {
    margin-bottom: 0;
    text-align: left;
}

.article-toggle-icon {
    font-size: 1.2rem;
    margin-left: 1rem;
    color: #4a90e2;
    transition: transform 0.2s ease;
}

.article-card.article-open .article-toggle-icon {
    transform: rotate(180deg);
}

.article-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.article-date {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.article-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.article-content {
    color: #555;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.article-card.article-open .article-content {
    max-height: 3000px;
    opacity: 1;
    margin-top: 1rem;
}

.article-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.no-articles {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 3rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 2rem;
    }
}


