/* /////////////////////////////////////////////////////////////////////////////////////////////////////
   UPDATE PAGE - LAYOUT
*/

#updateMain {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////
   EN-TÊTE
*/

#updateHero {
    text-align: center;
    margin: 2rem 0 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-gray-dark);
}

#updateTitle {
    font-size: 1.4rem;
    color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

#updateIntro {
    color: var(--color-gray-light);
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto;
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////
   SECTIONS
*/

.update-section {
    margin-bottom: 2.5rem;
    border: 1px solid var(--color-gray-dark);
    border-radius: 15px;
    overflow: hidden;
}

.update-section-history {
    border-color: rgba(100, 240, 255, 0.2);
    background: rgba(100, 240, 255, 0.02);
    opacity: 0.8;
}

.update-section-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--color-gray-dark);
}

.update-section-history .update-section-header {
    background: rgba(100, 240, 255, 0.05);
}

.update-icon {
    font-size: 1.1rem;
    color: var(--color-blue);
    flex-shrink: 0;
    width: 22px;
    text-align: center;
}

.update-section-history .update-icon {
    color: var(--color-gray-light);
}

.update-section-header h3 {
    color: var(--color-blue);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.update-section-history .update-section-header h3 {
    color: var(--color-gray-light);
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////
   ITEMS
*/

.update-section-content {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.update-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(130, 130, 130, 0.15);
}

.update-item:last-child {
    border-bottom: none;
}

.update-item-icon {
    font-size: 0.95rem;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
    margin-top: 0.2rem;
}

.update-section-history .update-item-icon {
    opacity: 0.6;
}

.update-item strong {
    display: block;
    color: var(--color-white);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.update-section-history .update-item strong {
    color: var(--color-gray-light);
}

.update-item p {
    color: var(--color-gray-light);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

.update-section-history .update-item p {
    color: var(--color-gray-dark);
}

.update-list {
    margin: 0.5rem 0 0;
    padding-left: 1.2rem;
    list-style-type: disc;
}

.update-list li {
    color: var(--color-gray-light);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

.update-list li:last-child {
    margin-bottom: 0;
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////
   LIENS DOCUMENTS
*/

.update-doc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-gray-dark);
    border-radius: 25px;
    color: var(--color-gray-light);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.update-doc-link i {
    font-size: 0.85rem;
    color: inherit;
    transition: color 0.3s ease;
}

.update-doc-link:hover {
    border-color: var(--color-blue);
    color: var(--color-blue);
    background: rgba(100, 240, 255, 0.05);
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////
   RESPONSIVE
*/

@media (max-width: 600px) {
    #updateTitle {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .update-section-header {
        padding: 0.8rem 1rem;
    }

    .update-section-content {
        padding: 0.5rem 1rem;
    }

    .update-item {
        gap: 0.7rem;
    }

    .update-doc-link {
        width: 100%;
        justify-content: center;
    }
}