/* =================== Patchnotes ==================== */
.page-patchnotes {
    display: flex;
    width: 100%;
    max-width: 1420px;
    padding: 50px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

/* Card d'une version */
.patch-detail {
    width: 100%;
    background: var(--surface-2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 20px;
    border: 1px solid var(--border-default);
    backdrop-filter: blur(10px);
}

/* En-tête : version à gauche, date à droite */
.patch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-default);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

/* Image + description côte à côte */
.patch-main-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.patch-main-img {
    flex: 0 0 450px;
    width: 450px;
    height: 280px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px var(--shadow-img);
    border: 1px solid var(--border-default);
}

.patch-description {
    flex: 1;
    font-family: Baskervville;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-description);
    display: flex;
    flex-direction: column;
    justify-content: center;
}