/* 
 * GG Edge Quantum Theme - Professional Financial Exchange
 * Esports Market Intelligence Platform
 * Version 1.0.0
 */

/* ========================================
   RESET & BASE STYLES
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0b0d;
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ========================================
   UTILITY CLASSES
======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: #d4af37;
    color: #0a0b0d;
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #1a1d29;
    color: #ffffff;
    border: 1px solid #30363d;
}

.btn-secondary:hover {
    background: #30363d;
}

.btn-outline {
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
}

.btn-outline:hover {
    background: #d4af37;
    color: #0a0b0d;
}

/* Status Indicators */
.positive {
    color: #00c851;
}

.negative {
    color: #ff4757;
}

.neutral {
    color: #ffc107;
}

/* ========================================
   MARKET STATUS BAR
======================================== */

.market-status-bar {
    background: #1a1d29;
    border-bottom: 1px solid #30363d;
    padding: 0.5rem 0;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
}

.status-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.market-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.live {
    background: #00c851;
}

.status-text {
    font-weight: 500;
    color: #00c851;
}

.market-time,
.market-volume {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.volume-label {
    color: #8b949e;
}

.volume-value {
    color: #ffffff;
    font-weight: 600;
}

.volume-change {
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========================================
   HEADER
======================================== */

.site-header {
    background: rgba(26, 29, 41, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #30363d;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand */
.nav-brand {
    flex-shrink: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 40px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Menu */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    opacity: 0.6;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1d29;
    border: 1px solid #30363d;
    border-radius: 4px;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background-color 0.2s ease;
}

.dropdown-link:hover {
    background: #30363d;
    color: #d4af37;
}

.dropdown-divider {
    border-top: 1px solid #30363d;
    margin: 0.5rem 0;
}

/* User Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-signin {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-signin:hover {
    color: #d4af37;
}

.nav-cta {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
}
/* Member Menu */
.member-menu {
    position: relative;
}

.member-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
}

.member-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #30363d;
}

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

.avatar-placeholder {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.9rem;
}

.member-dropdown {
    right: 0;
    left: auto;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin: 2px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    background: #1a1d29;
    border-top: 1px solid #30363d;
    padding: 1rem 0;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-item {
    border-bottom: 1px solid #30363d;
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 2rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.mobile-nav-link:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.mobile-nav-cta {
    display: block;
    margin: 1rem 2rem;
    padding: 0.75rem 1rem;
    background: #d4af37;
    color: #0a0b0d;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
}

.mobile-nav-divider {
    height: 1px;
    background: #30363d;
    margin: 1rem 0;
}

/* ========================================
   HOMEPAGE - TRADING FLOOR
======================================== */

.site-main {
    min-height: 100vh;
}

/* Hero Section */
.trading-floor-hero {
    background: linear-gradient(135deg, #0a0b0d 0%, #1a1d29 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.trading-floor-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23d4af37" fill-opacity="0.03"><rect width="1" height="1" x="29" y="29"/></g></svg>') repeat;
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #d4af37;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #8b949e;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(26, 29, 41, 0.8);
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    min-width: 180px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: #d4af37;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'IBM Plex Mono', monospace;
}

.stat-label {
    font-size: 0.85rem;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-change {
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
}

/* Market Overview */
.market-overview {
    padding: 4rem 0;
    background: #0a0b0d;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.market-card {
    background: #1a1d29;
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #30363d;
    transition: background 0.3s ease;
}

.market-card.primary::before {
    background: #d4af37;
}

.market-card:hover {
    transform: translateY(-3px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.card-status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-status.live {
    background: rgba(0, 200, 81, 0.2);
    color: #00c851;
    border: 1px solid #00c851;
}

.card-status.upcoming {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.card-status.active {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
    border: 1px solid #007bff;
}

.card-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-family: 'IBM Plex Mono', monospace;
}

.card-subtitle {
    color: #8b949e;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-metrics {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-value {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    font-size: 0.9rem;
}
/* Professional Features */
.professional-features {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0b0d 0%, #1a1d29 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #8b949e;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(26, 29, 41, 0.6);
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    background: rgba(26, 29, 41, 0.8);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-description {
    color: #8b949e;
    line-height: 1.6;
}

/* Intelligence Reports */
.intelligence-reports {
    padding: 4rem 0;
    background: #0a0b0d;
}

.section-action {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.section-action:hover {
    color: #b8941f;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.intelligence-post {
    background: #1a1d29;
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.intelligence-post:hover {
    transform: translateY(-3px);
    border-color: #d4af37;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.post-date {
    color: #8b949e;
    font-family: 'IBM Plex Mono', monospace;
}

.post-type {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.post-title {
    margin-bottom: 1rem;
}

.post-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.post-title a:hover {
    color: #d4af37;
}

.post-excerpt {
    color: #8b949e;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid #30363d;
}

.post-reading-time {
    color: #8b949e;
    font-family: 'IBM Plex Mono', monospace;
}

.post-confidence {
    color: #00c851;
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
}

/* Call to Action */
.professional-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1d29 0%, #d4af37 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0a0b0d;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(10, 11, 13, 0.8);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ========================================
   MARKET TICKER
======================================== */

.market-ticker {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1d29;
    border-top: 1px solid #30363d;
    padding: 0.75rem 0;
    z-index: 999;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: scroll-ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 3rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.ticker-symbol {
    color: #ffffff;
    font-weight: 600;
}

.ticker-change {
    font-weight: 600;
}

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

/* ========================================
   FOOTER
======================================== */

.site-footer {
    background: #1a1d29;
    border-top: 1px solid #30363d;
    padding: 3rem 0 1rem;
    margin-bottom: 60px; /* Account for ticker */
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-description {
    color: #8b949e;
    line-height: 1.6;
    max-width: 300px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    font-size: 0.9rem;
    color: #8b949e;
}

.contact-item a {
    color: #d4af37;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #8b949e;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #d4af37;
}
/* Footer Market Status */
.footer-market-status {
    background: rgba(10, 11, 13, 0.5);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.market-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.status-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.status-label {
    font-size: 0.75rem;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-value {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
}

.status-value.operational {
    color: #00c851;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #00c851;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Footer Legal */
.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #30363d;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.copyright {
    color: #8b949e;
    font-size: 0.85rem;
}

.legal-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #8b949e;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #d4af37;
}

.disclaimer {
    color: #8b949e;
    font-size: 0.8rem;
    text-align: right;
    font-style: italic;
}

/* ========================================
   MODAL
======================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1d29;
    border: 1px solid #30363d;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #30363d;
}

.modal-header h3 {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: #8b949e;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #ffffff;
}

.modal-body {
    padding: 1.5rem;
    color: #8b949e;
    line-height: 1.6;
}

.modal-body p {
    margin-bottom: 1rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #30363d;
    display: flex;
    justify-content: flex-end;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .status-container {
        padding: 0 1rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .main-nav {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .market-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .legal-left {
        flex-direction: column;
        gap: 1rem;
    }
    
    .disclaimer {
        text-align: center;
    }
    
    .market-status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 1rem;
        min-width: auto;
    }
    
    .card-metrics {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .ticker-item {
        margin-right: 2rem;
        font-size: 0.8rem;
    }
}
/* ========================================
   GHOST CONTENT CLASSES
======================================== */

.kg-width-wide {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.kg-width-full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.kg-card {
    margin: 1.5rem 0;
}

.kg-embed-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
