/* SOMtube — somtube.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #0a0f1a; color: #e8eaf0; font-family: "Inter", sans-serif; font-size: 15px; line-height: 1.6; }
.red { color: #e8454a; }
.white { color: #fff; }

/* NAV */
.st-nav { background: #0a0f1a; border-bottom: 0.5px solid rgba(255,255,255,0.07); position: sticky; top: 0; z-index: 100; width: 100%; }
.st-nav-inner { display: flex; align-items: center; padding: 0 32px; height: 56px; }
.st-logo { font-family: "Space Grotesk", sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -0.5px; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 8px; margin-right: 36px; flex-shrink: 0; }
.st-logo:hover { color: #fff; text-decoration: none; }
.st-logo-play { color: #e8454a; font-size: 18px; }
.st-nav-links { display: flex; gap: 2px; flex: 1; overflow: hidden; }
.st-nav-link { font-size: 12px; color: rgba(255,255,255,0.45); padding: 6px 8px; border-radius: 6px; text-decoration: none; white-space: nowrap; font-weight: 400; transition: color 0.15s, background 0.15s; }
.st-nav-link:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.05); }
.st-nav-link.active { color: #fff; background: rgba(255,255,255,0.08); font-weight: 500; }
.st-search { display: flex; align-items: center; background: rgba(255,255,255,0.06); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 0 12px; height: 34px; gap: 8px; margin-left: auto; flex-shrink: 0; }
.st-search i { color: rgba(255,255,255,0.3); font-size: 14px; }
.st-search input { background: transparent; border: none; outline: none; color: #e8eaf0; font-size: 13px; width: 200px; font-family: "Inter", sans-serif; }
.st-search input::placeholder { color: rgba(255,255,255,0.3); }

/* HERO */
.st-hero { width: 100%; padding: 32px 32px 24px; border-bottom: 0.5px solid rgba(255,255,255,0.06); }
.st-hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.st-hero-left { flex: 1; }
.st-title { font-family: "Space Grotesk", sans-serif; font-size: 40px; font-weight: 700; letter-spacing: -1.5px; line-height: 1; margin-bottom: 14px; }
.st-lines { display: flex; flex-direction: column; gap: 5px; }
.st-line { font-size: 13px; line-height: 1.65; padding-left: 12px; border-left: 2px solid transparent; }
.st-line-1 { border-left-color: #e8454a; color: rgba(255,255,255,0.85); font-weight: 500; }
.st-line-2 { border-left-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.55); }
.st-line-3 { border-left-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.35); font-style: italic; }
.st-stats { display: flex; gap: 28px; flex-shrink: 0; align-items: center; }
.st-stat-num { font-family: "Space Grotesk", sans-serif; font-size: 28px; font-weight: 600; color: #fff; letter-spacing: -0.5px; line-height: 1; }
.st-stat-num span { color: #e8454a; font-size: 16px; }
.st-stat-label { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 4px; letter-spacing: 0.07em; text-transform: uppercase; font-weight: 500; }
.st-stat-divider { width: 0.5px; height: 36px; background: rgba(255,255,255,0.1); }

/* TICKER */
.st-ticker { width: 100%; border-bottom: 0.5px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.02); }
.st-ticker-inner { display: flex; align-items: center; gap: 12px; padding: 9px 32px; font-size: 12px; }
.st-ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: #2ecc71; flex-shrink: 0; animation: st-pulse 2s infinite; }
@keyframes st-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.st-ticker-label { color: rgba(255,255,255,0.3); }
.st-ticker-val { color: rgba(255,255,255,0.6); font-weight: 500; }
.st-ticker-sep { color: rgba(255,255,255,0.15); }
a.st-ticker-val { text-decoration: none; }
a.st-ticker-val:hover { color: #e8454a; }

/* MAIN */
.st-main { width: 100%; }

/* CATEGORY HEADER */
.st-cat-header { display: flex; align-items: center; gap: 12px; padding: 16px 32px; border-bottom: 0.5px solid rgba(255,255,255,0.06); }
.st-cat-back { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; }
.st-cat-back:hover { color: rgba(255,255,255,0.7); }
.st-cat-sep { color: rgba(255,255,255,0.2); }
.st-cat-title { font-family: "Space Grotesk", sans-serif; font-size: 18px; font-weight: 600; color: #fff; margin: 0; }
.st-cat-count { font-size: 12px; background: #e8454a; color: #fff; padding: 3px 10px; border-radius: 20px; }

/* VIDEO GRID */
.st-grid-wrap { padding: 24px 32px; }
.st-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.st-card { display: block; text-decoration: none; border-radius: 10px; overflow: hidden; background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.07); transition: border-color 0.15s, transform 0.15s; }
.st-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.st-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.st-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.35); opacity: 0; transition: opacity 0.15s; font-size: 2rem; color: #e8454a; }
.st-card:hover .st-play { opacity: 1; }
.st-card-body { padding: 10px 12px 12px; }
.st-card-title { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); line-height: 1.45; margin: 0 0 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.st-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.st-card-channel { font-size: 11px; color: rgba(255,255,255,0.4); }
.st-card-time { font-size: 11px; color: rgba(255,255,255,0.25); }
.st-card-cat { font-size: 10.5px; padding: 2px 8px; border-radius: 4px; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.4); }

/* EMPTY */
.st-empty { text-align: center; padding: 80px 32px; color: rgba(255,255,255,0.3); }
.st-empty i { font-size: 3rem; display: block; margin-bottom: 16px; }
.st-btn { display: inline-block; margin-top: 16px; padding: 8px 20px; background: #e8454a; color: #fff; border-radius: 6px; text-decoration: none; font-size: 13px; }

/* PAGINATION */
.st-pagination { margin-top: 32px; }
.st-pagination .pagination { gap: 4px; justify-content: center; display: flex; flex-wrap: wrap; }
.st-pagination .page-link { background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); border-radius: 6px !important; font-size: 13px; }
.st-pagination .page-link:hover { background: rgba(255,255,255,0.1); color: #fff; }
.st-pagination .page-item.active .page-link { background: #e8454a; border-color: #e8454a; color: #fff; }

/* FOOTER */
.st-footer { width: 100%; background: #060b14; border-top: 0.5px solid rgba(255,255,255,0.07); margin-top: 48px; }
.st-footer-inner { padding: 40px 32px 24px; }
.st-footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.st-footer-brand { font-family: "Space Grotesk", sans-serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.st-footer-blurb { font-size: 12.5px; line-height: 1.75; color: rgba(255,255,255,0.35); }
.st-footer-blurb strong { color: rgba(255,255,255,0.6); font-weight: 500; }
.st-footer-heading { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #e8454a; margin-bottom: 12px; }
.st-footer-links { list-style: none; }
.st-footer-links li { margin-bottom: 7px; }
.st-footer-links a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.15s; }
.st-footer-links a:hover { color: rgba(255,255,255,0.7); }
.st-footer-base { border-top: 0.5px solid rgba(255,255,255,0.06); padding-top: 20px; font-size: 11.5px; color: rgba(255,255,255,0.2); text-align: center; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .st-nav-links { display: none; }
    .st-hero-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .st-footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .st-nav-inner, .st-ticker-inner, .st-grid-wrap, .st-footer-inner { padding-left: 16px; padding-right: 16px; }
    .st-hero { padding: 20px 16px; }
    .st-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .st-footer-cols { grid-template-columns: 1fr; }
    .st-title { font-size: 30px; }
    .st-search input { width: 120px; }
}


/* BOOTSTRAP OVERRIDE */
.st-grid { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important; gap: 16px !important; }
.st-card { display: block !important; }
.st-thumb img { width: 100% !important; height: 100% !important; object-fit: cover !important; }


/* SHOW PAGE */
.st-show-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 32px; padding: 28px 32px; }
.st-show-player { margin-bottom: 20px; border-radius: 10px; overflow: hidden; }
.st-show-title { font-family: "Space Grotesk", sans-serif; font-size: 20px; font-weight: 600; color: #fff; line-height: 1.4; margin: 0 0 12px; }
.st-show-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.st-show-channel, .st-show-time { font-size: 13px; color: rgba(255,255,255,0.45); }
.st-show-yt { margin-left: auto; background: #e8454a; color: #fff; padding: 6px 14px; border-radius: 6px; text-decoration: none; font-size: 13px; font-weight: 500; }
.st-show-yt:hover { background: #c73535; color: #fff; }
.st-show-summary { background: rgba(20,184,166,0.1); border-left: 3px solid #14b8a6; padding: 12px 16px; border-radius: 0 8px 8px 0; margin-bottom: 16px; font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.st-show-summary strong { color: #14b8a6; }
.st-show-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 16px; }
.st-show-share { display: flex; gap: 8px; }
.st-share-btn { font-size: 13px; padding: 6px 14px; border-radius: 6px; border: 0.5px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); text-decoration: none; transition: all 0.15s; }
.st-share-btn:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.st-show-sidebar { border-left: 0.5px solid rgba(255,255,255,0.07); padding-left: 28px; }
.st-show-sidebar-title { font-family: "Space Grotesk", sans-serif; font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.st-related { display: flex; gap: 12px; margin-bottom: 16px; text-decoration: none; }
.st-related img { width: 120px; height: 68px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.st-related-info { flex: 1; }
.st-related-title { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.8); line-height: 1.4; margin: 0 0 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.st-related-meta { display: block; font-size: 11px; color: rgba(255,255,255,0.35); }
.st-show-more { display: block; text-align: center; margin-top: 16px; padding: 8px; background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 6px; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: all 0.15s; }
.st-show-more:hover { background: rgba(255,255,255,0.08); color: #fff; }
@media (max-width: 1024px) {
    .st-show-wrap { grid-template-columns: 1fr; }
    .st-show-sidebar { border-left: none; border-top: 0.5px solid rgba(255,255,255,0.07); padding-left: 0; padding-top: 24px; }
}
@media (max-width: 640px) {
    .st-show-wrap { padding: 16px; gap: 20px; }
}


/* PAGINATION DARK THEME OVERRIDE */
.st-pagination nav { color: rgba(255,255,255,0.5); }
.st-pagination .text-sm, .st-pagination p { color: rgba(255,255,255,0.4) !important; }
.st-pagination .font-medium { color: rgba(255,255,255,0.7) !important; }
.st-pagination span.bg-white,
.st-pagination a.bg-white {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.5) !important;
}
.st-pagination span.bg-gray-200 {
    background: #e8454a !important;
    border-color: #e8454a !important;
    color: #fff !important;
}
.st-pagination a:hover {
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
}
.st-pagination svg { fill: currentColor !important; }

/* SHOW PAGE ARROW ICON FIX */
.st-show-more i,
.st-show-more .bi-arrow-right {
    font-size: 13px !important;
    margin-left: 4px;
}


/* PAGINATION SVG ARROW FIX - FORCE COLOR */
.st-pagination svg,
.st-pagination svg path {
    fill: rgba(255,255,255,0.4) !important;
    width: 16px !important;
    height: 16px !important;
}
.st-pagination span[aria-disabled] svg,
.st-pagination span[aria-disabled] svg path {
    fill: rgba(255,255,255,0.15) !important;
}
.st-pagination a:hover svg,
.st-pagination a:hover svg path {
    fill: #fff !important;
}


/* FOOTER ROWS (replacing column layout) */
.st-footer-inner { padding: 28px 32px 20px; }
.ft-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 24px;
    padding: 14px 0;
    border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.ft-row:last-of-type { border-bottom: none; }
.ft-row-label {
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e8454a;
    flex-shrink: 0;
    width: 110px;
}
.ft-blurb-line {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    width: 100%;
}
.ft-brand-inline {
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.ft-blurb-line strong { color: rgba(255,255,255,0.65); font-weight: 500; }
.ft-links { display: flex; flex-wrap: wrap; gap: 8px 0; flex: 1; width: 100%; }
.ft-link {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    padding: 2px 14px;
    border-right: 0.5px solid rgba(255,255,255,0.1);
}
.ft-link:last-child { border-right: none; }
.ft-link:first-child { padding-left: 0; }
.ft-link:hover { color: #fff; }
.ft-base {
    padding-top: 16px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.2);
    text-align: center;
    width: 100%;
}
@media (max-width: 768px) {
    .ft-row { flex-direction: column; align-items: flex-start; gap: 8px; }
    .ft-row-label { width: auto; }
    .ft-link { border-right: none; padding: 4px 0; width: 100%; }
}


/* NEW INLINE PAGINATION */
.pg-root { padding: 8px 0 0; }
.pg-row { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.pg-info { font-size: 13px; color: rgba(255,255,255,0.4); flex-shrink: 0; }
.pg-info strong { color: rgba(255,255,255,0.7); font-weight: 600; }
.pg-colon { color: rgba(255,255,255,0.25); margin: 0 2px; }
.pg-nums { display: flex; gap: 4px; flex-wrap: wrap; }
.pg-btn {
    min-width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    border-radius: 6px; font-size: 13px; text-decoration: none; color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.08); padding: 0 8px;
}
.pg-btn:hover { background: rgba(255,255,255,0.09); color: #fff; }
.pg-btn.active { background: #e8454a; border-color: #e8454a; color: #fff; font-weight: 600; }
.pg-btn.arrow { color: rgba(255,255,255,0.3); }
.pg-btn.disabled { opacity: 0.3; pointer-events: none; }
.pg-btn.dots { background: transparent; border: none; }
@media (max-width: 640px) {
    .pg-row { flex-direction: column; align-items: flex-start; }
    .pg-colon { display: none; }
}

/* WELCOME VIDEO CARDS */
.st-welcome-videos { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; max-width: 280px; }
.st-welcome-card { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 8px; cursor: pointer; transition: all 0.15s; }
.st-welcome-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(232,69,74,0.4); }
.st-welcome-thumb { position: relative; width: 72px; height: 48px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: #0f1622; }
.st-welcome-thumb video { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; pointer-events: none; }
.st-welcome-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.st-welcome-play i { width: 24px; height: 24px; border-radius: 50%; background: #e8454a; color: #fff; font-size: 10px; display: flex; align-items: center; justify-content: center; padding-left: 1.5px; }
.st-welcome-text { display: flex; flex-direction: column; gap: 1px; }
.st-welcome-caption { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.85); }
.st-welcome-sub { font-size: 10.5px; color: rgba(255,255,255,0.35); }
/* VIDEO MODAL */
.st-video-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 1000; align-items: flex-start; justify-content: flex-start; padding: 0; }
.st-video-modal.open { display: flex; }
.st-video-modal-inner { background: #0a0f1a; border-radius: 12px; max-width: 320px; width: 320px; padding: 0; margin-top: 32px; margin-left: 32px; position: relative; border: 0.5px solid rgba(255,255,255,0.1); overflow: hidden; }
.st-video-modal-title { position: absolute; top: 10px; left: 14px; z-index: 2; font-family: "Space Grotesk", sans-serif; font-size: 13px; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.8); margin: 0; padding-right: 40px; }
#st-video-modal-player { max-height: 280px; height: 280px; width: 100%; max-width: 100%; object-fit: cover; display: block; border-radius: 0; }
.st-video-modal-close { position: absolute; top: 8px; right: 8px; z-index: 3; background: rgba(0,0,0,0.5); border: none; color: #fff; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.st-video-modal-close:hover { background: rgba(0,0,0,0.75); }

/* COMMENTARY */
.cm-wrap { margin-bottom: 16px; }
.cm-toggle-btn { display: flex; align-items: center; gap: 8px; background: rgba(20,184,166,0.08); border: 0.5px solid rgba(20,184,166,0.25); color: #14b8a6; padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: "Inter", sans-serif; width: 100%; text-align: left; }
.cm-toggle-btn:hover { background: rgba(20,184,166,0.14); }
.cm-toggle-btn .cm-chevron { margin-left: auto; transition: transform 0.2s; }
.cm-toggle-btn.open .cm-chevron { transform: rotate(180deg); }
.cm-badge-inline { font-size: 9.5px; background: rgba(20,184,166,0.2); color: #14b8a6; padding: 2px 7px; border-radius: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.cm-summary { background: rgba(20,184,166,0.08); border-left: 3px solid #14b8a6; padding: 14px 18px; border-radius: 0 8px 8px 0; margin-top: 10px; }
.cm-text { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.cm-feedback { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 0.5px solid rgba(255,255,255,0.08); margin-bottom: 12px; }
.cm-feedback-label { font-size: 12px; color: rgba(255,255,255,0.35); }
.cm-vote-btn { display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); padding: 5px 12px; border-radius: 6px; font-size: 12px; cursor: pointer; }
.cm-vote-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.cm-vote-btn.voted { background: rgba(232,69,74,0.15); border-color: #e8454a; color: #e8454a; }
.cm-interest { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 0.5px dashed rgba(255,255,255,0.1); }
.cm-interest-text { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; }
.cm-interest-link { flex-shrink: 0; font-size: 12px; font-weight: 600; color: #e8454a; background: rgba(232,69,74,0.1); border: 0.5px solid rgba(232,69,74,0.3); padding: 6px 14px; border-radius: 6px; text-decoration: none; white-space: nowrap; }
.cm-email-form { display: flex; gap: 8px; padding-top: 12px; border-top: 0.5px dashed rgba(255,255,255,0.1); }
.cm-email-input { flex: 1; background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.15); border-radius: 6px; padding: 6px 12px; font-size: 12px; color: #fff; font-family: "Inter", sans-serif; }
.cm-email-input::placeholder { color: rgba(255,255,255,0.3); }
.cm-email-submit { background: #e8454a; color: #fff; border: none; padding: 6px 16px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; }
.cm-email-thanks { font-size: 12px; color: #14b8a6; padding-top: 12px; border-top: 0.5px dashed rgba(255,255,255,0.1); }
.cm-pending-btn { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.03); border: 0.5px solid rgba(255,255,255,0.07); color: rgba(255,255,255,0.3); padding: 8px 16px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; }


/* WELCOME VIDEOS — side by side, above stats numbers */
.st-welcome-videos {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
    max-width: 100% !important;
}
.st-welcome-card {
    flex: 1 !important;
    max-width: 220px !important;
}
