/* ===================================
   DASHBOARD HOME - CONTENT LAYOUT
   =================================== */

.dash-home-wrapper {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.dash-home {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    grid-template-rows: auto auto auto;
    gap: 14px;
    padding: 14px;
    min-height: 100%;
    background: #F5F5F7;
}

/* ===== GRID PLACEMENT ===== */
.dash-topbar-search {
    grid-column: 1;
    grid-row: 1;
}

.dash-topbar-actions {
    grid-column: 2;
    grid-row: 1;
}

.dash-hero {
    grid-column: 1;
    grid-row: 2;
}

.dash-progress-card {
    grid-column: 2;
    grid-row: 2;
}

.dash-content-grid {
    grid-column: 1;
    grid-row: 3;
}

.dash-cert-card {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
}

/* ===== TOP BAR ===== */
.dash-topbar-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1.5px solid #E4E4EA;
    border-radius: 12px;
    padding: 0 14px;
    height: 42px;
    transition: border-color 200ms, box-shadow 200ms;
}

.dash-topbar-search:focus-within {
    border-color: #C8102E;
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.08);
}

.dash-topbar-search > svg {
    width: 18px;
    height: 18px;
    color: #9A9AA3;
    flex-shrink: 0;
    transition: color 200ms;
}

.dash-topbar-search:focus-within > svg {
    color: #C8102E;
}

.dash-topbar-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Sofia Pro Regular', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13.5px;
    color: #1D1D22;
    outline: none;
    height: 100%;
}

.dash-topbar-search input::placeholder {
    color: #B0B0B8;
}

.dash-topbar-search-clear {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: #8E8E93;
    cursor: pointer;
    transition: background 150ms, color 150ms;
    padding: 0;
    flex-shrink: 0;
}

.dash-topbar-search-clear:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #636366;
}

.dash-topbar-search-clear svg {
    width: 14px;
    height: 14px;
}

.dash-topbar-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.dash-topbar-notif {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    color: #5A5A63;
    cursor: pointer;
    transition: background 150ms, color 150ms, transform 150ms;
    border: 1.5px solid #E4E4EA;
}

.dash-topbar-notif:hover {
    background: #F2F2F7;
    color: #C8102E;
    transform: translateY(-1px);
}

.dash-topbar-notif svg {
    width: 18px;
    height: 18px;
}

.dash-topbar-notif-dot {
    position: absolute;
    top: 7px;
    right: 8px;
    width: 7px;
    height: 7px;
    background: #C8102E;
    border-radius: 50%;
    border: 2px solid #fff;
}

.dash-topbar-user-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
}

.dash-topbar-user {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 10px 4px 4px;
    border: 1.5px solid #E4E4EA;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: background 150ms, border-color 150ms, transform 150ms;
    height: 38px;
    width: 100%;
}

.dash-topbar-user:hover {
    background: #F2F2F7;
    border-color: #D4D4DC;
    transform: translateY(-1px);
}

.dash-topbar-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C8102E, #8E0A21);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.dash-topbar-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dash-topbar-avatar svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.dash-topbar-username {
    flex: 1;
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #1D1D22;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-topbar-chevron {
    width: 16px;
    height: 16px;
    color: #9A9AA3;
    flex-shrink: 0;
    transition: transform 200ms;
}

/* ---- Dropdown Menu ---- */
.dash-topbar-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 260px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 8px;
    z-index: 100;
    animation: dash-dropdown-in 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dash-dropdown-in {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dash-topbar-dropdown-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px 12px;
    border-bottom: 1px solid #F0F0F4;
    margin-bottom: 4px;
}

.dash-topbar-dropdown-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C8102E, #8E0A21);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.dash-topbar-dropdown-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dash-topbar-dropdown-avatar svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.dash-topbar-dropdown-name {
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #1D1D22;
    line-height: 1.3;
}

.dash-topbar-dropdown-role {
    font-family: 'Sofia Pro Regular', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    color: #8E8E93;
    line-height: 1.3;
}

.dash-topbar-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-family: 'Sofia Pro Regular', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13.5px;
    color: #1D1D22;
    cursor: pointer;
    transition: background 150ms;
    text-align: left;
}

.dash-topbar-dropdown-item:hover {
    background: #F2F2F7;
}

.dash-topbar-dropdown-item svg {
    width: 18px;
    height: 18px;
    color: #636366;
    flex-shrink: 0;
}

.dash-topbar-dropdown-admin {
    color: #C8102E;
}

.dash-topbar-dropdown-admin svg {
    color: #C8102E;
}

.dash-topbar-dropdown-admin:hover {
    background: rgba(200, 16, 46, 0.06);
}

.dash-topbar-dropdown-divider {
    height: 1px;
    background: #F0F0F4;
    margin: 4px 8px;
}

.dash-topbar-dropdown-logout {
    color: #8E8E93;
}

.dash-topbar-dropdown-logout:hover {
    background: rgba(255, 59, 48, 0.06);
    color: #FF3B30;
}

.dash-topbar-dropdown-logout:hover svg {
    color: #FF3B30;
}

.dash-main {
    min-width: 0;
    display: contents;
}

.dash-hero {
    position: relative;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.02) 20px,
            rgba(255, 255, 255, 0.02) 21px
        ),
        linear-gradient(120deg, #A20E28 0%, #C8102E 45%, #8E0A21 100%);
    border-radius: 14px;
    min-height: 170px;
    padding: 24px 24px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.dash-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background:
        radial-gradient(circle at 25% 35%, rgba(255, 60, 80, 0.6) 0%, transparent 44%),
        radial-gradient(circle at 72% 68%, rgba(100, 5, 20, 0.7) 0%, transparent 40%),
        radial-gradient(circle at 55% 20%, rgba(230, 30, 60, 0.45) 0%, transparent 48%);
    filter: blur(32px);
    animation: dash-aurora-flow 14s ease-in-out infinite alternate;
    will-change: transform;
    z-index: 1;
    pointer-events: none;
}

.dash-hero::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
    animation: dash-aurora-glow 9s ease-in-out infinite alternate;
    will-change: transform, opacity;
    z-index: 1;
    pointer-events: none;
}

@keyframes dash-aurora-flow {
    0%   { transform: translate(0%, 0%) rotate(0deg) scale(1); }
    30%  { transform: translate(8%, -10%) rotate(50deg) scale(1.05); }
    60%  { transform: translate(-6%, 7%) rotate(110deg) scale(0.97); }
    100% { transform: translate(5%, -4%) rotate(180deg) scale(1.02); }
}

@keyframes dash-aurora-glow {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.55; }
    40%  { transform: translate(-28px, 18px) scale(1.35); opacity: 1; }
    70%  { transform: translate(12px, -8px) scale(0.85); opacity: 0.7; }
    100% { transform: translate(-10px, 12px) scale(1.15); opacity: 0.9; }
}

.dash-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 560px;
}

.dash-hero-tag {
    display: inline-block;
    margin-bottom: 8px;
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    opacity: 0.82;
}

.dash-hero-title {
    margin: 0;
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: var(--text-4xl, 44px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.dash-hero-btn {
    margin-top: 16px;
    border: none;
    background: #fff;
    color: #151515;
    border-radius: 999px;
    padding: 10px 18px;
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.dash-hero-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.dash-hero-btn:active {
    transform: translateY(0) scale(0.97);
}

.dash-hero-btn svg {
    width: 16px;
    height: 16px;
}

.dash-content-grid {
    display: grid;
    grid-template-columns: minmax(320px, 41%) minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.dash-board-card {
    background: #fff;
    border: 1px solid #E7E7EC;
    border-radius: 12px;
}

.dash-day-board {
    min-height: 520px;
}

.dash-day-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px 12px;
    border-bottom: 1px solid #ECECF1;
}

.dash-day-header h2 {
    margin: 0;
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 33px;
    line-height: 1;
    color: #151515;
}

.dash-day-header p {
    margin: 4px 0 0;
    font-family: 'Sofia Pro Regular', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 19px;
    color: #65656E;
}

.dash-day-menu {
    border: none;
    background: transparent;
    color: #35353A;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.dash-day-menu:hover {
    background: #F2F2F7;
}

.dash-day-menu svg {
    width: 16px;
    height: 16px;
}

.dash-day-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 453px;
}

.dash-day-column {
    padding: 10px;
    border-right: 1px solid #F0F0F4;
    min-width: 0;
}

.dash-day-column:last-child {
    border-right: none;
}

.dash-day-column-title {
    margin: 0 0 10px;
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: #2A2A2F;
}

.dash-day-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-day-task {
    width: 100%;
    border: 1px solid #E5E5EB;
    border-radius: 10px;
    background: #FAFAFB;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 180ms cubic-bezier(0.4, 0, 0.2, 1),
                border-color 180ms;
}

.dash-day-task:hover {
    border-color: #D4D4DC;
    background: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.dash-day-task-title {
    display: block;
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12.5px;
    line-height: 1.3;
    color: #18181C;
}

.dash-day-task-sub {
    display: block;
    margin-top: 4px;
    font-family: 'Sofia Pro Regular', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    color: #7D7D86;
}

.dash-day-empty {
    border: 1px dashed #DFDFE6;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    color: #9A9AA3;
    font-family: 'Sofia Pro Regular', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
}

.dash-learning-board {
    padding: 12px;
}

.dash-learning-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.dash-learning-header h2 {
    margin: 0;
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: var(--text-lg, 18px);
    color: #1D1D22;
}

.dash-learning-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.dash-learning-card {
    border: none;
    background: #0f1013;
    border-radius: 12px;
    color: #fff;
    padding: 0;
    overflow: hidden;
    text-align: left;
    cursor: pointer;
}

.dash-learning-card:hover {
    transform: translateY(-1px);
}

.dash-learning-media {
    position: relative;
    height: 140px;
    background-size: cover;
    background-position: center;
}

.dash-learning-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.8));
}

.dash-learning-media--fallback {
    background: linear-gradient(140deg, #d7483f, #8d101a);
}

.dash-learning-placeholder {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dash-learning-overlay {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.dash-learning-title {
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dash-learning-pct {
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    opacity: 0.95;
}

.dash-learning-meta {
    padding: 10px 10px 12px;
    background: #101115;
}

.dash-learning-bar {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.dash-learning-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #DD1938;
}

.dash-learning-footer {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-family: 'Sofia Pro Regular', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.dash-learning-resume {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    color: #121216;
    border-radius: 999px;
    padding: 5px 10px;
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
}

.dash-learning-resume svg {
    width: 13px;
    height: 13px;
}

.dash-sidebar {
    min-width: 0;
    display: contents;
}

.dash-sidebar-card {
    background: #fff;
    border: 1px solid #E7E7EC;
    border-radius: 12px;
    padding: 14px;
}

.dash-progress-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dash-progress-ring-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
}

.dash-progress-ring {
    width: 70px;
    height: 70px;
}

.dash-progress-ring-value {
    transition: stroke-dashoffset 800ms cubic-bezier(0.4, 0, 0.2, 1);
}

.dash-progress-ring-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-progress-ring-pct {
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    color: #1D1D22;
}

.dash-greeting {
    margin: 0;
    text-align: left;
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    color: #1D1D22;
    line-height: 1.25;
}

.dash-progress-icons {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.dash-progress-icon {
    flex: 1;
    color: #B0B0B8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-progress-icon svg {
    width: 17px;
    height: 17px;
}

.dash-progress-divider {
    width: 1px;
    height: 22px;
    background: #E7E7EC;
}

.dash-number-row {
    display: flex;
    align-items: flex-start;
    margin-top: 6px;
}

.dash-number-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.dash-number-value {
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 31px;
    line-height: 1;
    color: #1A1A1F;
}

.dash-number-label {
    font-family: 'Sofia Pro Regular', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    color: #4F4F58;
}

.dash-number-divider {
    width: 1px;
    height: 32px;
    background: #E7E7EC;
}

.dash-sidebar-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.dash-sidebar-card-header h3 {
    margin: 0;
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: var(--text-2xl, 28px);
    color: #1D1D22;
}

.dash-cert-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-cert-item {
    border: 1px solid #EEEEF4;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dash-cert-name {
    font-family: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    color: #1F1F24;
}

.dash-cert-date {
    font-family: 'Sofia Pro Regular', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    color: #6F6F77;
}

.dash-empty-inline {
    font-family: 'Sofia Pro Regular', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #1F1F24;
    line-height: 1.45;
}

/* ===== SKELETON ===== */
.dash-skeleton-block {
    background: #F2F2F7;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.dash-skeleton-block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.56) 50%, transparent 100%);
    animation: dashSkeletonShimmer 1.3s ease-in-out infinite;
}

@keyframes dashSkeletonShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.dash-skeleton-hero {
    height: 170px;
}

.dash-skeleton-section {
    height: 520px;
}

.dash-skeleton-card-tall {
    height: 240px;
}

.dash-skeleton-card-short {
    height: 130px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
    .dash-home {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto auto;
    }

    .dash-topbar-search { grid-column: 1; grid-row: 1; }
    .dash-topbar-actions { grid-column: 1; grid-row: 2; }
    .dash-hero { grid-column: 1; grid-row: 3; }
    .dash-progress-card { grid-column: 1; grid-row: 4; }
    .dash-content-grid { grid-column: 1; grid-row: 5; }
    .dash-cert-card { grid-column: 1; grid-row: 6; }
}

@media (max-width: 980px) {
    .dash-content-grid {
        grid-template-columns: 1fr;
    }

    .dash-day-columns {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .dash-home {
        padding: 10px;
    }

    .dash-topbar-search {
        height: 38px;
        border-radius: 10px;
        padding: 0 10px;
    }

    .dash-topbar-search input {
        font-size: 13px;
    }

    .dash-topbar-username {
        display: none;
    }

    .dash-topbar-chevron {
        display: none;
    }

    .dash-topbar-user {
        padding: 4px;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        justify-content: center;
    }

    .dash-hero {
        min-height: 120px;
        padding: 18px;
    }

    .dash-hero-title {
        font-size: 24px;
    }

    .dash-hero-btn {
        font-size: 14px;
        padding: 8px 14px;
    }

    .dash-day-columns {
        grid-template-columns: 1fr;
    }

    .dash-day-column {
        border-right: none;
        border-bottom: 1px solid #F0F0F4;
    }

    .dash-day-column:last-child {
        border-bottom: none;
    }

    .dash-learning-grid {
        grid-template-columns: 1fr;
    }

    .dash-sidebar {
        grid-template-columns: 1fr;
    }

    .dash-sidebar-card-header h3 {
        font-size: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dash-progress-ring-value {
        transition-duration: 0.01ms !important;
    }

    .dash-skeleton-block::after {
        animation-duration: 0.01ms !important;
    }
}
