:root {
--bg: #f4f7fb;
--surface: #ffffff;
--surface-2: #eef3f8;
--text: #122033;
--muted: #66778c;
--line: #dbe4ef;
--primary: #6c2bd9;
--primary-dark: #4b1ca1;
--accent: #0ea5e9;
--accent-2: #f97316;
--success: #16a34a;
--shadow: 0 18px 45px rgba(17, 28, 45, .08);
--radius: 22px;
--radius-sm: 14px;
--container: 1320px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
background:
radial-gradient(circle at top left, rgba(108,43,217,.08), transparent 25%),
radial-gradient(circle at top right, rgba(14,165,233,.08), transparent 22%),
var(--bg);
color: var(--text);
font-family: 'Baloo 2', sans-serif !important;
line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input { font: inherit; }
.container {
width: min(calc(100% - 32px), var(--container));
margin: 0 auto;
}
.site-shell { overflow-x: clip; }
.top-strip {
background: linear-gradient(90deg, #0f172a, #1e293b);
color: #fff;
font-size: 15px;
}
.top-strip-inner {
min-height: 44px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}
.top-strip-left,
.top-strip-right { display: flex; align-items: center; gap: 16px; }
.live-badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 7px 12px;
border-radius: 999px;
background: rgba(249,115,22,.16);
color: #fff;
font-weight: 700;
letter-spacing: .04em;
text-transform: uppercase;
}
.live-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: #ff4d4d;
box-shadow: 0 0 0 6px rgba(255,77,77,.15);
}
.breaking-ticker-wrap {
overflow: hidden;
position: relative;
flex: 1;
min-width: 0;
}
.breaking-ticker {
display: inline-flex;
gap: 45px;
white-space: nowrap;
will-change: transform;
animation: tickerMove 90s linear infinite;
}
.breaking-ticker-wrap:hover .breaking-ticker { animation-play-state: paused; }
.breaking-ticker span { opacity: .92; }
.breaking-ticker span::before {
content: "•";
color: var(--accent-2);
margin-right: 10px;
}
@keyframes tickerMove {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
.site-header {
position: sticky;
top: 0;
z-index: 50;
backdrop-filter: blur(15px);
background: rgba(244,247,251,.78);
border-bottom: 1px solid rgba(219,228,239,.8);
}
.header-main {
display: grid;
grid-template-columns: 280px 1fr auto;
align-items: center;
gap: 18px;
padding: 16px 0;
}
.branding {
display: flex;
align-items: center;
gap: 14px;
}
.brand-mark {
width: 52px;
height: 52px;
border-radius: 18px;
background: linear-gradient(135deg, var(--primary), var(--accent));
box-shadow: 0 16px 34px rgba(108,43,217,.25);
position: relative;
}
.brand-mark::before,
.brand-mark::after {
content: "";
position: absolute;
inset: 12px;
border-radius: 12px;
background: rgba(255,255,255,.18);
}
.brand-mark::after {
inset: auto 12px 12px 12px;
height: 12px;
border-radius: 999px;
background: #fff;
}
.brand-text strong {
display: block;
font-size: 28px;
line-height: 1;
letter-spacing: -.03em;
}
.brand-text span {
display: block;
color: var(--muted);
font-size: 13px;
margin-top: 3px;
}
.header-center {
display: flex;
align-items: center;
gap: 14px;
min-width: 0;
}
.header-search {
position: relative;
flex: 1;
}
.header-search input {
width: 100%;
height: 50px;
border: 1px solid var(--line);
border-radius: 999px;
background: rgba(255,255,255,.92);
padding: 0 56px 0 18px;
outline: none;
}
.header-search button {
position: absolute;
right: 6px;
top: 6px;
width: 38px;
height: 38px;
border: 0;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary), var(--accent));
color: #fff;
cursor: pointer;
}
.header-actions {
display: flex;
align-items: center;
gap: 10px;
}
.action-btn,
.menu-toggle {
width: 46px;
height: 46px;
border-radius: 16px;
border: 1px solid var(--line);
background: rgba(255,255,255,.9);
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: var(--text);
}
.menu-toggle { display: none; }
.nav-row {
padding-bottom: 16px;
}
.primary-nav ul {
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
}
.primary-nav li { margin: 0; }
.primary-nav a {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 4px 18px;
font-size: 18px;
border-radius: 999px;
color: #334155;
font-weight: 600;
transition: .25s ease;
}
.primary-nav .current-menu-item > a,
.primary-nav a:hover {
color: #fff;
background: linear-gradient(135deg, var(--primary), var(--accent));
box-shadow: 0 10px 24px rgba(108,43,217,.18);
}
.mobile-panel {
position: fixed;
inset: 0 auto 0 0;
width: min(360px, 90vw);
background: #fff;
transform: translateX(-100%);
transition: .28s ease;
z-index: 80;
box-shadow: 24px 0 50px rgba(0,0,0,.14);
padding: 18px;
overflow-y: auto;
}
.mobile-panel.active { transform: translateX(0); }
.mobile-backdrop {
position: fixed;
inset: 0;
background: rgba(2,6,23,.45);
opacity: 0;
visibility: hidden;
transition: .28s ease;
z-index: 70;
}
.mobile-backdrop.active { opacity: 1; visibility: visible; }
.mobile-panel-head {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 18px;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 10px; }
.mobile-nav a {
display: block;
padding: 14px 16px;
border-radius: 14px;
background: var(--surface-2);
font-weight: 700;
}
.mobile-search { margin-bottom: 18px; }
.mobile-search input {
width: 100%;
height: 48px;
border-radius: 14px;
border: 1px solid var(--line);
padding: 0 15px;
}
main.site-main { padding: 28px 0 40px; }
.hero-grid {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr;
gap: 22px;
margin-bottom: 26px;
}
.hero-main,
.glass-card,
.news-block,
.home-ad-card,
.sidebar-widget,
.story-card,
.archive-card,
.single-card,
.comment-respond,
.comment-list,
.search-empty {
background: rgba(255,255,255,.88);
border: 1px solid rgba(255,255,255,.65);
box-shadow: var(--shadow);
border-radius: var(--radius);
}
.hero-main {
position: relative;
overflow: hidden;
}
.hero-main .hero-thumb,
.hero-side-card .hero-thumb,
.story-card .story-thumb,
.archive-card .archive-thumb,
.single-featured img { height: 100%; object-fit: cover; width: 100%; }
.hero-main::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(90deg, rgba(2,6,23,.82) 0%, rgba(2,6,23,.48) 44%, rgba(2,6,23,.16) 100%);
}
.hero-main-content {
position: absolute;
inset: auto auto 0 0;
z-index: 2;
background: linear-gradient(0deg, rgba(0, 0, 0, 1) 34%, rgba(0, 0, 0, 0) 100%, rgba(237, 221, 83, 1) 100%);
padding: 30px 30px 10px;
color: #fff;
}
.meta-pill {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 9px 14px;
border-radius: 999px;
background: rgba(255,255,255,.12);
backdrop-filter: blur(8px);
font-size: 12px;
text-transform: uppercase;
letter-spacing: .08em;
margin-bottom: 16px;
font-weight: 700;
}
.hero-main h1 {
margin: 0 0 14px;
font-size: clamp(30px, 2vw, 56px);
line-height: 1.4;
}
.hero-main p {
margin: 0 0 22px;
font-size: 17px;
color: rgba(255,255,255,.88);
}
.hero-cta {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 22px;
border-radius: 999px;
background: linear-gradient(135deg, var(--accent-2), #ef4444);
color: #fff;
font-weight: 700;
}
.hero-side {
display: grid;
gap: 22px;
}
.hero-side-card {
position: relative;
overflow: hidden;
border-radius: var(--radius);
box-shadow: var(--shadow);
}
.hero-side-card::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(2,6,23,.08) 0, rgba(2,6,23,.86) 100%);
}
.hero-side-content {
position: absolute;
padding: 20px;
background: linear-gradient(0deg, rgba(0, 0, 0, 1) 34%, rgba(0, 0, 0, 0) 100%, rgba(237, 221, 83, 1) 100%);
bottom: 0;
color: #fff;
z-index: 2;
}
.hero-side-content h3 {
margin: 0;
font-size: 22px;
line-height: 1.4;
font-weight: 400;
}
.home-section {
margin-bottom: 26px;
}
.section-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
margin-bottom: 18px;
}
.section-head h2,
.section-head h1 {
margin: 0;
font-size: clamp(24px, 3vw, 34px);
line-height: 1.05;
letter-spacing: -.03em;
}
.section-head p {
margin: 6px 0 0;
color: var(--muted);
}
.section-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--primary);
font-weight: 700;
}
.curated-grid {
display: grid;
grid-template-columns: 1.2fr 1fr .8fr;
gap: 22px;
}
.glass-card { padding: 22px; }
.lead-story {
display: grid;
gap: 16px;
}
.lead-story-image {
border-radius: 20px;
overflow: hidden;
aspect-ratio: 16 / 10;
}
.story-meta {
color: var(--muted);
font-size: 13px;
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.story-title-big {
font-size: 25px;
line-height: 1.3;
letter-spacing: -.03em;
margin: 0;
}
.story-title-mid {
font-size: 19px;
line-height: 1.4;
letter-spacing: -.02em;
margin: 7px 0;
}
.story-title-sm {
font-size: 18px;
margin: 0;
}
.story-excerpt { margin: 0; color: var(--muted); }
.story-stack {
display: grid;
gap: 16px;
}
.story-compact {
display: grid;
grid-template-columns: 112px 1fr;
gap: 14px;
align-items: center;
padding: 5px 0;
border-radius: 18px;
background: #fff;
}
.story-compact-thumb {
width: 112px;
height: 90px;
border-radius: 14px;
overflow: hidden;
}
.story-compact-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mini-list { display: grid; gap: 14px; }
.mini-list li {
padding-bottom: 14px;
border-bottom: 1px solid var(--line);
}
.mini-list li:last-child { padding-bottom: 0; border-bottom: 0; }
.topic-ribbon {
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.topic-ribbon a {
padding: 12px 16px;
border-radius: 999px;
background: rgba(108,43,217,.08);
color: var(--primary-dark);
font-weight: 700;
}
.topic-ribbon a:hover {
background: linear-gradient(135deg, var(--primary), var(--accent));
color: #fff;
}
.mosaic-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 22px;
}
.story-card {
overflow: hidden;
}
.story-thumb {
height: 210px;
overflow: hidden;
}
.story-content { padding: 18px; }
.story-content .story-meta { margin-bottom: 10px; }
.dual-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 22px;
}
.feature-list { display: grid; gap: 18px; }
.feature-row {
display: grid;
grid-template-columns: 130px 1fr;
gap: 16px;
align-items: center;
padding: 7px 0;
border-radius: 18px;
background: #fff;
}
.feature-row-thumb {
width: 130px;
height: 95px;
overflow: hidden;
border-radius: 14px;
}
.feature-row-thumb img { width: 100%; height: 100%; object-fit: cover; }
.home-ad-card {
padding: 22px;
min-height: 280px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
background: linear-gradient(135deg, rgba(108,43,217,.96), rgba(14,165,233,.92));
color: #fff;
}
.home-ad-card span {
display: inline-block;
padding: 8px 14px;
border: 1px solid rgba(255,255,255,.25);
border-radius: 999px;
font-size: 12px;
text-transform: uppercase;
letter-spacing: .08em;
}
.home-ad-card h3 {
margin: 18px 0 8px;
font-size: clamp(28px, 3vw, 44px);
line-height: 1.02;
}
.home-ad-card p { max-width: 520px; margin: 0; color: rgba(255,255,255,.88); }
.content-layout {
display: grid;
grid-template-columns: minmax(0, 1fr) 340px;
gap: 24px;
}
.main-feed { min-width: 0; }
.sidebar-area {
display: grid;
gap: 22px;
align-content: start;
}
.sidebar-widget { padding: 22px; }
.sidebar-widget h3,
.widget-title {
margin: 0 0 18px;
font-size: 22px;
line-height: 1.05;
}
.widget_recent_entries ul,
.widget_categories ul,
.widget_archive ul,
.widget_meta ul,
.widget_pages ul,
.widget_nav_menu ul {
display: grid;
gap: 12px;
}
.widget_recent_entries li,
.widget_categories li,
.widget_archive li,
.widget_meta li,
.widget_pages li,
.widget_nav_menu li {
padding-bottom: 12px;
border-bottom: 1px solid var(--line);
}
.widget_recent_entries li:last-child,
.widget_categories li:last-child,
.widget_archive li:last-child,
.widget_meta li:last-child,
.widget_pages li:last-child,
.widget_nav_menu li:last-child { border-bottom: 0; padding-bottom: 0; }
.widget_search .wp-block-search,
.widget_search form { display: flex; gap: 10px; }
.widget_search input[type="search"],
.widget_search input[type="text"] {
flex: 1;
height: 46px;
border: 1px solid var(--line);
border-radius: 14px;
padding: 0 14px;
}
.widget_search button,
.widget_search input[type="submit"] {
border: 0;
background: linear-gradient(135deg, var(--primary), var(--accent));
color: #fff;
border-radius: 14px;
padding: 0 18px;
}
.tagcloud,
.wp-block-tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tagcloud a,
.wp-block-tag-cloud a {
padding: 9px 13px;
border-radius: 999px;
background: var(--surface-2);
font-size: 13px !important;
}
.archive-grid,
.search-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 22px;
}
.archive-card {
overflow: hidden;
display: flex;
flex-direction: column;
}
.archive-thumb { height: 260px; }
.archive-body { padding: 22px; }
.archive-body h2, .archive-body h3 {
margin: 7px 0 12px;
font-size: 24px;
line-height: 1.3;
}
.pagination-wrap,
.navigation.posts-navigation,
.navigation.post-navigation {
margin-top: 26px;
}
.nav-links {
display: flex;
justify-content: space-between;
gap: 16px;
flex-wrap: wrap;
}
.page-numbers,
.nav-links a,
.nav-links span {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 46px;
min-height: 46px;
padding: 0 16px;
border-radius: 14px;
border: 1px solid var(--line);
background: #fff;
}
.page-numbers.current {
background: linear-gradient(135deg, var(--primary), var(--accent));
color: #fff;
border-color: transparent;
}
.single-card { padding: 26px; }
.single-header h1 {
margin: 0 0 14px;
font-size: clamp(34px, 4vw, 54px);
line-height: .98;
letter-spacing: -.04em;
}
.single-featured {
overflow: hidden;
border-radius: 22px;
margin: 22px 0;
max-height: 620px;
}
.single-card .entry-content {
font-size: 18px;
color: #1e293b;
}
.single-card .entry-content p,
.single-card .entry-content ul,
.single-card .entry-content ol,
.single-card .entry-content blockquote { margin-bottom: 1.2em; }
.single-card .entry-content h2,
.single-card .entry-content h3,
.single-card .entry-content h4 {
line-height: 1.12;
margin: 1.4em 0 .6em;
}
.single-card blockquote {
margin: 0 0 1.2em;
padding: 18px 20px;
border-left: 4px solid var(--accent);
border-radius: 16px;
background: var(--surface-2);
}
.single-share {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 26px;
padding-top: 20px;
border-top: 1px solid var(--line);
}
.share-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 11px 16px;
border-radius: 999px;
background: var(--surface-2);
font-weight: 700;
}
.author-box {
margin-top: 24px;
padding: 20px;
border-radius: 20px;
background: linear-gradient(135deg, rgba(108,43,217,.06), rgba(14,165,233,.08));
}
.comments-area { margin-top: 26px; }
.comment-list,
.comment-respond { padding: 22px; }
.comment-list ol { padding-left: 18px; }
.comment-body { margin-bottom: 18px; }
.comment-form input,
.comment-form textarea {
width: 100%;
border: 1px solid var(--line);
border-radius: 14px;
padding: 12px 14px;
}
.comment-form .submit {
border: 0;
padding: 14px 22px;
border-radius: 999px;
color: #fff;
background: linear-gradient(135deg, var(--primary), var(--accent));
}
.site-footer {
padding: 36px 0 24px;
color: #dbe5f3;
background: linear-gradient(180deg, #0b1220, #101827);
margin-top: 36px;
}
.footer-grid {
display: grid;
grid-template-columns: 1.15fr .8fr .8fr .9fr;
gap: 24px;
}
.footer-brand strong { font-size: 28px; display: block; margin-bottom: 10px; color: #fff; }
.footer-brand p,
.footer-widget p,
.footer-widget li,
.footer-bottom { color: rgba(219,229,243,.72); }
.footer-widget h3 {
margin: 0 0 16px;
color: #fff;
font-size: 18px;
}
.footer-widget ul { display: grid; gap: 10px; }
.footer-bottom {
display: flex;
justify-content: space-between;
gap: 16px;
flex-wrap: wrap;
margin-top: 28px;
padding-top: 18px;
border-top: 1px solid rgba(255,255,255,.08);
font-size: 14px;
}
.screen-reader-text {
position: absolute !important;
clip: rect(1px,1px,1px,1px);
padding: 0 !important;
border: 0 !important;
height: 1px !important;
width: 1px !important;
overflow: hidden;
}
@media (max-width: 1199px) {
.header-main { grid-template-columns: 1fr auto; }
.header-center { display: none; }
.primary-nav { display: none; }
.menu-toggle { display: inline-flex; }
.hero-grid,
.curated-grid,
.content-layout,
.footer-grid,
.dual-grid { grid-template-columns: 1fr; }
.mosaic-grid { grid-template-columns: repeat(2, 1fr); }
.archive-grid,
.search-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
.container { width: min(calc(100% - 22px), var(--container)); }
.top-strip-inner { min-height: 40px; }
.top-strip-right { display: none; }
.header-main { grid-template-columns: 1fr auto; padding: 12px 0; }
.brand-text strong { font-size: 24px; }
.brand-mark { width: 44px; height: 44px; border-radius: 14px; }
main.site-main { padding-top: 18px; }
.hero-main { min-height: 420px; }
.hero-main-content {
max-width: 100%;
padding: 22px;
}
.hero-main h1 { font-size: 32px; }
.hero-side-card { min-height: 210px; }
.section-head { align-items: flex-start; flex-direction: column; }
.mosaic-grid { grid-template-columns: 1fr; }
.story-compact,
.feature-row { grid-template-columns: 1fr; }
.story-compact-thumb,
.feature-row-thumb { width: 100%; height: 170px; }
.single-card { padding: 18px; }
.single-card .entry-content { font-size: 17px; }
.footer-grid { gap: 18px; }
}