/**
 * BIOINTE - PAGE SPECIFIC STYLES
 * Styles for Dashboard, Blog, Profiles, Onboarding, etc.
 */

/* ==========================================
   DASHBOARD - MAIN LAYOUT
   ========================================== */

.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    background: var(--bg-page);
}

.dashboard-sidebar {
    width: 260px;
    background: white;
    border-right: 1px solid var(--border-light);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 100;
    transition: transform 0.3s ease;
}

.dashboard-main {
    flex: 1;
    margin-left: 260px;
    padding: 24px;
}

.dashboard-header {
    background: white;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.dashboard-title {
    font-size: 28px;
    font-weight: var(--font-bold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.dashboard-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Dashboard Cards */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.stat-card-title {
    font-size: 14px;
    font-weight: var(--font-semibold);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--primary-orange);
}

.stat-card-value {
    font-size: 32px;
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-card-change {
    font-size: 14px;
    font-weight: var(--font-semibold);
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-card-change.positive {
    color: var(--success);
}

.stat-card-change.negative {
    color: var(--error);
}

/* ==========================================
   ONBOARDING - WIZARD STYLE
   ========================================== */

.onboarding-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 24px;
}

.onboarding-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.onboarding-header {
    padding: 40px 40px 0;
    text-align: center;
}

.onboarding-title {
    font-size: 32px;
    font-weight: var(--font-bold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.onboarding-description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Progress Steps */
.steps-progress {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    margin-bottom: 40px;
    position: relative;
}

.steps-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--border-light);
    z-index: 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    color: var(--text-tertiary);
    transition: all 0.3s ease;
}

.step-item.active .step-circle {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: var(--glow-orange);
}

.step-item.completed .step-circle {
    background: var(--success);
    border-color: transparent;
    color: white;
}

.step-label {
    font-size: 13px;
    font-weight: var(--font-semibold);
    color: var(--text-tertiary);
}

.step-item.active .step-label,
.step-item.completed .step-label {
    color: var(--text-primary);
}

/* Onboarding Body */
.onboarding-body {
    padding: 0 40px 40px;
}

.onboarding-step {
    display: none;
}

.onboarding-step.active {
    display: block;
    animation: slideUp 0.5s ease;
}

.step-section {
    margin-bottom: 32px;
}

.step-section-title {
    font-size: 18px;
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: 16px;
}

/* Profile Type Selection */
.profile-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.profile-type-card {
    padding: 24px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.profile-type-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.profile-type-card.selected {
    border-color: var(--primary-orange);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.profile-type-card.selected::before {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.profile-type-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
}

.profile-type-name {
    font-size: 16px;
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: 8px;
}

.profile-type-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Avatar Upload */
.avatar-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.avatar-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--border-light);
    position: relative;
}

.avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
}

.avatar-upload-btn {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: var(--font-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.avatar-upload-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Role Assignment (Collaborators only) */
.role-assignment-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 217, 163, 0.05) 100%);
    border: 2px dashed var(--border-medium);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.role-option {
    padding: 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.role-option:hover {
    border-color: var(--primary-purple);
}

.role-option.selected {
    border-color: var(--primary-purple);
    background: rgba(139, 92, 246, 0.1);
}

.role-name {
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: 4px;
}

.role-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Onboarding Actions */
.onboarding-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.btn-onboarding {
    flex: 1;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-weight: var(--font-semibold);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-onboarding-back {
    background: transparent;
    border: 2px solid var(--border-medium);
    color: var(--text-secondary);
}

.btn-onboarding-back:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.btn-onboarding-next,
.btn-onboarding-complete {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.btn-onboarding-next:hover,
.btn-onboarding-complete:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-onboarding-skip {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    text-decoration: underline;
    cursor: pointer;
}

/* ==========================================
   BLOG - LISTING PAGE
   ========================================== */

.blog-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-title {
    font-size: 48px;
    font-weight: var(--font-extrabold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.blog-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Post */
.blog-featured {
    margin-bottom: 60px;
}

.featured-post {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post:hover .featured-image img {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.featured-category {
    padding: 6px 12px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: var(--font-semibold);
}

.featured-date {
    color: var(--text-tertiary);
    font-size: 14px;
}

.featured-title {
    font-size: 32px;
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    font-size: 15px;
}

.author-role {
    font-size: 13px;
    color: var(--text-secondary);
}

.featured-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: var(--font-semibold);
    transition: all 0.3s ease;
}

.featured-read-more:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

/* Blog Grid */
.blog-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-weight: var(--font-semibold);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-orange);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: var(--font-bold);
    text-transform: uppercase;
}

.blog-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-card-date {
    color: var(--text-tertiary);
    font-size: 13px;
}

.blog-card-reading-time {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-tertiary);
    font-size: 13px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-card-author-name {
    font-size: 14px;
    font-weight: var(--font-semibold);
    color: var(--text-primary);
}

.blog-card-read-more {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--primary-orange);
    font-weight: var(--font-semibold);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-read-more:hover {
    gap: 8px;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: var(--font-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.pagination-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

/* ==========================================
   BLOG - SINGLE POST PAGE
   ========================================== */

.blog-post-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 24px;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-post-category {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.blog-post-title {
    font-size: 48px;
    font-weight: var(--font-extrabold);
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.blog-post-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-post-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-post-author-details {
    text-align: left;
}

.blog-post-author-name {
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    font-size: 15px;
}

.blog-post-date {
    font-size: 13px;
    color: var(--text-tertiary);
}

.blog-post-divider {
    color: var(--text-tertiary);
}

.blog-post-reading-time {
    color: var(--text-secondary);
    font-size: 14px;
}

.blog-post-featured-image {
    margin-bottom: 48px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.blog-post-featured-image img {
    width: 100%;
    height: auto;
}

.blog-post-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
}

.blog-post-content h2 {
    font-size: 32px;
    font-weight: var(--font-bold);
    margin-top: 48px;
    margin-bottom: 16px;
}

.blog-post-content h3 {
    font-size: 24px;
    font-weight: var(--font-bold);
    margin-top: 32px;
    margin-bottom: 12px;
}

.blog-post-content p {
    margin-bottom: 24px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.blog-post-content li {
    margin-bottom: 12px;
}

.blog-post-content blockquote {
    margin: 32px 0;
    padding: 24px;
    border-left: 4px solid var(--primary-orange);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: var(--radius-md);
    font-style: italic;
}

.blog-post-content code {
    padding: 2px 8px;
    background: var(--bg-hover);
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 16px;
}

.blog-post-content pre {
    background: #1F2937;
    color: #F9FAFB;
    padding: 24px;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 32px 0;
}

.blog-post-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Share Section */
.blog-post-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px 0;
    margin: 48px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.share-label {
    font-weight: var(--font-semibold);
    color: var(--text-secondary);
    margin-right: 8px;
}

.share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-2px);
}

/* Related Posts */
.related-posts {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-light);
}

.related-posts-title {
    font-size: 28px;
    font-weight: var(--font-bold);
    text-align: center;
    margin-bottom: 40px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* ==========================================
   PROFILE PAGES
   ========================================== */

.profile-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px;
}

.profile-header {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.profile-cover {
    height: 280px;
    background: var(--gradient-primary);
    position: relative;
}

.profile-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info-section {
    padding: 0 40px 32px;
    margin-top: -80px;
    position: relative;
}

.profile-avatar-large {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 6px solid white;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
}

.profile-name-section {
    margin-bottom: 16px;
}

.profile-name {
    font-size: 32px;
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: 8px;
}

.profile-headline {
    font-size: 18px;
    color: var(--text-secondary);
}

.profile-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

.profile-stat-item {
    display: flex;
    flex-direction: column;
}

.profile-stat-value {
    font-size: 24px;
    font-weight: var(--font-bold);
    color: var(--text-primary);
}

.profile-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.profile-actions {
    display: flex;
    gap: 12px;
}

.btn-profile {
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: var(--font-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-profile-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-profile-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-medium);
}

/* ==========================================
   RESPONSIVE - PAGES
   ========================================== */

@media (max-width: 1024px) {
    .dashboard-sidebar {
        transform: translateX(-100%);
    }
    
    .dashboard-sidebar.active {
        transform: translateX(0);
    }
    
    .dashboard-main {
        margin-left: 0;
    }
    
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-title {
        font-size: 36px;
    }
    
    .blog-post-title {
        font-size: 32px;
    }
    
    .steps-progress {
        padding: 0 20px;
    }
    
    .step-label {
        display: none;
    }
    
    .onboarding-card {
        border-radius: var(--radius-lg);
    }
    
    .onboarding-header,
    .onboarding-body {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-type-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .blog-post-share {
        flex-wrap: wrap;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}