﻿.notice-disclaimer {
    margin: 2.5rem 0; /* Makale içeriğinden boşlukla ayrılır */
    padding: 1.5rem 1.75rem;
    border-radius: 8px;
    border: 1px solid #dde3ee;
    background: #fcfdfe; /* Hafif beyaza yakın arka plan */
    display: flex;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06); /* Hafif gölge */
    border-left: 4px solid #1695d5; /* Sol şerit */
}

.notice-disclaimer__icon {
    font-size: 1.8rem;
    line-height: 1;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.notice-disclaimer__content {
    flex: 1;
}
/* H tag yerine özel başlık class'ı */

.notice-disclaimer__title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.notice-disclaimer p {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
}

.notice-disclaimer hr {
    border: 0;
    border-top: 1px dashed #cbd5e1;
    margin: 1rem 0 1.25rem;
}
/* Küçük ekranlar için */

@media (max-width: 640px) {
    .notice-disclaimer {
        flex-direction: row;
        padding: 1.25rem 1.25rem;
    }

    .notice-disclaimer__icon {
        font-size: 1.6rem;
    }
}
/* Dark mode */

@media (prefers-color-scheme: dark) {
    .notice-disclaimer {
        background: #020617;
        border-color: #1e293b;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.55);
    }

    .notice-disclaimer__title {
        color: #e5e7eb;
    }

    .notice-disclaimer p {
        color: #cbd5f5;
    }

    .notice-disclaimer hr {
        border-top-color: #334155;
    }
}
