/* Sözleşmeler Sayfası Stilleri */
.sozlesmeler-page-title {
    color: #000125;
}

/* Sözleşmeler sayfası için min-height - breadcrumb ve footer arasındaki container */
.sozlesmeler-page-content,
.sozlesme-detail-page-content {
    min-height: calc(100vh - 400px);
}

body.dark .sozlesmeler-page-title,
.dark .sozlesmeler-page-title {
    color: var(--text-dark, #f3f4f6);
}

.sozlesmeler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sozlesme-card {
    background: var(--surface-light, #fff);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sozlesme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.sozlesme-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light, #333);
    margin: 0;
    line-height: 1.4;
}

.sozlesme-date {
    font-size: 0.875rem;
    color: var(--gray-500, #666);
    margin: 0;
}

.sozlesme-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    margin-top: auto;
}

.sozlesme-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

.sozlesmeler-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

/* Sözleşme Detay Sayfası Stilleri */
.sozlesme-detail-meta {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.sozlesme-detail-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.875rem;
}

.sozlesme-detail-date i {
    font-size: 1rem;
}

.sozlesme-detail-content {
    line-height: 1.8;
    color: var(--text-light, #333);
}

.sozlesme-detail-content h1,
.sozlesme-detail-content h2,
.sozlesme-detail-content h3,
.sozlesme-detail-content h4,
.sozlesme-detail-content h5,
.sozlesme-detail-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 600;
}

.sozlesme-detail-content h1 {
    font-size: 2rem;
}

.sozlesme-detail-content h2 {
    font-size: 1.75rem;
}

.sozlesme-detail-content h3 {
    font-size: 1.5rem;
}

.sozlesme-detail-content p {
    margin-bottom: 1rem;
}

.sozlesme-detail-content ul,
.sozlesme-detail-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.sozlesme-detail-content li {
    margin-bottom: 0.5rem;
}

.sozlesme-detail-content a {
    color: #3b82f6;
    text-decoration: underline;
}

.sozlesme-detail-content a:hover {
    color: #2563eb;
}

/* Dark Mode Desteği */
body.dark .sozlesme-card,
.dark .sozlesme-card {
    background: var(--surface-dark, #1e1e1e);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark .sozlesme-card:hover,
.dark .sozlesme-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark .sozlesme-title,
.dark .sozlesme-title {
    color: var(--text-dark, #f3f4f6);
}

body.dark .sozlesme-date,
.dark .sozlesme-date {
    color: var(--gray-400, #9ca3af);
}

body.dark .sozlesme-link,
.dark .sozlesme-link {
    color: #60a5fa;
}

body.dark .sozlesme-link:hover,
.dark .sozlesme-link:hover {
    color: #93c5fd;
}

body.dark .sozlesme-detail-content,
.dark .sozlesme-detail-content {
    color: var(--text-dark, #f3f4f6);
}

body.dark .sozlesme-detail-content h1,
body.dark .sozlesme-detail-content h2,
body.dark .sozlesme-detail-content h3,
body.dark .sozlesme-detail-content h4,
body.dark .sozlesme-detail-content h5,
body.dark .sozlesme-detail-content h6,
.dark .sozlesme-detail-content h1,
.dark .sozlesme-detail-content h2,
.dark .sozlesme-detail-content h3,
.dark .sozlesme-detail-content h4,
.dark .sozlesme-detail-content h5,
.dark .sozlesme-detail-content h6 {
    color: var(--text-dark, #f9fafb);
}

body.dark .sozlesme-detail-meta,
.dark .sozlesme-detail-meta {
    border-bottom-color: var(--gray-700, #374151);
}

body.dark .sozlesme-detail-date,
.dark .sozlesme-detail-date {
    color: var(--gray-400, #9ca3af);
}

body.dark .sozlesmeler-empty,
.dark .sozlesmeler-empty {
    color: var(--gray-400, #9ca3af);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .sozlesmeler-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sozlesme-card {
        padding: 1.5rem;
    }

    .sozlesme-title {
        font-size: 1.125rem;
    }
}

