/* ========================================
   DASHBOARD PAGE
   ======================================== */

/* Hero Section */
.dashboard-hero {
    padding: 140px 0 80px;
    background: var(--background);
    text-align: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.4;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 60px;
}

.hero-image-container {
    max-width: 1610px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: auto;
    max-width: min(750px, 100%);
    height: auto;
}

/* Bento Grid Section */
.bento-section {
    padding-bottom: 120px;
    background: var(--background);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Bento Cell Base Styles */
.bento-cell {
    background: #F5F5F7;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-cell:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Bento Cell Sizes */
.bento-cell-small {
    grid-column: span 1;
}

.bento-cell-medium {
    grid-column: span 2;
}

.bento-cell-large {
    grid-column: span 3;
}

/* Bento Content */
.bento-content {
    margin-bottom: 30px;
}

.bento-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.bento-text {
    font-size: 17px;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Bento Media */
.bento-media {
    flex: 1;
    display: flex;
    align-items: flex-end;
    margin-top: auto;
}

.bento-media img,
.bento-media video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.bento-video {
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 21px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-cell-small {
        grid-column: span 1;
    }

    .bento-cell-medium {
        grid-column: span 2;
    }

    .bento-cell-large {
        grid-column: span 2;
    }

    .bento-cell {
        padding: 32px;
    }

    .bento-title {
        font-size: 24px;
    }

    .bento-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .dashboard-hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .bento-section {
        padding: 80px 0;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-cell-small,
    .bento-cell-medium,
    .bento-cell-large {
        grid-column: span 1;
    }

    .bento-cell {
        padding: 24px;
    }

    .bento-title {
        font-size: 22px;
    }

    .bento-text {
        font-size: 15px;
    }

    .bento-content {
        margin-bottom: 20px;
    }
}
