:root,
html[data-theme="light"],
body[data-theme="light"] {
    --bg-body: #ffffff;
    --bg-main: #ffffff;
    --bg-card: #ffffff;
    --bg-surface: #ffffff;
    --bg-header: #ffffff;
    --bg-topbar: #f0fdf4;
    --bg-ticker: #ffffff;
    --bg-nav: #005950;
    --bg-input: #ffffff;
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-light: #64748b;
    --text-heading: #0f172a;
    --border-color: #00A896;
    --border-light: rgba(0, 168, 150, 0.25);
    --border-subtle: #e2e8f0;
    --primary-color: #00A896;
    --primary-hover: #028090;
    --primary-glow: rgba(0, 168, 150, 0.25);
    --secondary-color: #028090;
    --accent-color: #f59e0b;
    --danger-color: #dc3545;
    --warning-color: #f59e0b;
    --success-color: #10b981;
    --info-color: #028090;
    --card-shadow: 0 4px 20px rgba(0, 168, 150, 0.12);
    --card-shadow-hover: 0 8px 30px rgba(0, 168, 150, 0.2);
    --btn-shadow: 0 2px 10px rgba(0, 168, 150, 0.25);
    --modal-backdrop: rgba(15, 23, 42, 0.6);
}

html[data-theme="dark"],
body[data-theme="dark"] {
    --bg-body: #032527;
    --bg-main: #032527;
    --bg-card: #ffffff;
    --bg-surface: #ffffff;
    --bg-header: #ffffff;
    --bg-topbar: #021a1b;
    --bg-ticker: #ffffff;
    --bg-nav: #005950;
    --bg-input: #ffffff;
    --text-main: #d97706;
    --text-muted: #b45309;
    --text-light: #ca8a04;
    --text-heading: #d97706;
    --border-color: #00A896;
    --border-light: rgba(0, 168, 150, 0.35);
    --border-subtle: #e2e8f0;
    --primary-color: #00A896;
    --primary-hover: #028090;
    --primary-glow: rgba(0, 168, 150, 0.35);
    --secondary-color: #028090;
    --accent-color: #f59e0b;
    --danger-color: #f87171;
    --warning-color: #fbbf24;
    --success-color: #34d399;
    --info-color: #22d3ee;
    --card-shadow: 0 4px 25px rgba(0, 0, 0, 0.45);
    --card-shadow-hover: 0 8px 35px rgba(0, 168, 150, 0.3);
    --btn-shadow: 0 2px 10px rgba(0, 168, 150, 0.35);
    --modal-backdrop: rgba(0, 0, 0, 0.75);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-body) !important;
    color: var(--text-main) !important;
    transition: background-color 0.25s ease, color 0.25s ease;
}

html[data-theme="dark"] body,
body[data-theme="dark"] {
    background-color: #032527 !important;
}

#root {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#container,
#container.container,
#container.container-fluid,
.container,
.container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}

.topbar {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    background: var(--bg-topbar) !important;
    border-bottom: 1px solid var(--border-light) !important;
    color: var(--text-main) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px !important;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.topbar__text {
    color: var(--text-muted) !important;
}

.announcement-ticker {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    background: var(--bg-ticker) !important;
    border-bottom: 1px solid var(--border-light) !important;
    padding: 8px 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
}

.ticker-inner {
    display: inline-block !important;
    white-space: nowrap !important;
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    animation: marquee-scroll 16s linear infinite !important;
}

.announcement-ticker:hover .ticker-inner {
    animation-play-state: paused !important;
}

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

.site-header {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 14px 16px !important;
    background: var(--bg-header) !important;
    border-bottom: 1px solid var(--border-light) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    position: relative !important;
}

.site-header__bg {
    display: none !important;
}

.site-header__inner,
.header-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    width: 100% !important;
    text-align: center !important;
    height: auto !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.site-header__brand {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.site-header__logo {
    display: block !important;
    margin: 0 auto !important;
    height: 55px !important;
    max-height: 55px !important;
    width: auto !important;
    object-fit: contain !important;
    transform: none !important;
    margin-top: 0 !important;
}

.header-top,
.header-bot {
    display: none !important;
}

.nav {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    background: var(--bg-nav) !important;
    border-bottom: 2px solid var(--border-color) !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.nav__row {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 8px 16px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__brand-container {
    display: flex;
    align-items: center;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}

.nav__brand-logo {
    height: 36px;
    width: auto;
}

.nav__brand-title {
    font-size: 20px;
    font-weight: 900;
    color: #FFE082 !important;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__list li a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.nav__list li a:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #FFE082 !important;
}

.nav__list li.nav-now a {
    background: #f59e0b !important;
    color: #042e30 !important;
    font-weight: 800 !important;
    text-shadow: none !important;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none !important;
    border: 1px solid #00A896;
    background: #00A896;
    color: #ffffff !important;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav__btn:hover {
    background: #028090;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.nav__btn--ghost {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
}

.nav__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #FFE082 !important;
}

.nav__btn--user {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.nav__btn--logout {
    border-color: var(--danger-color) !important;
    background: var(--danger-color) !important;
    color: #FFE082 !important;
}

.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    color: #FFE082 !important;
}

.mobile-nav-container {
    background: var(--bg-nav) !important;
}

.mobile-nav-container .nav__brand-title {
    color: #FFE082 !important;
}

.page-shell {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 8px !important;
    box-sizing: border-box !important;
    flex: 1 0 auto;
}

.content-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    padding: 24px 28px !important;
    box-shadow: var(--card-shadow) !important;
    box-sizing: border-box !important;
    color: var(--text-main) !important;
}

html[data-theme="dark"] .content-card,
body[data-theme="dark"] .content-card {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #d97706 !important;
}

.home-news,
.home-news__grid,
.home-news__list,
.home-journey,
.home-journey__inner,
.home-journey__col,
.home-journey__body,
.content-card .card,
.content-card .card-body,
.content-card .post-detail,
.content-card .dl-box,
.content-card .guide-section,
.content-card .panel,
.content-card .box,
.content-card .dl-shell,
.content-card .dl-hero,
.content-card .dl-panel,
.content-card .dl-guide,
.content-card .dl-version,
.content-card .table-responsive,
.content-card .forum-box,
.content-card .ranking-box {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    outline: none !important;
    width: 100% !important;
    max-width: 100% !important;
}

.home-news {
    margin-bottom: 24px !important;
    padding-bottom: 0 !important;
}

.home-news__head {
    margin-bottom: 16px;
}

.home-news__title {
    font-size: 24px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    margin: 0 0 6px 0 !important;
    letter-spacing: -0.3px;
}

html[data-theme="dark"] .home-news__title {
    color: #d97706 !important;
}

.home-news__sub {
    font-size: 14px !important;
    color: #475569 !important;
    margin: 0 !important;
}

html[data-theme="dark"] .home-news__sub {
    color: #b45309 !important;
}

.home-news__list-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0 !important;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--border-light) !important;
    font-weight: 800;
    font-size: 16px;
    color: var(--primary-color) !important;
}

.home-news__list-icon {
    font-size: 18px;
    color: var(--primary-color) !important;
}

.home-news__list-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color) !important;
}

.news-row {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 12px 6px !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border-light) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-decoration: none !important;
    color: var(--text-main) !important;
    transition: all 0.2s ease;
    width: 100% !important;
}

.news-row:last-child {
    border-bottom: none !important;
}

.news-row:hover {
    background-color: rgba(0, 168, 150, 0.08) !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    border-radius: 8px !important;
}

.news-row__meta {
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

.news-pill {
    display: inline-block;
    padding: 3px 8px;
    font-size: 11.5px;
    font-weight: 700;
    border-radius: 6px;
    background: var(--primary-color);
    color: #ffffff !important;
    white-space: nowrap !important;
}

.news-row__main {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

.news-row__title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a !important;
    margin-bottom: 4px;
    white-space: normal !important;
    word-break: break-word !important;
    overflow: visible !important;
    line-height: 1.45 !important;
}

html[data-theme="dark"] .news-row__title {
    color: #d97706 !important;
}

.news-row:hover .news-row__title {
    color: var(--primary-color) !important;
}

.news-row__desc {
    font-size: 13px;
    color: #475569 !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow: visible !important;
    line-height: 1.5 !important;
}

html[data-theme="dark"] .news-row__desc {
    color: #b45309 !important;
}

.news-row__chev {
    flex-shrink: 0 !important;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted) !important;
    transition: transform 0.2s ease;
    align-self: center !important;
    margin-left: 4px !important;
}

.news-row:hover .news-row__chev {
    transform: translateX(4px);
    color: var(--primary-color) !important;
}

.home-journey {
    border-top: 1px dashed var(--border-light) !important;
    padding-top: 24px !important;
    margin-top: 8px !important;
}

.home-journey__title {
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    margin-bottom: 12px !important;
}

html[data-theme="dark"] .home-journey__title {
    color: #d97706 !important;
}

.home-journey__body {
    font-size: 15px;
    line-height: 1.6;
    color: #334155 !important;
    margin-bottom: 20px;
}

html[data-theme="dark"] .home-journey__body {
    color: #475569 !important;
}

.home-journey__body p {
    margin-bottom: 8px;
}

.home-journey__footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-journey__cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.home-journey__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border: 2px solid var(--border-color);
}

.home-journey__btn--primary {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    box-shadow: var(--btn-shadow);
}

.home-journey__btn--primary:hover {
    background: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    transform: translateY(-2px);
}

.home-journey__btn--ghost {
    background: transparent !important;
    color: var(--primary-color) !important;
}

.home-journey__btn--ghost:hover {
    background: rgba(0, 168, 150, 0.1) !important;
    color: var(--primary-hover) !important;
    transform: translateY(-2px);
}

.home-journey__fineprint {
    font-size: 13px;
    color: var(--text-muted) !important;
    margin: 0;
}

.download-section {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 0 !important;
}

.reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
}

.loading-overlay {
    display: none !important;
}

.dl-box,
.guide-section {
    margin-bottom: 20px !important;
    padding: 16px 0 !important;
    border-bottom: 1px dashed var(--border-light) !important;
    width: 100% !important;
    max-width: 100% !important;
}

.dl-box:last-child,
.guide-section:last-child {
    border-bottom: none !important;
}

.dl-title,
.guide-title {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: var(--primary-color) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
}

.dl-desc {
    font-size: 14px !important;
    color: #334155 !important;
    margin-bottom: 12px !important;
    line-height: 1.5 !important;
}

html[data-theme="dark"] .dl-desc {
    color: #d97706 !important;
}

.dl-divider {
    margin: 12px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.dl-divider .label {
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    font-size: 13px !important;
}

.dl-divider .line {
    flex: 1 !important;
    height: 1px !important;
    background: var(--border-light) !important;
}

.dl-list {
    margin: 8px 0 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.dl-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 15px !important;
    color: #0f172a !important;
    padding: 8px 4px !important;
}

html[data-theme="dark"] .dl-item {
    color: #d97706 !important;
}

.dl-icon {
    width: 24px !important;
    height: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--primary-color) !important;
}

.dl-link {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
    font-size: 15px !important;
}

.dl-link:hover {
    color: var(--primary-hover) !important;
}

.step-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 12px !important;
    border-radius: 10px !important;
    background: #f8fafc !important;
    border: 1px solid var(--border-light) !important;
    color: #0f172a !important;
    margin-bottom: 8px !important;
}

html[data-theme="dark"] .step-item {
    background: #fefce8 !important;
    border-color: #fde047 !important;
    color: #d97706 !important;
}

.step-content strong {
    display: block !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 6px !important;
    font-size: 15px !important;
}

html[data-theme="dark"] .step-content strong {
    color: #b45309 !important;
}

.step-content em {
    color: #475569 !important;
    font-style: italic;
    display: block;
    margin-top: 4px;
}

.download-buttons .btn,
.download-btn,
.btn-success {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    padding: 6px 16px !important;
}

.download-buttons .btn:hover,
.download-btn:hover,
.btn-success:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    color: #ffffff !important;
}

.auth-topup {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.7) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1050 !important;
    padding: 16px !important;
}

.auth-topup.hide {
    display: none !important;
}

.site-footer,
.app-footer,
.site-footer__card,
.site-footer__grid,
html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .app-footer,
html[data-theme="dark"] .site-footer__card,
html[data-theme="dark"] .site-footer__grid {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    border-top: 2px solid var(--border-color, #00A896) !important;
    color: #0f172a !important;
    box-sizing: border-box !important;
}

.site-footer__card {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

.site-footer__grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    gap: 20px !important;
    padding: 24px 20px 28px !important;
    text-align: left !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
}

.site-footer__brand-title {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: var(--primary-color, #00A896) !important;
}

.site-footer__head {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: var(--primary-color, #00A896) !important;
    margin-bottom: 10px !important;
}

.site-footer__links a {
    display: block !important;
    color: #334155 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 6px !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.site-footer__links a:hover {
    color: var(--primary-color, #00A896) !important;
    text-decoration: underline !important;
}

.site-footer__disclaimer {
    color: #64748b !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
}

.site-footer__social-btn {
    display: inline-block !important;
    background: var(--primary-color, #00A896) !important;
    color: #ffffff !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-decoration: none !important;
}

.site-footer__social-btn:hover {
    background: var(--primary-hover, #028090) !important;
    color: #ffffff !important;
}

.bg-danger,
.btn-danger,
.badge-danger {
    color: #FFE082 !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
    color: #FFE082 !important;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-hover);
}

.form-control,
.form-select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"] {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
}

.form-control:focus,
.form-select:focus,
input:focus {
    border-color: var(--primary-hover) !important;
    box-shadow: 0 0 0 3px var(--primary-glow) !important;
    outline: none !important;
}

.modal-content {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 16px !important;
    box-shadow: var(--card-shadow) !important;
}

.modal-header,
.modal-footer {
    border-color: var(--border-light) !important;
}

.modal-title {
    color: #0f172a !important;
    font-weight: 800 !important;
}

.table {
    color: var(--text-main) !important;
    border-color: var(--border-light) !important;
}

.table th {
    background-color: #f8fafc !important;
    color: var(--text-heading) !important;
    border-bottom: 2px solid var(--border-color) !important;
}

.table td {
    border-color: var(--border-light) !important;
}

@media (max-width: 991.98px) {
    .nav__list,
    .nav__actions {
        display: none !important;
    }

    .page-shell {
        padding: 6px 4px !important;
    }

    .content-card {
        padding: 16px 14px !important;
        border-radius: 10px !important;
    }

    .home-news__title {
        font-size: 20px !important;
    }

    .home-journey__title {
        font-size: 18px !important;
    }
}

@media (max-width: 575.98px) {
    .page-shell {
        padding: 4px 2px !important;
    }

    .content-card {
        padding: 14px 10px !important;
        border-radius: 8px !important;
    }

    .news-row {
        gap: 8px !important;
        padding: 10px 2px !important;
        align-items: flex-start !important;
    }

    .news-pill {
        font-size: 10.5px !important;
        padding: 2px 5px !important;
    }

    .news-row__title {
        font-size: 13.5px !important;
        line-height: 1.4 !important;
        white-space: normal !important;
        word-break: break-word !important;
        margin-bottom: 3px !important;
    }

    .news-row__desc {
        font-size: 12px !important;
        line-height: 1.45 !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    .news-row__chev {
        font-size: 18px !important;
        margin-left: 2px !important;
    }
}
