
/* --- Updates Section (زیر بخش اصلی) --- */
.updates-section {
    max-width: 1200px;
    width: 100%;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

.updates-section h2 {
    color: #2c3e50;
    font-size: 1.5em;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.update-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px dotted #f0f0f0;
}

.update-date {
    font-weight: bold;
    color: #007bff;
    width: 120px;
    flex-shrink: 0;
}

.update-desc {
    flex-grow: 1;
    color: #333;
}

.view-all-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .login-layout {
        grid-template-columns: 1fr;
    }
    .info-panel {
        order: -1; /* نمایش پنل اطلاعاتی در بالا */
        min-height: 300px;
    }
}