

.opths__modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(32, 32, 32, 0.8);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.opths__loader-wrapper {
    background: var(--opths__main_white);
    padding: 30px 40px;
    border-radius: 14px;
    border: 1px solid var(--opths__main_border_color);
    box-shadow: 0 8px 30px rgba(146, 138, 146, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 340px;
    width: 100%;
    font-family: var(--opths__font_family), sans-serif;
    color: var(--opths__pastel_dark);
    animation: modalFadeIn 0.3s ease-out;
    text-align: center;
}

@keyframes modalFadeIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.opths__spinner {
    width: 36px;
    height: 36px;
    border: 4px solid var(--opths__pastel_white);
    border-top: 4px solid var(--opths__main_color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.opths__message_loading {
    font-size: 16px;
    font-weight: 500;
    color: var(--opths__dark_accent);
    margin: 0;
}

.opths__message_success {
    font-size: 18px;
    font-weight: bold;
    color: var(--opths__main_dark);
    margin: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.opths_custom-back-3 {
        position: relative;
        padding: 20px;
        border-radius: 10px;
        overflow: hidden;
    }
    .opths_custom-back-3::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--opths__pastel_white);
        opacity: 0.7;
        border-radius: 10px;
        z-index: 1;
        border-radius: 50px;
    }
    .opths_custom-back-text-3 {
        position: relative;
        z-index: 2;
    }





.opths__custom-simple-block6 {
        opacity: 90%;
    }

.news-3-container {
        max-width: 900px;
        margin: auto;
    }

    .news-3-card {
        background: var(--opths__pastel_dark);
        color: var(--opths__main_white);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
        transition: transform 0.3s ease-in-out;
    }

    .news-3-card:hover {
        transform: translateY(-5px);
    }

    .news-3-body {
        padding: 20px;
    }

    .news-3-title {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .news-3-date {
        font-size: 0.9rem;
        color: var(--opths__main_color);
    }

    .news-3-text {
        margin-top: 10px;
    }





