/* ===========================================================
   ACCOUNT
=========================================================== */
.account-page {
    padding: 40px 0 100px;
}
.account-layout {
    display: grid;
    grid-template-columns: minmax(520px, 44%) 1fr;
    gap: 90px;
    align-items: center;
    min-height: calc(100vh - 140px);
}
.account-image {
    /* position: sticky; */
    top: 120px;
}
.account-image img {
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
    display: block;
    border-radius: 28px;
}
.account-content {
    width: 100%;
    padding-top: 60px;
    max-width: 720px;
}
.account-content h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 5.5rem;
    font-weight: 500;
    line-height: .9;
    color: #43372F;
    margin: 8px 0 34px;
}
.account-intro {
    max-width: 620px;
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 70px;
}
.account-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    text-decoration: none;
    font-size: .92rem;
    font-weight: 600;
    transition: .25s;
}
.account-link:hover {
    transform: translateX(4px);
}
.account-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #F4ECE4;
    margin-bottom: 24px;
}
.account-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(67, 55, 47, .06);
    border-radius: 28px;
    padding: 40px;
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(8px);
    transition: .35s;
    -webkit-backdrop-filter: blur(8px);
}
.account-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .05);
}
.account-card h3 {
    font-size: 1.05rem;
}
.account-card p {
    font-size: .95rem;
    line-height: 1.7;
}
.account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
}
.account-history {
    margin-top: 90px;
}
.account-history h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin: 10px 0 20px;
    color: #43372F;
}
#accountTimeline {
    margin-top: 55px;
}
.timeline-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 35px;
    padding: 24px 0;
    border-top: 1px solid rgba(67, 55, 47, .08);
}
.timeline-item:last-child {
    border-bottom: 1px solid rgba(67, 55, 47, .08);
}
.timeline-date {
    text-align: center;
}
.timeline-day {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
    color: #43372F;
}
.timeline-month {
    display: block;
    margin-top: 6px;
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #9C7658;
}
.timeline-year {
    display: block;
    margin-top: 4px;
    font-size: .8rem;
    color: #9A8C81;
}
.timeline-label {
    display: block;
    margin-bottom: 6px;
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #9C7658;
}
.timeline-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 500;
    color: #43372F;
    margin: 0;
}
.account-page .section-kicker {
    font-size: .78rem;
    letter-spacing: .18em;
    color: #9C7658;
}
.account-divider {
    margin: 22px 0 34px;
}
.account-divider span {
    display: block;
    width: 48px;
    height: 2px;
    background: #C79B72;
    border-radius: 2px;
}
.account-role {
    font-size: .95rem;
    color: #9C7658;
    font-weight: 500;
}

/* ==========================================
   CAMBIAR CONTRASEÑA
========================================== */
.account-password {
    display: none;
    margin-top: 4rem;
    animation: fadePassword .35s ease;
}
.account-password.open {
    display: block;
}
@keyframes fadePassword {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}