.academic-event {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    padding: 14px 16px;
    margin-bottom: 12px;

    background: #ffffff;
    border-right: 4px solid #2b6cb0;
    border-radius: 10px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

    gap: 20px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

/* افکت هاور */
.academic-event:hover {
    transform: translateY(-3px);
    background-color: #fafcff;
    border-right-color: #1e40af;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* عنوان رویداد */
.event-title {
    flex: 1 1 auto;

    font-size: 15px;
    font-weight: 600;
    color: #1a202c;

    line-height: 1.5;
}

/* تاریخ رویداد */
.event-date {
    flex: 0 0 auto;

    font-size: 13px;
    color: #4a5568;

    white-space: nowrap;
    text-align: left;
}

/* موبایل */
@media (max-width: 768px) {

    .academic-event {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .event-date {
        white-space: normal;
        text-align: right;
    }
}