* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: white;
}

/* ==================== */

.page-title {
    text-align: center;
    margin: 0;
    margin-top: 40px;
}

.page-title h1 {
    color: #1c4eb4;
    font-size: 2.5rem;
    font-family: 'B ROYA';
}

.page-title img {
    width: 55%;
    max-width: 1100px;
    margin: 35px 0;
    border-radius: 10px;
}

.event-article {
    width: 55%;
    max-width: 1100px;
    margin: 60px auto;
    margin-top: 0;
}

.event-article h2 {
    color: #1c4eb4;
    margin: 35px 0 20px;
    font-family: 'B TITR';
    font-size: 29px;
}

.event-article h3 {
    color: #143d8f;
    margin: 25px 0 10px;
    font-family: 'B TITR';
    font-size: 22px;
}

.event-article p {
    font-size: 18px;
    line-height: 2.2;
    text-align: justify;
    color: #444;
    font-family: 'IRANSansWeb', 'B NAZANIN';
}

.event-article img {
    width: 100%;
    margin: 35px 0;
    margin-bottom: 0;
    border-radius: 10px;
}


/* ==================== */

.current-events {
    width: 90%;
    max-width: 1300px;
    margin: 100px auto;
}

.current-events h2 {
    text-align: center;
    color: #1c4eb4;
    margin-bottom: 45px;
    font-family: 'IRANSansWeb', 'B NAZANIN';
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.event-cards a {
    text-decoration: none;
    color: #1c4eb4;
    font-family: 'IRANSansWeb', 'B NAZANIN';
}

.event-card {
    border: 1px solid #d7e3fb;
    border-radius: 14px;
    overflow: hidden;
    transition: .3s;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .12);
}

.event-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.event-card h3 {
    padding: 18px;
    text-align: center;
    font-family: 'IRANSansWeb', 'B NAZANIN';
}

@media (max-width: 1600px) {
    .page-title img {
        width: 83%;
        max-width: 1100px;
        margin: 35px 0;
        border-radius: 10px;
    }

    .event-article {
        width: 78%;
        max-width: 1100px;
        margin: 60px auto;
        margin-top: 0;
    }
}

@media (max-width: 900px) {
    .page-title {
        text-align: center;
        margin: 0;
        margin-top: 30px;
    }

    .page-title h1 {
        color: #1c4eb4;
        font-size: 1.8rem;
        font-family: 'B ROYA';
    }

    .page-title img {
        width: 90%;
        max-width: 1100px;
        margin: 35px 0;
        border-radius: 10px;
    }

    .event-article {
        width: 84%;
        max-width: 1100px;
        margin: 60px auto;
        margin-top: 0;
    }

    .event-article h2 {
        color: #1c4eb4;
        margin: 35px 0 20px;
        font-family: 'B TITR';
        font-size: 23px;
    }

    .event-article h3 {
        color: #143d8f;
        margin: 25px 0 10px;
        font-family: 'B TITR';
        font-size: 18px;
    }

    .event-article p {
        font-size: 14px;
        line-height: 2.2;
        text-align: justify;
        color: #444;
        font-family: 'IRANSansWeb';
    }

    .event-article img {
        width: 100%;
        margin: 35px 0;
        margin-bottom: 0;
        border-radius: 10px;
    }

    .event-cards {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 35px;
    }
}