:root {
    /* Brand Colors */
    --primary-color: #FF5A00;
    --primary-hover: #e04f00;
    --secondary-color: #0A1929;
    --accent-color: #F3F4F6;

    /* Text Colors */
    --text-main: #1F2937;
    --text-light: #6B7280;
    --text-white: #FFFFFF;

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Shadows & Radius */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius-md: 8px;
    --radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: #FFFFFF;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Header */
.site-header {
    background: white;
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    font-family: var(--font-heading);
}

.logo-area img {
    width: 234px;
    height: auto;
    max-height: 65px;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    gap: 24px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    padding: 8px 0;
}

.main-nav a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    padding: 12px 0;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: var(--accent-color);
}

.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Hero Section */
.hero {
    background-color: #0A1929;
    /* Darker blue as per mockup */
    background: linear-gradient(135deg, #05101C 0%, #0A1929 100%);
    color: white;
    padding: 100px 0 160px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.tag-label {
    display: inline-block;
    padding: 0 0 6px 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--primary-color);
    color: #cbd5e1;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -1.5px;
    font-weight: 800;
}

.hero h1 .highlight {
    color: var(--primary-color);
}

.hero p {
    font-size: 20px;
    color: #e2e8f0;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
}

/* Category Cards Section */
.category-cards-section {
    position: relative;
    margin-top: -80px;
    z-index: 20;
    padding-bottom: 60px;
}

.category-cards-grid {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 4px 20px;
    scrollbar-width: none;
    /* Firefox */
}

.category-cards-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.category-card {
    background: white;
    min-width: 120px;
    flex: 1;
    padding: 24px 12px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.05);
}

.category-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 4px;
}

.category-card label {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    line-height: 1.3;
    cursor: pointer;
}

/* EPAVANCE Banner */
.epavance-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    background: linear-gradient(135deg, #FF5A00 0%, #e04f00 50%, #0A1929 100%);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

.epavance-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 90, 0, 0.3);
}

/* Search Section */
.search-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary-color), #112240);
}

/* Content Hub */
.content-hub {
    padding: 60px 0;
    background: #FAFAFA;
}

.category-block {
    margin-bottom: 100px;
    scroll-margin-top: 120px;
    padding: 60px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
}

.category-title-group {
    flex: 1;
}

.category-header h2 {
    font-size: 36px;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.category-description {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
    max-width: 600px;
}

.category-bar {
    width: 4px;
    height: 28px;
    border-radius: 2px;
}

.view-all-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.2s;
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 90, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-all-link:hover {
    color: var(--primary-hover);
    background: rgba(255, 90, 0, 0.1);
    transform: translateX(2px);
}

.view-all-link svg {
    transition: transform 0.2s;
}

.view-all-link:hover svg {
    transform: translateX(2px);
}

/* Card Grids */
.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Knowledge Card Improvements */
.knowledge-card {
    position: relative;
}

.knowledge-card .card-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
}

.knowledge-card .card-image {
    position: relative;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.knowledge-card:hover .card-overlay {
    opacity: 1;
}

.knowledge-card .card-content h3 {
    transition: color 0.2s;
}

.knowledge-card:hover .card-content h3 {
    color: var(--primary-color);
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #F9FAFB;
    border-radius: var(--radius-md);
    border: 2px dashed #E5E7EB;
}

.empty-state p {
    color: var(--text-light);
    font-size: 16px;
    margin: 0;
}

.card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

.card-content {
    padding: 24px;
    border: 1px solid #E5E7EB;
    border-top: none;
}

.card-content h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    line-height: 1.4;
}

.card-content h3 a:hover {
    color: var(--primary-color);
}

.card-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    font-size: 12px;
    color: #9CA3AF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F3F4F6;
    padding-top: 12px;
    gap: 12px;
}

.card-meta .author,
.card-meta .date {
    display: flex;
    align-items: center;
}

.card-meta .date::before {
    content: '•';
    margin-right: 4px;
}

.card-meta .author,
.card-meta .date {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-meta .date::before {
    content: '•';
    margin-right: 4px;
}

/* Course Card Badge */
.course-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #16a34a;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.course-status {
    color: var(--primary-color);
    font-weight: 600;
}

/* Rating Badge */
.rating-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #f59e0b;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

/* Download Grid */
.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid #E5E7EB;
    transition: all 0.2s;
}

.download-item:hover {
    border-color: #10b981;
    box-shadow: var(--shadow-sm);
}

.download-icon {
    width: 48px;
    height: 48px;
    background: #ecfdf5;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-info {
    flex: 1;
}

.download-info h4 {
    font-size: 15px;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.download-meta {
    font-size: 12px;
    color: var(--text-light);
}

.download-action {
    width: 36px;
    height: 36px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.2s;
}

.download-item:hover .download-action {
    transform: scale(1.1);
}

/* News Featured Layout */
.news-featured-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
}

.featured-news .card-image {
    height: 280px;
}

.news-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-list-item {
    display: flex;
    padding: 16px;
    background: white;
    border-radius: var(--radius-md);
    border-left: 4px solid #f59e0b;
    transition: all 0.2s;
}

.news-list-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.news-list-content h4 {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 6px;
    line-height: 1.4;
}

.news-list-content span {
    font-size: 12px;
    color: var(--text-light);
}

/* Media Grid */
.media-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.media-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.2s;
}

.media-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.media-thumb {
    height: 140px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-play-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.media-card:hover .media-play-icon {
    transform: scale(1.1);
    background: var(--primary-color);
}

.media-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.media-info {
    padding: 16px;
}

.media-type {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ec4899;
    margin-bottom: 6px;
    display: block;
}

.media-info h4 {
    font-size: 14px;
    color: var(--secondary-color);
    line-height: 1.4;
    margin: 0;
}

/* Infographic Grid */
.infographic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.infographic-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.2s;
    border: 1px solid #E5E7EB;
}

.infographic-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #84cc16;
}

.infographic-preview {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infographic-info {
    padding: 16px;
}

.infographic-info h4 {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 4px;
    line-height: 1.3;
}

.infographic-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tool-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.2s;
    border: 1px solid #E5E7EB;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #6366f1;
}

.tool-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tool-info h4 {
    font-size: 15px;
    color: var(--secondary-color);
    margin-bottom: 6px;
}

.tool-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* EPAVANCE Banner Inline */
.epavance-banner-inline {
    display: block;
    background: linear-gradient(135deg, #0A1929 0%, #112240 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 60px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
}

.epavance-banner-inline:hover {
    transform: translateY(-3px);
}

.epavance-glow {
    position: absolute;
    right: -50px;
    top: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 90, 0, 0.3) 0%, transparent 70%);
}

.epavance-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.epavance-cta {
    background: var(--primary-color);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.epavance-banner-inline:hover .epavance-cta {
    background: var(--primary-hover);
}

/* EPAVANCE Banner Footer */
.epavance-banner-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px;
    background: linear-gradient(90deg, rgba(255, 90, 0, 0.1) 0%, rgba(255, 90, 0, 0.05) 50%, rgba(255, 90, 0, 0.1) 100%);
    border: 1px solid rgba(255, 90, 0, 0.2);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: border-color 0.2s;
}

.epavance-banner-footer:hover {
    border-color: rgba(255, 90, 0, 0.4);
}

/* Footer */
.main-footer {
    padding: 80px 0 40px;
    background: white;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
}

.footer-brand p {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--text-light);
    padding: 8px 0;
    display: block;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #9CA3AF;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ============================================
   OP-ED TEMPLATE STYLES
   ============================================ */

.oped-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, #0A1929 0%, #112240 100%);
    overflow: hidden;
}

.oped-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.oped-hero-placeholder {
    background: linear-gradient(135deg, #0A1929 0%, #1e3a5f 50%, #112240 100%);
}

.oped-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(10, 25, 41, 0.95) 0%,
            rgba(10, 25, 41, 0.7) 40%,
            rgba(10, 25, 41, 0.3) 100%);
    z-index: 2;
}

.oped-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 20px;
}

.oped-hero-content {
    max-width: 800px;
}

.oped-meta-tags {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.oped-category-tag {
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.oped-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.oped-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.oped-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.oped-author-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.oped-author-name {
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.oped-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Op-Ed Content Layout */
.oped-content-section {
    padding: 60px 0 80px;
    background: #FAFAFA;
}

.oped-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.oped-main-content {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.oped-article-body {
    padding: 48px;
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-main);
}

.oped-article-body p {
    margin-bottom: 24px;
}

.oped-article-body h2 {
    font-size: 28px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.oped-article-body h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: var(--secondary-color);
}

.oped-article-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 16px 24px;
    margin: 32px 0;
    background: #FFF8F5;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
}

.oped-article-body ul {
    margin-bottom: 24px;
    padding-left: 24px;
    list-style: disc;
}

.oped-article-body li {
    margin-bottom: 8px;
}

/* Op-Ed Assets */
.oped-asset {
    border-top: 1px solid #E5E7EB;
    padding: 32px 48px 40px;
}

.oped-asset-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.oped-asset-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFECE3 100%);
    color: var(--primary-color);
}

.oped-asset-icon.oped-icon-video {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    color: #2563EB;
}

.oped-asset-icon.oped-icon-quiz {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    color: #16A34A;
}

.oped-asset-header h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin: 0;
}

.oped-placeholder-infographic {
    background: linear-gradient(135deg, #FFF5F0, #FFECE3);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.oped-infographic-link {
    display: block;
    position: relative;
}

.oped-expand-hint {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 25, 41, 0.85);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.3s;
}

.oped-infographic-link:hover .oped-expand-hint {
    opacity: 1;
}

.oped-video-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.oped-quiz-wrapper {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid #E2E8F0;
}

.quiz-question h4 {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quiz-option {
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    background: white;
}

.quiz-option:hover {
    border-color: var(--primary-color);
    background: #FFF5F0;
}

/* Author Bio */
.oped-author-bio-section {
    border-top: 1px solid #E5E7EB;
    padding: 40px 48px;
    background: #F8FAFC;
}

.oped-bio-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.oped-bio-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.oped-bio-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 600;
}

.oped-bio-info h4 {
    font-size: 22px;
    color: var(--secondary-color);
    margin: 0;
}

.oped-bio-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Sidebar */
.oped-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.oped-sidebar-block {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.oped-sidebar-block h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.oped-audio-summary {
    background: linear-gradient(135deg, #0A1929 0%, #112240 100%);
}

.oped-audio-summary h4 {
    color: white;
}

.oped-share-buttons {
    display: flex;
    gap: 12px;
}

.oped-share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F4F6;
    color: var(--text-main);
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.oped-share-btn:hover {
    transform: translateY(-2px);
}

.oped-share-twitter:hover {
    background: #000;
    color: white;
}

.oped-share-linkedin:hover {
    background: #0077B5;
    color: white;
}

.oped-share-email:hover {
    background: var(--primary-color);
    color: white;
}

.oped-share-copy:hover,
.oped-share-copy.copied {
    background: #10B981;
    color: white;
}

.oped-related-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
}

.oped-related-item:last-child {
    border-bottom: none;
}

.oped-related-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #E5E7EB, #D1D5DB);
    flex-shrink: 0;
}

.oped-related-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.oped-related-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
}

.oped-related-date {
    font-size: 12px;
    color: var(--text-light);
}

/* Navigation */
.oped-navigation {
    background: white;
    border-top: 1px solid #E5E7EB;
    padding: 40px 0;
}

.oped-nav-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.oped-nav-link {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: #F8FAFC;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.2s;
}

.oped-nav-link:hover {
    background: #F1F5F9;
    transform: translateY(-2px);
}

.oped-nav-prev {
    text-align: left;
}

.oped-nav-next {
    text-align: right;
    margin-left: auto;
}

.oped-nav-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.oped-nav-next .oped-nav-label {
    justify-content: flex-end;
}

.oped-nav-title {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.4;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1200px) {
    .quick-nav-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1024px) {
    .quick-nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .card-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-grid-4,
    .infographic-grid,
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-featured-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .oped-layout {
        grid-template-columns: 1fr;
    }

    .oped-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .quick-nav-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .quick-nav-card {
        padding: 12px 8px;
    }

    .quick-nav-card span {
        font-size: 10px;
    }

    .card-grid-3 {
        grid-template-columns: 1fr;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }

    .media-grid-4,
    .infographic-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .epavance-banner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .epavance-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .oped-title {
        font-size: 32px;
    }

    .oped-article-body {
        padding: 24px;
    }

    .oped-asset {
        padding: 24px;
    }

    .oped-sidebar {
        grid-template-columns: 1fr;
    }

    .oped-nav-wrapper {
        grid-template-columns: 1fr;
    }

    .main-nav ul {
        gap: 12px;
    }

    .main-nav a {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 100px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .quick-nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .tool-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Portal Cards Section */
.portal-section {
    position: relative;
    margin-top: -60px;
    z-index: 10;
    padding-bottom: 80px;
}

.portal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.portal-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    border: 1px solid #F1F5F9;
    overflow: hidden;
}

.portal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
}

.portal-card.Buyer::before {
    background: var(--secondary-color);
}

.portal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 90, 0, 0.2);
}

.portal-card.Buyer:hover {
    border-color: rgba(10, 25, 41, 0.2);
}

.portal-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #FFF5F0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.portal-card:hover .portal-icon {
    transform: scale(1.1) rotate(5deg);
}

.portal-card.Buyer .portal-icon {
    background: #F0F9FF;
    color: var(--secondary-color);
}

.portal-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.portal-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.portal-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 15px;
}

.feature-list {
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-main);
}

.feature-list li svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.portal-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.portal-link svg {
    transition: transform 0.3s ease;
}

.portal-link:hover {
    color: var(--primary-hover);
    gap: 12px;
}

.portal-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   MOSAIC / BENTO GRID STYLES
   ============================================ */

.bento-grid-news {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 220px);
    gap: 24px;
}

.bento-cell-featured {
    grid-row: 1 / -1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.bento-cell-featured:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.bento-cell-featured img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.5s ease;
}

.bento-cell-featured:hover img {
    transform: scale(1.05);
}

.bento-content-overlay {
    position: relative;
    z-index: 2;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    width: 100%;
}

.bento-cell-side {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
}

.bento-cell-side:hover {
    border-color: var(--primary-color);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

/* Reviews Asymmetric Grid */
.bento-grid-reviews {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
}

.review-card-wide {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.review-card-wide:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-card-wide .review-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.review-card-standard {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.review-card-standard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Export Opportunities "Poster" Grid */
.bento-grid-opinions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.opinion-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.opinion-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.opinion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-color);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #E5E7EB;
    margin: 0 auto 20px;
    border: 4px solid #F9FAFB;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    object-fit: cover;
}

@media (max-width: 1024px) {

    .bento-grid-news,
    .bento-grid-reviews,
    .bento-grid-opinions {
        grid-template-columns: 1fr 1fr;
    }

    .bento-grid-news {
        grid-template-rows: auto;
    }

    .bento-cell-featured {
        grid-row: auto;
        grid-column: 1 / -1;
        min-height: 300px;
    }
}

@media (max-width: 768px) {

    .bento-grid-news,
    .bento-grid-reviews,
    .bento-grid-opinions {
        grid-template-columns: 1fr;
    }
}

/* MOBILE OVERRIDES */
@media (max-width: 768px) {
    h1 {
        font-size: 32px !important;
    }
}

/* MOBILE OVERRIDES START */
@media (max-width: 768px) {
    .site-header {
        height: 70px !important;
        position: fixed !important;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .site-logo {
        width: 140px !important;
    }

    .main-nav {
        position: fixed !important;
        top: 70px !important;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        transform: translateX(100%);
        transition: 0.3s;
        z-index: 999;
        display: block !important;
        padding: 40px 24px;
    }

    .main-nav.active {
        transform: translateX(0) !important;
    }

    .main-nav ul {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .main-nav ul li a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        font-size: 18px;
    }

    .header-actions {
        display: none !important;
    }

    .hero {
        padding: 40px 0 !important;
        text-align: center !important;
    }

    .hero h1 {
        font-size: 32px !important;
    }

    .hero p {
        font-size: 15px !important;
    }

    .hero-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .category-cards-grid {
        justify-content: flex-start !important;
        padding: 0 10px 20px !important;
    }

    .category-card {
        min-width: 110px !important;
    }

    .portal-grid {
        grid-template-columns: 1fr !important;
    }

    .content-hub h2 {
        font-size: 26px !important;
    }

    .category-block {
        padding: 20px !important;
        margin-bottom: 30px !important;
    }

    .bento-grid-news,
    .bento-grid-reviews,
    .bento-grid-opinions,
    .infographic-grid {
        grid-template-columns: 1fr !important;
    }

    .bento-cell-featured {
        min-height: 250px !important;
    }
}


@media (max-width: 768px) {
    .main-nav {
        display: none !important;
    }

    .main-nav.active {
        display: block !important;
    }
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #0A1929;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.mobile-menu-toggle svg {
    width: 30px;
    height: 30px;
}

.mobile-menu-toggle .hidden {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}

.site-logo {
    width: 234px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .site-logo {
        width: 182px !important;
    }
}

/* REFINING IMPORTANT FLAGS */
@media (max-width: 768px) {
    .search-section form {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .hero h1 {
        font-size: 30px !important;
    }

    .hero p {
        font-size: 15px !important;
    }

    .ad-section .epavance-banner {
        flex-direction: column !important;
        text-align: center !important;
    }

    .ad-section .epavance-banner div {
        justify-content: center !important;
    }
}

/* UTILITY GRIDS */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero h1 {
        font-size: 34px !important;
    }
}

/* PAGE SPECIFIC MOBILE REFINEMENTS */
@media (max-width: 768px) {

    .hcp-hero,
    .Buyer-hero {
        min-height: 350px !important;
        padding: 60px 0 !important;
    }

    .hcp-register-form,
    .Buyer-subscribe-form {
        flex-direction: column !important;
        width: 100% !important;
    }

    .hcp-register-form input,
    .hcp-register-form select,
    .Buyer-subscribe-form input {
        width: 100% !important;
    }

    .topics-container {
        padding: 32px 16px !important;
    }

    .topics-grid {
        gap: 32px !important;
    }

    .service-grid>div {
        padding: 24px 16px !important;
    }

    .resource-grid>div {
        flex-direction: column !important;
        padding: 24px !important;
    }
}

/* MORE RESPONSIVE UTILITIES */
.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.max-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.margin-b-60 {
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0 !important;
    }

    .margin-b-60 {
        margin-bottom: 30px !important;
    }

    .container h2 {
        font-size: 28px !important;
    }

    .container p {
        font-size: 16px !important;
    }
}

/* OP-ED & MISC RESPONSIVENESS */
@media (max-width: 1024px) {
    .oped-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .oped-sidebar {
        position: static !important;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .oped-sidebar {
        grid-template-columns: 1fr !important;
    }

    .premium-subscribe {
        padding: 40px 20px !important;
        text-align: center !important;
    }

    .premium-subscribe h2 {
        font-size: 28px !important;
    }

    .subscribe-form {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .subscribe-form input {
        width: 100% !important;
    }
}

/* SOCIAL LINKS HOVER */
.social-link:hover {
    opacity: 1 !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .header-social-links {
        display: none !important;
    }

    .main-nav.active+.header-actions .header-social-links {
        display: flex !important;
        margin: 20px 0;
        justify-content: center;
    }
}

/* Category Card Animations (Phase 7) */
.sla-category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sla-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color) !important;
}

/* Ensure images inside cards scale slightly or have effect if needed */
.sla-category-card:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* --- MOBILE RESPONSIVENESS UPGRADES --- */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Layout Overrides */
@media (max-width: 992px) {

    /* Menu Active State */
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: white;
        padding: 40px 20px;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }

    .main-nav a {
        font-size: 20px;
        font-weight: 700;
    }

    .header-actions {
        display: none;
    }

    .header-actions.active {
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 30px;
        background: white;
        z-index: 1002;
        border-top: 1px solid #eee;
    }

    /* Fix Horizontal Overflow */
    body,
    html {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }

    /* Discovery Suite Mobile Stack */
    .discovery-suite-section .container .longevity-panel {
        padding: 24px !important;
    }

    /* Force grids to single column */
    .discovery-top-row,
    .discovery-mid-row,
    .discovery-bottom-row {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Hero Text Sizing */
    .hero h1 {
        font-size: 40px !important;
        line-height: 1.1 !important;
    }

    .hero p {
        font-size: 18px !important;
    }

    /* Inner Grids - 2 columns on mobile */
    .discovery-inner-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Make buttons full width */
    .discovery-bottom-row button {
        width: 100% !important;
        height: 60px !important;
    }
}

/* Tag Colors */
.oped-tag:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.tag-c-1 {
    background-color: #f1f5f9;
    color: #475569;
}

.tag-c-1:hover {
    background-color: #e2e8f0;
}

.tag-c-2 {
    background-color: #ecfdf5;
    color: #059669;
}

.tag-c-2:hover {
    background-color: #d1fae5;
}

.tag-c-3 {
    background-color: #eff6ff;
    color: #2563eb;
}

.tag-c-3:hover {
    background-color: #dbeafe;
}

.tag-c-4 {
    background-color: #fff7ed;
    color: #ea580c;
}

.tag-c-4:hover {
    background-color: #ffedd5;
}

.tag-c-5 {
    background-color: #fdf2f8;
    color: #db2777;
}

.tag-c-5:hover {
    background-color: #fce7f3;
}