:root {
--op-red: #d71920;
--op-red-dark: #9f1117;
--op-black: #111111;
--op-ink: #202020;
--op-muted: #6f6f6f;
--op-border: #e8e8e8;
--op-soft: #f6f6f6;
--op-white: #ffffff;
--op-shadow: 0 14px 35px rgba(17, 17, 17, 0.08);
}
* {
box-sizing: border-box;
}
body {
margin: 0;
color: var(--op-ink);
background: var(--op-white);
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
line-height: 1.6;
}
a {
color: inherit;
text-decoration: none;
transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
a:hover,
a:focus {
color: var(--op-red);
}
img {
max-width: 100%;
height: auto;
display: block;
}
.screen-reader-text {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
.site-wrap,
.op-container {
width: min(1180px, calc(100% - 32px));
margin: 0 auto;
}
.top-bar {
background: var(--op-black);
color: var(--op-white);
font-size: 13px;
}
.top-bar-inner {
display: flex;
justify-content: space-between;
align-items: center;
min-height: 38px;
gap: 16px;
}
.top-links {
display: flex;
gap: 14px;
flex-wrap: wrap;
}
.site-header-main {
padding: 24px 0;
border-bottom: 1px solid var(--op-border);
}
.header-main-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
}
.site-branding {
min-width: 220px;
}
.site-title {
margin: 0;
color: var(--op-black);
font-size: 38px;
line-height: 1;
font-weight: 900;
letter-spacing: 0;
text-transform: uppercase;
}
.site-title span,
.site-title a:hover {
color: var(--op-red);
}
.site-description {
margin: 8px 0 0;
color: var(--op-muted);
font-size: 14px;
}
.header-ad {
width: min(728px, 100%);
min-height: 90px;
display: grid;
place-items: center;
color: #777;
background: repeating-linear-gradient(45deg, #f7f7f7, #f7f7f7 10px, #efefef 10px, #efefef 20px);
border: 1px solid var(--op-border);
font-weight: 700;
}
.main-navigation {
position: sticky;
top: 0;
z-index: 20;
background: var(--op-white);
border-bottom: 3px solid var(--op-red);
box-shadow: 0 7px 18px rgba(17, 17, 17, 0.05);
}
.nav-inner {
display: flex;
align-items: center;
justify-content: space-between;
}
.menu-toggle {
display: none;
width: 44px;
height: 44px;
border: 0;
color: var(--op-white);
background: var(--op-red);
font-size: 24px;
cursor: pointer;
}
.primary-menu,
.primary-menu ul {
margin: 0;
padding: 0;
list-style: none;
}
.primary-menu {
display: flex;
align-items: stretch;
flex-wrap: wrap;
}
.primary-menu li {
position: relative;
}
.primary-menu > li > a {
display: flex;
align-items: center;
min-height: 52px;
padding: 0 16px;
color: var(--op-black);
font-size: 14px;
font-weight: 800;
text-transform: uppercase;
}
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-ancestor > a,
.primary-menu > li > a:hover {
color: var(--op-white);
background: var(--op-red);
}
.primary-menu .menu-item-has-children > a::after {
content: "";
width: 0;
height: 0;
margin-left: 7px;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 5px solid currentColor;
}
.primary-menu ul {
position: absolute;
left: 0;
top: 100%;
width: 220px;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
background: var(--op-white);
border: 1px solid var(--op-border);
box-shadow: var(--op-shadow);
transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.primary-menu li:hover > ul,
.primary-menu li:focus-within > ul {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.primary-menu ul a {
display: block;
padding: 12px 14px;
color: var(--op-black);
font-weight: 700;
border-bottom: 1px solid var(--op-border);
}
.primary-menu ul a:hover {
color: var(--op-white);
background: var(--op-red);
}
.breaking-news {
margin: 24px auto 0;
display: grid;
grid-template-columns: auto 1fr;
overflow: hidden;
border: 1px solid var(--op-border);
background: var(--op-white);
}
.breaking-label {
display: flex;
align-items: center;
padding: 10px 16px;
color: var(--op-white);
background: var(--op-red);
font-size: 13px;
font-weight: 900;
text-transform: uppercase;
}
.breaking-items {
display: flex;
align-items: center;
gap: 24px;
min-width: 0;
padding: 10px 16px;
overflow: hidden;
white-space: nowrap;
}
.breaking-items a {
font-weight: 700;
}
.site-content {
padding: 32px 0 44px;
}
.content-layout {
display: grid;
grid-template-columns: minmax(0, 1fr) 330px;
gap: 32px;
align-items: start;
}
.hero-grid {
display: grid;
grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
gap: 22px;
margin-bottom: 32px;
}
.featured-card {
position: relative;
min-height: 410px;
display: flex;
align-items: flex-end;
overflow: hidden;
background: #151515;
}
.featured-card img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.76;
}
.featured-content {
position: relative;
z-index: 1;
width: 100%;
padding: 28px;
color: var(--op-white);
background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.86));
}
.post-category {
display: inline-flex;
align-items: center;
margin-bottom: 10px;
padding: 5px 8px;
color: var(--op-white);
background: var(--op-red);
font-size: 12px;
font-weight: 900;
line-height: 1;
text-transform: uppercase;
}
.featured-title {
margin: 0;
font-size: 34px;
line-height: 1.14;
}
.post-meta {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin-top: 10px;
color: var(--op-muted);
font-size: 13px;
}
.featured-card .post-meta {
color: rgba(255, 255, 255, 0.82);
}
.hero-side {
display: grid;
gap: 16px;
}
.compact-card {
display: grid;
grid-template-columns: 120px minmax(0, 1fr);
gap: 14px;
align-items: center;
min-height: 118px;
border-bottom: 1px solid var(--op-border);
}
.compact-card img {
width: 120px;
height: 88px;
object-fit: cover;
background: var(--op-soft);
}
.compact-card h3,
.news-card h3 {
margin: 0;
color: var(--op-black);
font-size: 17px;
line-height: 1.32;
}
.section-heading {
display: flex;
align-items: center;
margin: 0 0 18px;
color: var(--op-black);
font-size: 22px;
line-height: 1.2;
text-transform: uppercase;
}
.section-heading::before {
content: "";
width: 6px;
height: 24px;
margin-right: 10px;
background: var(--op-red);
}
.latest-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 22px;
}
.news-card {
border-bottom: 3px solid var(--op-black);
background: var(--op-white);
}
.news-card img {
width: 100%;
aspect-ratio: 16 / 10;
object-fit: cover;
background: var(--op-soft);
}
.news-card-content {
padding: 14px 0 16px;
}
.news-card p {
margin: 10px 0 0;
color: var(--op-muted);
font-size: 14px;
}
.archive-title,
.single-title,
.page-title {
margin: 0 0 20px;
color: var(--op-black);
font-size: 38px;
line-height: 1.16;
}
.archive-description {
margin: -8px 0 24px;
color: var(--op-muted);
}
.post-list {
display: grid;
gap: 24px;
}
.post-list-item {
display: grid;
grid-template-columns: 280px minmax(0, 1fr);
gap: 20px;
padding-bottom: 24px;
border-bottom: 1px solid var(--op-border);
}
.post-list-item img {
width: 100%;
aspect-ratio: 16 / 10;
object-fit: cover;
background: var(--op-soft);
}
.post-list-item h2 {
margin: 0;
font-size: 25px;
line-height: 1.2;
}
.post-list-item p {
color: var(--op-muted);
}
.single-featured-image {
margin-bottom: 22px;
}
.single-featured-image img {
width: 100%;
max-height: 560px;
object-fit: cover;
}
.entry-content {
font-size: 18px;
}
.entry-content p {
margin: 0 0 18px;
}
.entry-content a {
color: var(--op-red);
font-weight: 700;
}
.entry-content blockquote {
margin: 26px 0;
padding: 18px 22px;
border-left: 5px solid var(--op-red);
background: var(--op-soft);
font-size: 21px;
font-weight: 700;
}
.post-navigation,
.pagination {
margin-top: 30px;
}
.pagination .nav-links,
.post-navigation .nav-links {
display: flex;
justify-content: space-between;
gap: 16px;
}
.pagination a,
.pagination span,
.post-navigation a,
.read-more,
.newsletter button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 40px;
padding: 0 14px;
color: var(--op-white);
background: var(--op-black);
border: 1px solid var(--op-black);
font-weight: 800;
}
.pagination .current,
.pagination a:hover,
.post-navigation a:hover,
.read-more:hover,
.newsletter button:hover {
color: var(--op-white);
background: var(--op-red);
border-color: var(--op-red);
}
.sidebar {
display: grid;
gap: 24px;
}
.widget {
padding: 20px;
border: 1px solid var(--op-border);
background: var(--op-white);
}
.widget-title {
margin: 0 0 15px;
padding-bottom: 10px;
color: var(--op-black);
font-size: 18px;
text-transform: uppercase;
border-bottom: 3px solid var(--op-red);
}
.popular-list {
counter-reset: popular;
display: grid;
gap: 14px;
margin: 0;
padding: 0;
list-style: none;
}
.popular-list li {
counter-increment: popular;
display: grid;
grid-template-columns: 34px minmax(0, 1fr);
gap: 12px;
align-items: start;
}
.popular-list li::before {
content: counter(popular);
display: grid;
place-items: center;
width: 34px;
height: 34px;
color: var(--op-white);
background: var(--op-red);
font-weight: 900;
}
.popular-list a {
font-weight: 800;
line-height: 1.35;
}
.ad-box {
width: 300px;
max-width: 100%;
height: 250px;
display: grid;
place-items: center;
margin: 0 auto;
color: #777;
background: repeating-linear-gradient(45deg, #fafafa, #fafafa 10px, #eeeeee 10px, #eeeeee 20px);
border: 1px solid var(--op-border);
font-weight: 800;
}
.newsletter p {
margin-top: 0;
color: var(--op-muted);
}
.newsletter input[type="email"] {
width: 100%;
min-height: 44px;
margin-bottom: 10px;
padding: 0 12px;
border: 1px solid var(--op-border);
font: inherit;
}
.newsletter button {
width: 100%;
cursor: pointer;
}
.site-footer {
color: var(--op-white);
background: var(--op-black);
}
.footer-widgets {
padding: 36px 0;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 28px;
}
.footer-widgets .widget {
padding: 0;
color: rgba(255, 255, 255, 0.78);
background: transparent;
border: 0;
}
.footer-widgets .widget-title {
color: var(--op-white);
}
.footer-bottom {
padding: 16px 0;
color: rgba(255, 255, 255, 0.7);
border-top: 1px solid rgba(255, 255, 255, 0.12);
font-size: 14px;
}
.empty-state {
padding: 30px;
background: var(--op-soft);
border: 1px solid var(--op-border);
}
@media (max-width: 980px) {
.header-main-inner,
.content-layout,
.hero-grid {
grid-template-columns: 1fr;
}
.header-main-inner {
display: grid;
}
.content-layout {
display: grid;
}
.latest-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sidebar {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 760px) {
.top-bar-inner {
align-items: flex-start;
flex-direction: column;
padding: 8px 0;
}
.site-title {
font-size: 32px;
}
.nav-inner {
align-items: stretch;
flex-direction: column;
}
.menu-toggle {
display: block;
align-self: flex-end;
}
.primary-menu {
display: none;
width: 100%;
}
.main-navigation.is-open .primary-menu {
display: block;
}
.primary-menu > li > a {
min-height: 46px;
border-top: 1px solid var(--op-border);
}
.primary-menu ul {
position: static;
width: 100%;
opacity: 1;
visibility: visible;
transform: none;
box-shadow: none;
border: 0;
background: var(--op-soft);
}
.primary-menu ul a {
padding-left: 28px;
}
.breaking-news {
grid-template-columns: 1fr;
}
.breaking-items {
overflow-x: auto;
}
.featured-card {
min-height: 340px;
}
.featured-title,
.archive-title,
.single-title,
.page-title {
font-size: 28px;
}
.latest-grid,
.sidebar,
.footer-widgets,
.post-list-item {
grid-template-columns: 1fr;
}
.compact-card {
grid-template-columns: 105px minmax(0, 1fr);
}
.compact-card img {
width: 105px;
height: 78px;
}
}