/* Common Styles - Tüm sayfalarda kullanılan ortak stiller */

/* Başlık Dekorasyon Stilleri */
.news-title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color, #007bff), transparent);
}

.decoration-circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color, #007bff);
}

.news-title-decoration h2,
.news-title-decoration h3,
.news-title-decoration .text-block-title,
.news-title-decoration .about-us-title {
    margin: 0;
    color: var(--text-primary, #333);
    font-weight: bold;
    font-size: 2.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Genel başlık stilleri */
.section-header {
    text-align: center;
    padding: 10px;
}

/* Navigasyon butonları */
.nav-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--primary-color, #007bff);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-button:hover {
    background: var(--primary-color, #007bff);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Navigasyon container */
.news-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Ortak Breadcrumb Stilleri */
.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: var(--text-secondary, #7f8c8d);
}

.breadcrumb-item.active {
    color: var(--text-primary, #2c3e50);
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-light, #bdc3c7);
    content: "›";
}

.breadcrumb a {
    color: var(--primary-blue, #2c3e50);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--text-secondary, #7f8c8d);
    text-decoration: underline;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}