:root {
--f1-red: #E10600;
--f1-red-dark: #b30500;
--f1-red-light: #ff1a1a;
--lux-gold: #C9A96E;
--lux-gold-light: #E8D5B7;
--bg: #F7F5F2;
--bg-warm: #EDEAE6;
--carbon: #0a0a0a;
--carbon-light: #1a1a1a;
--carbon-mid: #2d2d2d;
--text: #1a1a1a;
--text-soft: #6b6b6b;
--text-muted: #999;
--border: #d4d0c8;
--border-light: #e8e5df;
--white: #ffffff;
--sidebar-width: 340px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg);
color: var(--text);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}
.font-f1 { font-family: 'Orbitron', sans-serif; }
.font-serif { font-family: 'Cormorant Garamond', serif; }
.font-condensed { font-family: 'Oswald', sans-serif; } body::before {
content: '';
position: fixed;
inset: 0;
background-image: 
repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0,0,0,0.008) 35px, rgba(0,0,0,0.008) 70px),
repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(0,0,0,0.008) 35px, rgba(0,0,0,0.008) 70px);
pointer-events: none;
z-index: 0;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--f1-red); border-radius: 3px; } .masthead {
background: var(--white);
border-bottom: 3px solid var(--f1-red);
position: relative;
z-index: 50;
}
.masthead-top {
background: var(--carbon);
color: var(--white);
padding: 0.4rem 0;
font-family: 'Orbitron', sans-serif;
font-size: 0.55rem;
letter-spacing: 0.15em;
text-transform: uppercase;
}
.masthead-top-inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.masthead-date {
display: flex;
align-items: center;
gap: 0.75rem;
}
.masthead-date .flag-icon {
width: 24px;
height: 16px;
border-radius: 2px;
object-fit: cover;
box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.masthead-gp-info {
text-align: right;
}
.masthead-main {
max-width: 1280px;
margin: 0 auto;
padding: 1rem 1.5rem;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}
.masthead-logo {
display: flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
}
.masthead-logo img {
height: 48px;
width: auto;
}
.masthead-logo-text {
display: flex;
flex-direction: column;
}
.masthead-logo-text .brand {
font-family: 'Orbitron', sans-serif;
font-size: 1.6rem;
font-weight: 900;
color: var(--f1-red);
line-height: 1;
letter-spacing: 0.05em;
}
.masthead-logo-text .brand span {
color: var(--carbon);
}
.masthead-logo-text .tagline {
font-family: 'Orbitron', sans-serif;
font-size: 0.5rem;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--text-muted);
margin-top: 0.15rem;
}
.masthead-nav {
display: flex;
align-items: center;
gap: 2rem;
}
.masthead-nav a {
font-family: 'Orbitron', sans-serif;
font-size: 0.6rem;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--text-soft);
text-decoration: none;
padding: 0.5rem 0;
position: relative;
transition: color 0.3s;
}
.masthead-nav a:hover { color: var(--f1-red); }
.masthead-nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--f1-red);
transition: width 0.3s ease;
}
.masthead-nav a:hover::after { width: 100%; }
.masthead-social {
display: flex;
align-items: center;
gap: 1rem;
border-left: 1px solid var(--border-light);
padding-left: 1.5rem;
}
.masthead-social a {
color: var(--text-muted);
transition: all 0.3s;
}
.masthead-social a:hover { color: var(--f1-red); transform: translateY(-2px); }
.masthead-social svg { width: 18px; height: 18px; }
.masthead-bar {
background: var(--f1-red);
color: var(--white);
padding: 0.5rem 0;
font-family: 'Orbitron', sans-serif;
font-size: 0.6rem;
letter-spacing: 0.2em;
text-transform: uppercase;
text-align: center;
}
.masthead-bar a {
color: var(--white);
text-decoration: none;
transition: opacity 0.3s;
}
.masthead-bar a:hover { opacity: 0.8; } .mobile-menu-btn {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
color: var(--carbon);
}
@media (max-width: 1024px) {
.masthead-nav { display: none; }
.mobile-menu-btn { display: block; }
.masthead-main { padding: 0.75rem 1rem; }
.masthead-logo img { height: 36px; }
.masthead-logo-text .brand { font-size: 1.2rem; }
} #mobileMenu {
position: fixed;
inset: 0;
background: var(--white);
z-index: 100;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2rem;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease, transform 0.3s ease;
transform: translateY(-8px);
}
#mobileMenu.active {
opacity: 1;
pointer-events: all;
transform: translateY(0);
}
#mobileMenu a {
font-family: 'Cormorant Garamond', serif;
font-size: 2rem;
color: var(--carbon);
text-decoration: none;
font-weight: 700;
}
#mobileMenuClose {
position: absolute;
top: 1.5rem;
right: 1.5rem;
background: none;
border: none;
cursor: pointer;
color: var(--carbon);
padding: 0.5rem;
} .hero-cover {
position: relative;
width: 100%;
min-height: 85vh;
max-height: 900px;
display: flex;
align-items: flex-end;
overflow: hidden;
background: linear-gradient(135deg, var(--carbon) 0%, #1a1a2e 50%, var(--carbon) 100%);
}
.hero-cover .hero-img-wrap {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
}
.hero-cover .hero-img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
filter: saturate(0.85) contrast(1.05);
}
.hero-cover::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(
to top,
rgba(0,0,0,0.95) 0%,
rgba(0,0,0,0.7) 30%,
rgba(0,0,0,0.3) 60%,
rgba(0,0,0,0.1) 100%
);
z-index: 1;
}
.hero-cover-content {
position: relative;
z-index: 10;
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: 0 2rem 4rem;
display: grid;
grid-template-columns: 1fr 320px;
gap: 3rem;
align-items: end;
}
@media (max-width: 1024px) {
.hero-cover-content {
grid-template-columns: 1fr;
padding: 0 1.5rem 3rem;
gap: 2rem;
}
.hero-cover { min-height: 70vh; }
}
.hero-cover-label {
font-family: 'Orbitron', sans-serif;
font-size: 0.65rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--lux-gold);
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 1rem;
}
.hero-cover-label::before {
content: '';
width: 40px;
height: 2px;
background: var(--f1-red);
}
.hero-cover-headline {
font-family: 'Oswald', sans-serif;
font-size: clamp(3rem, 8vw, 7rem);
font-weight: 700;
line-height: 0.95;
color: var(--white);
text-transform: uppercase;
letter-spacing: -0.02em;
margin-bottom: 1rem;
}
.hero-cover-headline .highlight {
color: var(--f1-red);
display: block;
}
.hero-cover-subheadline {
font-family: 'Inter', sans-serif;
font-size: 1.1rem;
font-weight: 300;
color: rgba(255,255,255,0.7);
line-height: 1.6;
max-width: 600px;
margin-bottom: 2rem;
}
.hero-cover-meta {
display: flex;
align-items: center;
gap: 1.5rem;
font-family: 'Orbitron', sans-serif;
font-size: 0.6rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: rgba(255,255,255,0.5);
}
.hero-cover-meta .dot {
width: 4px;
height: 4px;
background: var(--f1-red);
border-radius: 50%;
}
.hero-cover-btn {
display: inline-flex;
align-items: center;
gap: 0.75rem;
margin-top: 2rem;
padding: 1rem 2.5rem;
background: var(--f1-red);
color: var(--white);
font-family: 'Orbitron', sans-serif;
font-size: 0.65rem;
font-weight: 600;
letter-spacing: 0.2em;
text-transform: uppercase;
text-decoration: none;
transition: all 0.4s ease;
border: none;
cursor: pointer;
}
.hero-cover-btn:hover {
background: var(--f1-red-dark);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(225, 6, 0, 0.3);
} .hero-quote {
background: rgba(255,255,255,0.05);
backdrop-filter: blur(10px);
border-left: 3px solid var(--f1-red);
padding: 1.5rem 2rem;
border-radius: 0 4px 4px 0;
}
.hero-quote-text {
font-family: 'Cormorant Garamond', serif;
font-size: 1.15rem;
font-style: italic;
color: rgba(255,255,255,0.8);
line-height: 1.5;
margin-bottom: 1rem;
}
.hero-quote-author {
font-family: 'Orbitron', sans-serif;
font-size: 0.6rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--f1-red);
} .highlights-bar {
background: var(--carbon);
padding: 2rem 0;
border-top: 1px solid rgba(255,255,255,0.1);
}
.highlights-bar-inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 1.5rem;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}
@media (max-width: 768px) {
.highlights-bar-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}
.highlight-card {
display: flex;
gap: 1rem;
align-items: flex-start;
text-decoration: none;
color: inherit;
padding: 1rem;
border-radius: 4px;
transition: all 0.3s;
border: 1px solid transparent;
}
.highlight-card:hover {
background: rgba(255,255,255,0.03);
border-color: rgba(255,255,255,0.1);
}
.highlight-icon {
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--f1-red);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.highlight-icon svg {
width: 20px;
height: 20px;
color: var(--white);
}
.highlight-body h4 {
font-family: 'Orbitron', sans-serif;
font-size: 0.6rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--f1-red);
margin-bottom: 0.5rem;
}
.highlight-body p {
font-family: 'Inter', sans-serif;
font-size: 0.85rem;
color: rgba(255,255,255,0.6);
line-height: 1.5;
font-weight: 300;
} .section-header {
text-align: center;
padding: 4rem 0 2rem;
background: var(--bg);
}
.section-label {
font-family: 'Orbitron', sans-serif;
font-size: 0.6rem;
letter-spacing: 0.4em;
text-transform: uppercase;
color: var(--f1-red);
margin-bottom: 0.75rem;
display: block;
}
.section-title {
font-family: 'Oswald', sans-serif;
font-size: clamp(2rem, 4vw, 3.5rem);
font-weight: 700;
line-height: 1;
color: var(--carbon);
text-transform: uppercase;
letter-spacing: -0.01em;
}
.section-divider {
width: 60px;
height: 3px;
background: var(--f1-red);
margin: 1.5rem auto 0;
} .posts-section {
background: var(--bg);
padding: 0 0 4rem;
}
.posts-section-inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 1.5rem;
display: grid;
grid-template-columns: 1fr var(--sidebar-width);
gap: 3rem;
}
@media (max-width: 1024px) {
.posts-section-inner { grid-template-columns: 1fr; }
}
.posts-grid {
display: flex;
flex-direction: column;
gap: 0;
}
.post-card {
display: grid;
grid-template-columns: 280px 1fr;
gap: 2rem;
padding: 2rem 0;
border-bottom: 1px solid var(--border-light);
text-decoration: none;
color: inherit;
transition: all 0.4s ease;
}
.post-card:first-child { padding-top: 0; }
.post-card:hover {
padding-left: 1rem;
}
.post-card:hover .post-card-thumb img {
transform: scale(1.05);
filter: saturate(1) contrast(1);
}
.post-card:hover .post-card-title {
color: var(--f1-red);
}
@media (max-width: 768px) {
.post-card {
grid-template-columns: 1fr;
gap: 1rem;
}
.post-card:hover { padding-left: 0; }
}
.post-card-thumb {
width: 280px;
height: 180px;
border-radius: 4px;
overflow: hidden;
flex-shrink: 0;
position: relative;
}
@media (max-width: 768px) {
.post-card-thumb { width: 100%; height: 200px; }
}
.post-card-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
filter: saturate(0.9) contrast(1.02);
}
.post-card-edition {
position: absolute;
top: 0.75rem;
left: 0.75rem;
background: var(--f1-red);
color: var(--white);
font-family: 'Orbitron', sans-serif;
font-size: 0.5rem;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
padding: 0.35rem 0.75rem;
border-radius: 2px;
}
.post-card-body {
display: flex;
flex-direction: column;
justify-content: center;
}
.post-card-category {
font-family: 'Orbitron', sans-serif;
font-size: 0.55rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--f1-red);
margin-bottom: 0.5rem;
}
.post-card-title {
font-family: 'Oswald', sans-serif;
font-size: 1.5rem;
font-weight: 600;
line-height: 1.15;
color: var(--carbon);
margin-bottom: 0.75rem;
transition: color 0.3s;
text-transform: uppercase;
}
.post-card-excerpt {
font-family: 'Inter', sans-serif;
font-size: 0.9rem;
font-weight: 300;
color: var(--text-soft);
line-height: 1.6;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
margin-bottom: 1rem;
}
.post-card-meta {
font-family: 'Orbitron', sans-serif;
font-size: 0.55rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--text-muted);
display: flex;
align-items: center;
gap: 1rem;
}
.post-card-meta .dot {
width: 3px;
height: 3px;
background: var(--border);
border-radius: 50%;
} .sidebar-f1 {
width: var(--sidebar-width);
flex-shrink: 0;
}
@media (max-width: 1024px) {
.sidebar-f1 {
width: 100%;
max-width: 500px;
margin: 0 auto;
}
}
.widget-f1 {
background: var(--white);
border: 1px solid var(--border-light);
border-radius: 4px;
padding: 1.5rem;
margin-bottom: 1.5rem;
box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.widget-f1-title {
font-family: 'Orbitron', sans-serif;
font-size: 0.6rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--carbon);
margin-bottom: 1.25rem;
padding-bottom: 0.75rem;
border-bottom: 2px solid var(--f1-red);
display: flex;
align-items: center;
gap: 0.75rem;
}
.widget-f1-title::before {
content: '';
width: 6px;
height: 6px;
background: var(--f1-red);
transform: rotate(45deg);
} .gp-list { display: flex; flex-direction: column; gap: 0.75rem; }
.gp-item {
display: flex;
align-items: center;
gap: 0.875rem;
padding: 0.75rem;
border-radius: 4px;
transition: all 0.3s;
text-decoration: none;
color: inherit;
border: 1px solid transparent;
}
.gp-item:hover {
background: var(--bg);
border-color: var(--border-light);
}
.gp-flag {
width: 32px;
height: 22px;
border-radius: 2px;
object-fit: cover;
flex-shrink: 0;
box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.gp-info { flex: 1; min-width: 0; }
.gp-name {
font-family: 'Oswald', sans-serif;
font-size: 0.95rem;
font-weight: 600;
color: var(--carbon);
line-height: 1.2;
text-transform: uppercase;
}
.gp-date {
font-family: 'Orbitron', sans-serif;
font-size: 0.55rem;
color: var(--text-muted);
letter-spacing: 0.1em;
text-transform: uppercase;
margin-top: 0.15rem;
}
.gp-countdown {
font-family: 'Orbitron', sans-serif;
font-size: 0.65rem;
font-weight: 700;
color: var(--f1-red);
white-space: nowrap;
} .standings-list { display: flex; flex-direction: column; gap: 0.5rem; }
.standing-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.5rem 0.75rem;
border-radius: 4px;
transition: background 0.3s;
}
.standing-item:hover { background: var(--bg); }
.standing-pos {
font-family: 'Orbitron', sans-serif;
font-size: 0.75rem;
font-weight: 700;
width: 24px;
color: var(--text-muted);
text-align: center;
}
.standing-pos.first { color: var(--f1-red); font-size: 0.9rem; }
.standing-driver {
font-family: 'Inter', sans-serif;
font-size: 0.85rem;
font-weight: 500;
flex: 1;
color: var(--carbon);
}
.standing-team {
font-family: 'Inter', sans-serif;
font-size: 0.7rem;
color: var(--text-muted);
font-weight: 300;
}
.standing-pts {
font-family: 'Orbitron', sans-serif;
font-size: 0.65rem;
font-weight: 700;
color: var(--f1-red);
} .trending-list { display: flex; flex-direction: column; gap: 1rem; }
.trending-item {
display: flex;
gap: 0.875rem;
text-decoration: none;
color: inherit;
padding: 0.5rem;
border-radius: 4px;
transition: background 0.3s;
}
.trending-item:hover { background: var(--bg); }
.trending-num {
font-family: 'Oswald', sans-serif;
font-size: 1.5rem;
font-weight: 700;
color: var(--f1-red);
opacity: 0.3;
width: 30px;
flex-shrink: 0;
line-height: 1;
}
.trending-thumb {
width: 60px;
height: 45px;
border-radius: 3px;
object-fit: cover;
flex-shrink: 0;
}
.trending-body { min-width: 0; }
.trending-title {
font-family: 'Oswald', sans-serif;
font-size: 0.9rem;
font-weight: 600;
color: var(--carbon);
line-height: 1.25;
text-transform: uppercase;
transition: color 0.3s;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.trending-item:hover .trending-title { color: var(--f1-red); }
.trending-date {
font-family: 'Orbitron', sans-serif;
font-size: 0.5rem;
color: var(--text-muted);
letter-spacing: 0.1em;
text-transform: uppercase;
margin-top: 0.25rem;
} .newsletter-f1 { text-align: center; }
.newsletter-f1-desc {
font-family: 'Inter', sans-serif;
font-size: 0.85rem;
color: var(--text-soft);
line-height: 1.6;
margin-bottom: 1.25rem;
font-weight: 300;
}
.newsletter-f1-form {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.newsletter-f1-input {
font-family: 'Inter', sans-serif;
font-size: 0.85rem;
color: var(--text);
background: var(--bg);
border: 1px solid var(--border);
border-radius: 4px;
padding: 0.75rem 1rem;
outline: none;
width: 100%;
font-weight: 300;
}
.newsletter-f1-input:focus {
border-color: var(--f1-red);
box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.1);
}
.newsletter-f1-btn {
font-family: 'Orbitron', sans-serif;
font-size: 0.6rem;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--white);
background: var(--f1-red);
border: none;
border-radius: 4px;
padding: 0.875rem 1.5rem;
cursor: pointer;
transition: all 0.3s ease;
}
.newsletter-f1-btn:hover {
background: var(--f1-red-dark);
transform: translateY(-1px);
box-shadow: 0 4px 16px rgba(225, 6, 0, 0.25);
} .ad-banner {
background: var(--white);
border: 1px solid var(--border-light);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
color: var(--text-muted);
font-family: 'Orbitron', sans-serif;
font-size: 0.6rem;
letter-spacing: 0.2em;
text-transform: uppercase;
overflow: hidden;
}
.ad-banner:has(.adsbygoogle) {
background: transparent;
border: none;
padding: 0;
}
.ad-top {
width: 100%;
min-height: 90px;
max-height: 280px;
height: auto;
margin-bottom: 2rem;
}
.ad-sidebar {
width: 100%;
min-height: 250px;
height: auto;
margin-bottom: 1.5rem;
}
.ad-inline {
width: 100%;
min-height: 90px;
max-height: 280px;
height: auto;
margin: 2rem 0;
}
.ad-bottom {
width: 100%;
min-height: 90px;
max-height: 280px;
height: auto;
margin-top: 2rem;
} .pagination-f1 {
display: flex;
gap: 0.5rem;
list-style: none;
padding: 0;
margin: 3rem 0 0;
justify-content: center;
}
.pagination-f1 a,
.pagination-f1 span {
display: flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
border-radius: 4px;
border: 1px solid var(--border-light);
font-family: 'Orbitron', sans-serif;
font-weight: 600;
font-size: 0.75rem;
color: var(--text-soft);
text-decoration: none;
transition: all 0.3s;
background: var(--white);
}
.pagination-f1 a:hover {
border-color: var(--f1-red);
color: var(--f1-red);
background: rgba(225, 6, 0, 0.03);
}
.pagination-f1 .current {
background: var(--f1-red);
border-color: var(--f1-red);
color: var(--white);
} .single-hero-f1 {
position: relative;
width: 100%;
min-height: 75vh;
max-height: 800px;
display: flex;
align-items: flex-end;
overflow: hidden;
background: linear-gradient(135deg, var(--carbon) 0%, #1a1a2e 100%);
}
.single-hero-f1 .hero-img-wrap {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
}
.single-hero-f1 .hero-img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
filter: saturate(0.85) contrast(1.05);
}
.single-hero-f1::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(
to top,
rgba(0,0,0,0.95) 0%,
rgba(0,0,0,0.7) 30%,
rgba(0,0,0,0.3) 60%,
rgba(0,0,0,0.1) 100%
);
z-index: 1;
}
.single-hero-content {
position: relative;
z-index: 10;
width: 100%;
max-width: 1000px;
margin: 0 auto;
padding: 0 2rem 4rem;
}
.single-edition-label {
font-family: 'Orbitron', sans-serif;
font-size: 0.65rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--lux-gold);
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 1rem;
}
.single-edition-label::before {
content: '';
width: 40px;
height: 2px;
background: var(--f1-red);
}
.single-title-f1 {
font-family: 'Oswald', sans-serif;
font-size: clamp(2.5rem, 6vw, 5rem);
font-weight: 700;
line-height: 0.95;
color: var(--white);
text-transform: uppercase;
letter-spacing: -0.02em;
margin-bottom: 1.5rem;
}
.single-meta-f1 {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 1rem;
font-family: 'Orbitron', sans-serif;
font-size: 0.6rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: rgba(255,255,255,0.5);
}
.single-meta-f1 .dot {
width: 4px;
height: 4px;
background: var(--f1-red);
border-radius: 50%;
} .single-content-wrap {
max-width: 1280px;
margin: 0 auto;
padding: 3rem 1.5rem;
display: grid;
grid-template-columns: 1fr var(--sidebar-width);
gap: 3rem;
}
@media (max-width: 1024px) {
.single-content-wrap { grid-template-columns: 1fr; }
} .author-box-f1 {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 1.25rem;
background: var(--white);
border: 1px solid var(--border-light);
border-radius: 4px;
padding: 1.5rem 2rem;
margin-bottom: 2rem;
box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.author-box-f1 img {
width: 56px;
height: 56px;
border-radius: 50%;
border: 2px solid var(--f1-red);
object-fit: cover;
}
.author-box-f1 .name {
font-family: 'Oswald', sans-serif;
font-size: 1.1rem;
font-weight: 600;
color: var(--carbon);
text-transform: uppercase;
}
.author-box-f1 .role {
font-family: 'Inter', sans-serif;
font-size: 0.8rem;
color: var(--text-muted);
font-weight: 300;
}
.author-actions-f1 {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-left: auto;
align-items: center;
}
@media (max-width: 640px) {
.author-actions-f1 {
width: 100%;
margin-left: 0;
justify-content: center;
margin-top: 0.5rem;
}
.author-box-f1 {
flex-direction: column;
text-align: center;
}
}
.author-social-btn-f1 {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.5rem 0.9rem;
background: var(--bg);
border: 1px solid var(--border);
border-radius: 4px;
font-family: 'Orbitron', sans-serif;
font-size: 0.55rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--text-soft);
text-decoration: none;
transition: all 0.3s;
}
.author-social-btn-f1:hover {
border-color: var(--f1-red);
color: var(--f1-red);
background: rgba(225,6,0,0.04);
}
.author-social-btn-f1 svg {
width: 14px;
height: 14px;
} .post-content-f1 {
max-width: 800px;
margin: 0 auto;
padding: 2rem 0;
font-size: 1.1rem;
line-height: 1.8;
color: var(--text-soft);
font-weight: 300;
}
.post-content-f1 h2,
.post-content-f1 h3 {
font-family: 'Oswald', sans-serif;
color: var(--carbon);
margin-top: 3rem;
margin-bottom: 1rem;
font-weight: 600;
text-transform: uppercase;
}
.post-content-f1 h2 { font-size: 2rem; }
.post-content-f1 h3 { font-size: 1.5rem; }
.post-content-f1 p { margin-bottom: 1.5rem; }
.post-content-f1 a {
color: var(--f1-red);
text-decoration: none;
border-bottom: 1px solid transparent;
transition: border-color 0.3s;
}
.post-content-f1 a:hover { border-bottom-color: var(--f1-red); }
.post-content-f1 blockquote {
font-family: 'Cormorant Garamond', serif;
border-left: 3px solid var(--f1-red);
background: var(--bg-warm);
padding: 1.5rem 2rem;
margin: 2.5rem 0;
font-size: 1.3rem;
color: var(--carbon);
font-weight: 400;
}
.post-content-f1 img {
border-radius: 4px;
margin: 2.5rem 0;
width: 100%;
} .tags-f1 {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.5rem;
padding-top: 2rem;
border-top: 1px solid var(--border-light);
margin-top: 2rem;
}
.tags-f1-label {
font-family: 'Orbitron', sans-serif;
font-size: 0.6rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--text-muted);
margin-right: 0.5rem;
}
.tag-pill-f1 {
display: inline-block;
padding: 0.4rem 1rem;
background: transparent;
border: 1px solid var(--border);
border-radius: 4px;
font-family: 'Orbitron', sans-serif;
font-size: 0.6rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--text-soft);
text-decoration: none;
transition: all 0.3s;
}
.tag-pill-f1:hover {
border-color: var(--f1-red);
color: var(--f1-red);
background: rgba(225,6,0,0.03);
} .nav-post-f1 {
display: block;
background: var(--white);
border: 1px solid var(--border-light);
border-radius: 4px;
overflow: hidden;
text-decoration: none;
transition: all 0.3s;
box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.nav-post-f1:hover {
border-color: var(--f1-red);
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.nav-post-f1 img {
width: 100%;
aspect-ratio: 16/9;
object-fit: cover;
transition: transform 0.5s;
filter: saturate(0.9);
}
.nav-post-f1:hover img {
transform: scale(1.05);
filter: saturate(1);
}
.nav-post-body-f1 { padding: 1.5rem; }
.nav-post-label-f1 {
font-family: 'Orbitron', sans-serif;
font-size: 0.6rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--f1-red);
margin-bottom: 0.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.nav-post-title-f1 {
font-family: 'Oswald', sans-serif;
font-size: 1.25rem;
font-weight: 600;
color: var(--carbon);
line-height: 1.2;
text-transform: uppercase;
} .footer-f1 {
background: var(--carbon);
color: rgba(255,255,255,0.5);
padding: 4rem 0 2rem;
position: relative;
}
.footer-f1::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(to right, var(--f1-red), var(--lux-gold), var(--f1-red));
}
.footer-grid-f1 {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 3rem;
max-width: 1280px;
margin: 0 auto;
padding: 0 2rem;
}
@media (max-width: 768px) {
.footer-grid-f1 { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
}
.footer-brand-f1 p {
font-family: 'Inter', sans-serif;
font-size: 0.85rem;
font-weight: 300;
line-height: 1.7;
color: rgba(255,255,255,0.4);
margin-top: 1rem;
max-width: 300px;
}
@media (max-width: 768px) {
.footer-brand-f1 p { margin: 0 auto; }
}
.footer-links-f1 h4 {
font-family: 'Orbitron', sans-serif;
font-size: 0.6rem;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--lux-gold);
margin-bottom: 1.5rem;
}
.footer-links-f1 a {
display: block;
color: rgba(255,255,255,0.4);
text-decoration: none;
font-size: 0.85rem;
margin-bottom: 0.75rem;
transition: color 0.3s;
font-weight: 300;
}
.footer-links-f1 a:hover { color: var(--lux-gold); }
.footer-bottom-f1 {
border-top: 1px solid rgba(255,255,255,0.08);
margin-top: 3rem;
padding-top: 2rem;
text-align: center;
font-family: 'Orbitron', sans-serif;
font-size: 0.55rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: rgba(255,255,255,0.25);
} #scrollTop {
display: none;
position: fixed;
bottom: 30px;
right: 30px;
z-index: 9999;
width: 48px;
height: 48px;
align-items: center;
justify-content: center;
border: 2px solid var(--f1-red);
border-radius: 50%;
background: var(--white);
color: var(--f1-red);
cursor: pointer;
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
transition: all 0.3s ease;
}
#scrollTop:hover {
background: var(--f1-red);
border-color: var(--f1-red);
color: var(--white);
transform: translateY(-3px);
} .aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-soft); margin-top: 0.5rem; font-style: normal; } .gallery { display: grid; gap: 1rem; margin: 2rem 0; }
.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-item img { border-radius: 4px; width: 100%; height: auto; } .page-links {
display: flex;
gap: 0.5rem;
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid var(--border-light);
}
.page-links a,
.page-links span {
padding: 0.5rem 1rem;
border: 1px solid var(--border-light);
border-radius: 4px;
font-family: 'Orbitron', sans-serif;
font-size: 0.7rem;
text-decoration: none;
transition: all 0.3s;
}
.page-links a { color: var(--text-soft); background: var(--white); }
.page-links a:hover { background: var(--f1-red); color: var(--white); border-color: var(--f1-red); }
.page-links span { background: var(--carbon); color: var(--white); border-color: var(--carbon); } .prose-f1 {
max-width: 800px;
margin: 0 auto;
font-size: 1.05rem;
line-height: 1.8;
color: var(--text-soft);
font-weight: 300;
}
.prose-f1 h2,
.prose-f1 h3 {
font-family: 'Oswald', sans-serif;
color: var(--carbon);
margin-top: 2.5rem;
margin-bottom: 1rem;
font-weight: 600;
text-transform: uppercase;
}
.prose-f1 h2 { font-size: 1.75rem; }
.prose-f1 h3 { font-size: 1.35rem; }
.prose-f1 p { margin-bottom: 1.25rem; }
.prose-f1 a {
color: var(--f1-red);
text-decoration: none;
border-bottom: 1px solid transparent;
transition: border-color 0.3s;
}
.prose-f1 a:hover { border-bottom-color: var(--f1-red); }