/* ==========================================================
   EMU JAPAN WEB
   Dashboard / Learning Menu Stylesheet
   ========================================================== */

.dashboard-menu {
    padding: 50px 0;
}

.dashboard-heading {
    margin-bottom: 35px;
}

.dashboard-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.dashboard-heading p {
    color: var(--text-light);
    margin-bottom: 0;
}


/* ==========================================================
   DASHBOARD CARD
   ========================================================== */

.dashboard-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    min-height: 150px;
    height: 100%;
    /* Mengisi tinggi kolom secara merata */
    color: var(--text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none !important;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(157, 11, 3, 0.12);
    border-color: var(--primary);
    color: inherit;
}


/* ==========================================================
   ICON STYLING
   ========================================================== */

.dashboard-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 15px;
    background: #fdf0ef;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s ease;
}

.dashboard-icon i {
    font-size: 30px;
}


/* HOVER EFFECT PADA ICON & JUDUL */

.dashboard-card:hover .dashboard-icon {
    background: var(--primary);
    color: #ffffff;
}

.dashboard-card:hover .dashboard-icon i {
    color: #ffffff;
}

.dashboard-card:hover h4 {
    color: var(--primary);
}


/* ==========================================================
   CONTENT & TYPOGRAPHY
   ========================================================== */

.dashboard-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dashboard-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.dashboard-content p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}

.dashboard-link-action {
    display: inline-block;
    margin-top: 12px;
    font-weight: 700;
    color: var(--primary);
    transition: transform 0.2s ease;
}

.dashboard-card:hover .dashboard-link-action {
    transform: translateX(5px);
}


/* ==========================================================
   CARD SIZES
   ========================================================== */

.dashboard-small {
    min-height: 140px;
}

.dashboard-medium {
    min-height: 180px;
}

.dashboard-large {
    min-height: 300px;
}


/* COMING SOON VARIANT */

.dashboard-coming {
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    border-style: dashed;
    opacity: 0.8;
}

.dashboard-coming .dashboard-icon {
    background: #ececec;
    color: var(--text-light);
}