/* ===============================
   DASHBOARD WRAPPER
================================ */

.dashboard-page {
    padding-top: 80px;
}

.account-main {
    padding-top: 120px;
}

/* ===============================
   TÍTOL DASHBOARD
================================ */

.dashboard-title {
    font-size: 68px;
    font-weight: 700;        /* abans 700 */
    letter-spacing: 1px;  /* separació subtil */
    line-height: 1.05;
    margin-bottom: 20px;
}

.dashboard-subtitle {
    font-size: 24px;
    font-weight: 200;
    letter-spacing: 0.6px;   /* aire entre lletres */
    color: #3a3a3a;
    margin-bottom: 50px;
}


/* ===============================
   GRID TARGETES
================================ */

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 28px;
    align-items: start;
}


/* ===============================
   TARGETA
================================ */

.dashboard-mini-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.dashboard-mini-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.dashboard-mini-card h3 {
    font-size: 24px;
    font-weight: 200;       /* molt més fi */
    letter-spacing: 0.6px;  /* més espai entre lletres */
    margin-top: 16px;
    margin-bottom: 18px;
}


/* ===============================
   BOTÓ
================================ */

.dashboard-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #1f1f1f;
    color: #ffffff;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.dashboard-mini-card:hover {
    transform: none;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1600px) {
    .dashboard-title {
        font-size: 58px;
    }

    .dashboard-cards {
        grid-template-columns: repeat(4, minmax(180px, 1fr));
    }

    .dashboard-mini-card img {
        height: 185px;
    }
}

@media (max-width: 1200px) {
    .dashboard-title {
        font-size: 48px;
    }

    .dashboard-subtitle {
        font-size: 20px;
    }

    .dashboard-cards {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
        gap: 30px;
    }

    .dashboard-mini-card img {
        height: 220px;
    }
}

@media (max-width: 700px) {
    .dashboard-title {
        font-size: 36px;
    }

    .dashboard-subtitle {
        font-size: 18px;
        margin-bottom: 34px;
    }

    .dashboard-cards {
        grid-template-columns: 1fr;
    }

    .dashboard-mini-card img {
        height: 220px;
    }

    .dashboard-mini-card h3 {
        font-size: 22px;
    }

    .dashboard-btn {
        font-size: 16px;
        padding: 12px 26px;
    }
}