/* ==========================================================================
   MY ACCOUNT: Dashboard Content
   ========================================================================== */
.hs-dashboard-wrapper {
    background-color: #FFFFFF;
    padding: 40px;
}

.hs-dashboard-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 32px;
    color: #000;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.hs-dashboard-divider {
    border: none;
    border-top: 1px solid #D6D6D6;
    margin: 0 0 40px 0;
}

.hs-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.hs-dash-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.hs-dash-card:hover {
    border-color: #D6D6D6;
}

.hs-dash-card-img {
    width: 100%;
    aspect-ratio: 402 / 198; /* Traducción matemática perfecta de tus píxeles */
    object-fit: cover;
    background-color: #F5F5F5;
    display: block;
}

.hs-dash-card-body {
    padding: 25px 0;
}

.hs-dash-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.hs-dash-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 24px;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    text-decoration: underline;
}

.hs-dash-card-header svg {
    color: #000;
}

.hs-dash-card-desc {
    font-family: 'General Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .hs-dashboard-grid {
        grid-template-columns: 1fr;
    }
    .hs-dashboard-wrapper {
        padding: 20px;
    }
}