

.rm8pz__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #0808081f;
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .rm8pz__loader-wrapper {
        background: var(--rm8pz__main_white);
        padding: 20px 30px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 16px;
        color: var(--rm8pz__pastel_dark);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        max-width: 300px;
        text-align: center;
    }

    .rm8pz__spinner {
        width: 24px;
        height: 24px;
        border: 3px solid var(--rm8pz__pastel_dark);
        border-top: 3px solid var(--rm8pz__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }








.news-3-container {
        max-width: 900px;
        margin: auto;
    }

    .news-3-card {
        background: var(--rm8pz__pastel_dark);
        color: var(--rm8pz__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(--rm8pz__main_color);
    }

    .news-3-text {
        margin-top: 10px;
    }





