﻿/* Основная карточка в стиле featured-card */
.privacy-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 2.5rem;
    padding: 1rem;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px -30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .privacy-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 50px -30px rgba(0,0,0,0.2);
    }

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 200;
    color: var(--text-light);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-align: right;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

    .privacy-section h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.6rem;
        font-weight: 200;
        color: var(--text-rich);
        margin-bottom: 1rem;
        line-height: 1.2;
        letter-spacing: 0.02em;
        border-bottom: 1px solid rgba(138, 138, 138, 0.1);
        padding-bottom: 0.5rem;
    }

    .privacy-section p {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.95rem;
        font-weight: 200;
        line-height: 1.7;
        color: var(--text-soft);
        margin-bottom: 1rem;
    }

    .privacy-section ul,
    .privacy-section ol {
        margin-left: 1.5rem;
        margin-bottom: 1rem;
    }

    .privacy-section li {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.95rem;
        font-weight: 200;
        line-height: 1.7;
        color: var(--text-soft);
        margin-bottom: 0.3rem;
    }

    .privacy-section a {
        color: var(--text-rich);
        text-decoration: none;
        border-bottom: 1px solid var(--text-light);
        transition: opacity 0.2s;
    }

        .privacy-section a:hover {
            opacity: 0.6;
        }

    .privacy-section strong {
        font-weight: 300;
        color: var(--text-rich);
    }

/* Адаптивность */
@media (max-width: 900px) {
    .privacy-card {
        padding: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .privacy-card {
        padding: 1.2rem;
    }

    .privacy-section h3 {
        font-size: 1.3rem;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 0.9rem;
    }
}
