@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Source+Sans+Pro:wght@300;400;600;700&display=swap"); :root {
--primary-color: #ef3340;
--primary-dark: #d12936;
--secondary-color: #1a1a1a;
--text-color: #222222;
--text-light: #444444;
--text-muted: #777777;
--border-color: #e0e0e0;
--border-light: #f0f0f0;
--bg-light: #f8f9fa;
--bg-white: #ffffff;
--bg-dark: #1a1a1a;
--font-heading: 'Merriweather', Georgia, serif;
--font-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
--shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
--shadow-md: 0 4px 15px rgba(0,0,0,0.08);
--shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
--shadow-card: 0 2px 8px rgba(0,0,0,0.06);
--transition: all 0.3s ease;
--container-width: 1280px;
}
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
font-family: var(--font-body);
font-size: 1rem;
line-height: 1.7;
color: var(--text-color);
background-color: #fafafa;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
color: var(--text-color);
text-decoration: none;
transition: var(--transition);
}
a:hover {
color: var(--primary-color);
}
img {
max-width: 100%;
height: auto;
display: block;
}
ul, ol {
list-style: none;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
font-weight: 700;
line-height: 1.3;
color: var(--secondary-color);
} .container {
max-width: var(--container-width);
margin: 0 auto;
padding: 0 25px;
}
.site-content {
padding: 30px 0 50px;
background: white;
}
.content-area {
display: flex;
gap: 40px;
}
.main-content {
flex: 1;
min-width: 0;
}
.main-content.full-width {
width: 100%;
}
.sidebar {
width: 320px;
flex-shrink: 0;
} .site-header {
background: var(--bg-white);
position: sticky;
top: 0;
z-index: 1000;
box-shadow: var(--shadow-sm);
}
.header-logo-section {
padding: 10px 0;
}
.site-branding {
display: block;
}
.site-logo img {
height: 70px;
width: auto;
max-width: 100%;
} .header-nav-section {
background: transparent;
border-top: 1px solid var(--primary-color);
border-bottom: 2px solid var(--primary-color);
}
.nav-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
}
.main-navigation {
flex: 1;
}
.nav-menu {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 0;
}
.nav-menu li {
position: relative;
}
.nav-menu li a {
display: block;
padding: 8px 18px;
font-family: var(--font-heading);
font-size: 15px;
font-weight: 700;
color: var(--secondary-color);
letter-spacing: 0.2px;
transition: var(--transition);
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a {
color: var(--primary-color);
} .nav-menu li ul.sub-menu {
position: absolute;
top: 100%;
left: 0;
background: var(--bg-white);
min-width: 240px;
box-shadow: var(--shadow-lg);
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: var(--transition);
z-index: 100;
border-top: 3px solid var(--primary-color);
}
.nav-menu li:hover > ul.sub-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.nav-menu li ul.sub-menu li a {
padding: 14px 20px;
border-bottom: 1px solid var(--border-light);
font-family: var(--font-heading);
font-size: 13px;
font-weight: 700;
}
.nav-menu li ul.sub-menu li:last-child a {
border-bottom: none;
} .header-search {
position: relative;
}
.search-toggle {
background: none;
border: none;
cursor: pointer;
padding: 16px 20px;
font-size: 16px;
color: var(--secondary-color);
transition: var(--transition);
}
.search-toggle:hover {
color: var(--primary-color);
}
.search-form-wrapper {
position: absolute;
top: 100%;
right: 0;
background: var(--bg-white);
padding: 20px;
box-shadow: var(--shadow-lg);
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: var(--transition);
z-index: 100;
min-width: 320px;
}
.search-form-wrapper.active {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.search-form {
display: flex;
}
.search-form input[type="search"] {
flex: 1;
padding: 12px 16px;
border: 2px solid var(--border-color);
border-right: none;
font-size: 14px;
font-family: var(--font-body);
outline: none;
transition: var(--transition);
}
.search-form input[type="search"]:focus {
border-color: var(--primary-color);
}
.search-form button {
padding: 12px 24px;
background: var(--primary-color);
border: 2px solid var(--primary-color);
color: white;
cursor: pointer;
transition: var(--transition);
font-weight: 600;
}
.search-form button:hover {
background: var(--primary-dark);
border-color: var(--primary-dark);
} .menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 15px;
margin-left: auto;
}
.menu-toggle span {
display: block;
width: 28px;
height: 3px;
background: var(--secondary-color);
margin: 5px 0;
transition: var(--transition);
border-radius: 2px;
} .category-badge {
display: inline-block;
padding: 5px 12px;
background: var(--primary-color);
color: white;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.8px;
position: absolute;
top: 15px;
left: 15px;
z-index: 2;
}
.category-badge:hover {
background: var(--primary-dark);
color: white;
} .section-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 25px;
padding-bottom: 10px;
border-bottom: 1px solid #ddd;
position: relative;
}
.section-title {
font-family: var(--font-heading);
font-size: 22px;
font-weight: 900;
color: var(--secondary-color);
margin: 0;
letter-spacing: -0.3px;
}
.section-title a {
color: var(--secondary-color);
}
.section-title a:hover {
color: var(--primary-color);
}
.section-nav {
display: flex;
align-items: center;
gap: 25px;
}
.subcategories {
display: flex;
align-items: center;
gap: 20px;
}
.subcategories a {
font-family: var(--font-heading);
font-size: 13px;
color: var(--text-muted);
font-weight: 700;
transition: var(--transition);
}
.subcategories a:hover {
color: var(--primary-color);
}
.view-all {
font-family: var(--font-heading);
font-size: 14px;
font-weight: 700;
color: var(--primary-color);
padding: 6px 16px;
border: 2px solid var(--primary-color);
border-radius: 4px;
}
.view-all:hover {
background: var(--primary-color);
color: white;
text-decoration: none;
}
} .hero-section-new {
margin-bottom: 40px;
}
.hero-grid {
display: grid;
grid-template-columns: 260px 1fr 260px;
gap: 25px;
}
.hero-col-left,
.hero-col-right {
display: flex;
flex-direction: column;
gap: 20px;
}
.hero-col-center {
display: flex;
}
.hero-small-card {
display: flex;
flex-direction: column;
}
.hero-small-image {
display: block;
position: relative;
height: 160px;
margin-bottom: 10px;
}
.hero-badge {
position: absolute;
top: 8px;
left: 8px;
background: var(--primary-color);
color: white;
font-size: 9px;
font-weight: 700;
text-transform: uppercase;
padding: 3px 8px;
}
.hero-small-title {
font-family: var(--font-heading);
font-size: 14px;
font-weight: 700;
line-height: 1.4;
margin-bottom: 5px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.hero-small-title a {
color: var(--secondary-color);
}
.hero-small-title a:hover {
color: var(--primary-color);
}
.hero-small-date {
font-size: 12px;
color: var(--text-muted);
}
.hero-large-card {
width: 100%;
}
.hero-large-image {
display: block;
position: relative;
height: 540px;
margin-bottom: 15px;
}
.hero-large-title {
font-family: var(--font-heading);
font-size: 24px;
font-weight: 700;
line-height: 1.35;
margin-bottom: 10px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.hero-large-title a {
color: var(--secondary-color);
}
.hero-large-title a:hover {
color: var(--primary-color);
}
.hero-large-excerpt {
font-size: 15px;
color: var(--text-light);
line-height: 1.6;
margin-bottom: 10px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.hero-large-date {
font-size: 13px;
color: var(--text-muted);
} .placeholder-image {
width: 100%;
height: 300px;
background: linear-gradient(135deg, #eee 0%, #ddd 100%);
}
.placeholder-image-small,
.placeholder-thumb {
width: 80px;
height: 60px;
background: linear-gradient(135deg, #eee 0%, #ddd 100%);
}
.placeholder-image-card {
width: 100%;
height: 165px;
background: linear-gradient(135deg, #444 0%, #666 100%);
} .category-section {
margin-bottom: 40px;
}
.category-section:last-child {
margin-bottom: 40px;
} .category-posts-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}
.category-post-card .post-thumbnail {
position: relative;
overflow: hidden;
margin-bottom: 15px;
}
.category-post-card .post-thumbnail img {
width: 100%;
height: 180px;
object-fit: cover;
transition: var(--transition);
}
.category-post-card .post-thumbnail:hover img {
transform: scale(1.03);
}
.category-post-card .post-thumbnail .placeholder-image {
height: 180px;
}
.category-post-card .post-title {
font-family: var(--font-heading);
font-size: 16px;
line-height: 1.45;
font-weight: 700;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.category-post-card .post-title a:hover {
color: var(--primary-color);
} .category-featured-layout {
display: grid;
grid-template-columns: 1fr 350px;
gap: 30px;
}
.category-featured-post .post-thumbnail {
position: relative;
overflow: hidden;
margin-bottom: 18px;
}
.category-featured-post .post-thumbnail img {
width: 100%;
height: 300px;
object-fit: cover;
transition: var(--transition);
}
.category-featured-post .post-thumbnail:hover img {
transform: scale(1.02);
}
.category-featured-post .post-title {
font-family: var(--font-heading);
font-size: 22px;
line-height: 1.4;
margin-bottom: 12px;
font-weight: 700;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.category-featured-post .post-title a:hover {
color: var(--primary-color);
}
.category-featured-post .post-excerpt {
color: var(--text-light);
font-size: 15px;
line-height: 1.6;
margin-bottom: 12px;
}
.category-side-posts {
display: flex;
flex-direction: column;
}
.side-post-item {
display: flex;
gap: 15px;
padding: 15px 0;
border-bottom: 1px solid var(--border-light);
}
.side-post-item:first-child {
padding-top: 0;
}
.side-post-item:last-child {
border-bottom: none;
}
.side-post-item .post-thumbnail {
width: 100px;
height: 75px;
flex-shrink: 0;
overflow: hidden;
}
.side-post-item .post-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
}
.side-post-item .post-info {
flex: 1;
}
.side-post-item .post-title {
font-family: var(--font-heading);
font-size: 14px;
line-height: 1.45;
font-weight: 700;
margin-bottom: 6px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.side-post-item .post-title a:hover {
color: var(--primary-color);
}
.side-post-item .post-date {
font-size: 12px;
color: var(--text-muted);
} .category-five-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 20px;
}
.grid-post-card .post-thumbnail {
position: relative;
overflow: hidden;
margin-bottom: 12px;
}
.grid-post-card .post-thumbnail img {
width: 100%;
height: 140px;
object-fit: cover;
transition: var(--transition);
}
.grid-post-card .post-thumbnail:hover img {
transform: scale(1.03);
}
.grid-post-card .post-title {
font-family: var(--font-heading);
font-size: 14px;
line-height: 1.45;
font-weight: 700;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.grid-post-card .post-title a:hover {
color: var(--primary-color);
} .trending-section {
margin-bottom: 50px;
margin-top: 30px;
}
.trending-section .section-header {
border-bottom-color: var(--primary-color);
}
.trending-posts {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 25px;
}
.trending-item {
display: flex;
gap: 15px;
align-items: flex-start;
}
.trend-number {
font-family: var(--font-heading);
font-size: 36px;
font-weight: 900;
color: var(--primary-color);
line-height: 1;
opacity: 0.3;
}
.trend-content {
flex: 1;
}
.trend-content .post-title {
font-family: var(--font-heading);
font-size: 15px;
line-height: 1.45;
font-weight: 700;
margin-bottom: 8px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.trend-content .post-title a:hover {
color: var(--primary-color);
}
.trend-content .post-meta {
font-size: 12px;
color: var(--text-muted);
}
.trend-content .post-meta .category-badge {
position: static;
padding: 2px 8px;
font-size: 9px;
} .latest-news-section {
margin-bottom: 50px;
}
.latest-news-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}
.latest-post-card {
background: var(--bg-white);
border: 1px solid var(--border-light);
transition: var(--transition);
}
.latest-post-card:hover {
box-shadow: var(--shadow-md);
}
.latest-post-card .post-thumbnail {
position: relative;
overflow: hidden;
}
.latest-post-card .post-thumbnail img {
width: 100%;
height: 180px;
object-fit: cover;
transition: var(--transition);
}
.latest-post-card .post-thumbnail:hover img {
transform: scale(1.03);
}
.latest-post-card .post-content {
padding: 20px;
}
.latest-post-card .post-title {
font-family: var(--font-heading);
font-size: 16px;
line-height: 1.45;
font-weight: 700;
margin-bottom: 10px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.latest-post-card .post-title a:hover {
color: var(--primary-color);
}
.latest-post-card .post-meta {
font-size: 13px;
color: var(--text-muted);
} .editors-picks-section {
margin-bottom: 50px;
}
.editors-picks-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.editors-pick-card {
position: relative;
border-radius: 4px;
overflow: hidden;
height: 280px;
}
.editors-pick-card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}
.editors-pick-card:hover img {
transform: scale(1.05);
}
.editors-pick-card .card-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 80px 20px 20px;
background: linear-gradient(transparent, rgba(0,0,0,0.9));
}
.editors-pick-card .card-overlay .category-badge {
position: static;
margin-bottom: 10px;
}
.editors-pick-card .card-title {
font-family: var(--font-heading);
font-size: 17px;
color: white;
line-height: 1.4;
font-weight: 700;
margin-bottom: 8px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.editors-pick-card .card-date {
font-size: 12px;
color: rgba(255,255,255,0.7);
}
.placeholder-image-large {
width: 100%;
height: 280px;
background: linear-gradient(135deg, #444 0%, #555 100%);
} .archive-header {
margin-bottom: 30px;
padding-bottom: 15px;
border-bottom: 1px solid #ddd;
}
.archive-title {
font-family: var(--font-heading);
font-size: 28px;
margin-bottom: 8px;
}
.archive-description {
color: var(--text-light);
font-size: 16px;
line-height: 1.6;
}
.posts-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}
.posts-grid.three-cols {
grid-template-columns: repeat(3, 1fr);
} .post-card {
background: var(--bg-white);
}
.post-card .post-thumbnail {
position: relative;
overflow: hidden;
margin-bottom: 15px;
}
.post-card .post-thumbnail img {
width: 100%;
height: 200px;
object-fit: cover;
transition: var(--transition);
}
.post-card .post-thumbnail:hover img {
transform: scale(1.03);
}
.post-card .post-title {
font-family: var(--font-heading);
font-size: 17px;
line-height: 1.45;
font-weight: 700;
margin-bottom: 10px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.post-card .post-title a:hover {
color: var(--primary-color);
}
.post-card .post-meta {
font-size: 13px;
color: var(--text-muted);
}
.post-card .post-meta a {
color: var(--text-muted);
}
.post-card .post-meta a:hover {
color: var(--primary-color);
} .single-post-content-area {
display: flex;
gap: 40px;
}
.single-post-main {
flex: 1;
min-width: 0;
}
.single-post-header {
margin-bottom: 25px;
}
.single-post-header .category-badge {
position: static;
margin-bottom: 15px;
}
.single-post-title {
font-family: var(--font-heading);
font-size: 36px;
line-height: 1.3;
margin-bottom: 15px;
}
.single-post-meta {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 0;
border-top: 1px solid var(--border-light);
border-bottom: 1px solid var(--border-light);
font-size: 14px;
color: var(--text-light);
}
.single-post-meta .meta-left {
display: flex;
align-items: center;
gap: 5px;
}
.single-post-meta .meta-left .author a {
color: var(--secondary-color);
font-weight: 600;
}
.single-post-meta .meta-left .author a:hover {
color: var(--primary-color);
}
.single-post-meta .meta-left .date-time {
color: var(--text-muted);
}
.single-post-meta .meta-left .date-time::before {
content: "•";
margin: 0 8px;
}
.single-post-meta .meta-share {
display: flex;
align-items: center;
gap: 12px;
}
.single-post-meta .meta-share a {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
background: #f5f5f5;
color: #555;
border-radius: 50%;
font-size: 14px;
transition: var(--transition);
}
.single-post-meta .meta-share a:hover {
background: var(--primary-color);
color: white;
}
.single-post-featured-image {
margin-bottom: 25px;
}
.single-post-featured-image img {
width: 100%;
height: auto;
}
.single-post-content {
font-size: 16px;
line-height: 1.75;
}
.single-post-content p {
margin-bottom: 18px;
}
.single-post-content h2 {
font-size: 24px;
margin: 30px 0 15px;
}
.single-post-content h3 {
font-size: 20px;
margin: 25px 0 12px;
}
.single-post-content h4 {
font-size: 18px;
margin: 20px 0 10px;
}
.single-post-content img {
margin: 20px 0;
}
.single-post-content blockquote {
border-left: 4px solid var(--primary-color);
padding: 15px 20px;
margin: 25px 0;
background: var(--bg-light);
font-style: italic;
font-size: 17px;
}
.single-post-content ul,
.single-post-content ol {
margin: 22px 0;
padding-left: 35px;
}
.single-post-content li {
margin-bottom: 12px;
list-style: disc;
}
.single-post-content ol li {
list-style: decimal;
} .post-tags {
margin-top: 40px;
padding-top: 25px;
border-top: 1px solid var(--border-color);
}
.post-tags span {
font-weight: 700;
margin-right: 12px;
}
.post-tags a {
display: inline-block;
padding: 6px 14px;
background: var(--bg-light);
font-size: 13px;
margin: 5px 5px 5px 0;
border-radius: 3px;
font-weight: 500;
}
.post-tags a:hover {
background: var(--primary-color);
color: white;
} .page-header {
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 1px solid #ddd;
}
.page-title {
font-family: var(--font-heading);
font-size: 32px;
font-weight: 700;
}
.page-featured-image {
margin-bottom: 25px;
}
.page-featured-image img {
width: 100%;
height: auto;
}
.page-content {
font-size: 16px;
line-height: 1.75;
}
.page-content p {
margin-bottom: 18px;
}
.page-content h2 {
font-size: 24px;
margin: 30px 0 15px;
}
.page-content h3 {
font-size: 20px;
margin: 25px 0 12px;
}
.page-content h4 {
font-size: 18px;
margin: 20px 0 10px;
}
.page-content img {
margin: 20px 0;
}
.page-content ul,
.page-content ol {
margin-bottom: 18px;
padding-left: 25px;
}
.page-content ul {
list-style: disc;
}
.page-content ol {
list-style: decimal;
}
.page-content li {
margin-bottom: 8px;
} .author-box {
margin-top: 45px;
padding: 30px;
background: var(--bg-light);
display: flex;
gap: 25px;
}
.author-box .author-avatar {
width: 100px;
height: 100px;
border-radius: 50%;
overflow: hidden;
flex-shrink: 0;
}
.author-box .author-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.author-box .author-info h4 {
font-family: var(--font-heading);
font-size: 20px;
margin-bottom: 10px;
}
.author-box .author-info p {
color: var(--text-light);
font-size: 15px;
line-height: 1.7;
} .post-navigation {
margin-top: 45px;
display: flex;
justify-content: space-between;
gap: 30px;
border-top: 1px solid var(--border-color);
padding-top: 30px;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
flex: 1;
max-width: 45%;
}
.post-navigation .nav-next {
text-align: right;
}
.post-navigation span {
display: block;
font-size: 12px;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 8px;
font-weight: 600;
}
.post-navigation a {
font-family: var(--font-heading);
font-weight: 700;
font-size: 16px;
line-height: 1.4;
} .related-posts {
margin-top: 50px;
}
.related-posts .section-title {
font-size: 22px;
}
.related-posts-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
} .sidebar .widget {
margin-bottom: 40px;
background: var(--bg-white);
}
.sidebar .widget-title {
font-family: var(--font-heading);
font-size: 18px;
font-weight: 700;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 2px solid var(--secondary-color);
position: relative;
} .sidebar .widget-posts-list .widget-post-item {
display: flex;
gap: 15px;
padding: 15px 0;
border-bottom: 1px solid var(--border-light);
align-items: flex-start;
}
.sidebar .widget-posts-list .widget-post-item:first-child {
padding-top: 0;
}
.sidebar .widget-posts-list .widget-post-item:last-child {
border-bottom: none;
}
.sidebar .widget-posts-list .post-number {
font-family: var(--font-heading);
font-size: 22px;
font-weight: 900;
color: var(--primary-color);
opacity: 0.4;
line-height: 1;
min-width: 25px;
}
.sidebar .widget-posts-list .post-thumbnail {
width: 80px;
height: 60px;
flex-shrink: 0;
overflow: hidden;
}
.sidebar .widget-posts-list .post-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
}
.sidebar .widget-posts-list .post-info {
flex: 1;
min-width: 0;
}
.sidebar .widget-posts-list .post-title {
font-family: var(--font-heading);
font-size: 14px;
line-height: 1.45;
font-weight: 700;
margin-bottom: 5px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.sidebar .widget-posts-list .post-title a:hover {
color: var(--primary-color);
}
.sidebar .widget-posts-list .post-date {
font-size: 12px;
color: var(--text-muted);
} .author-header {
display: flex;
gap: 35px;
margin-bottom: 45px;
padding: 35px;
background: var(--bg-light);
}
.author-header .author-avatar {
width: 150px;
height: 150px;
border-radius: 50%;
overflow: hidden;
flex-shrink: 0;
}
.author-header .author-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.author-header .author-info {
flex: 1;
}
.author-header .author-name {
font-family: var(--font-heading);
font-size: 32px;
margin-bottom: 12px;
}
.author-header .author-bio {
color: var(--text-light);
line-height: 1.7;
font-size: 16px;
} .search-header {
margin-bottom: 40px;
padding-bottom: 25px;
border-bottom: 2px solid var(--secondary-color);
}
.search-header h1 {
font-family: var(--font-heading);
font-size: 28px;
}
.search-header h1 span {
color: var(--primary-color);
}
.search-header .search-form {
margin-top: 25px;
max-width: 500px;
} .error-404 {
text-align: center;
padding: 100px 20px;
}
.error-404 .error-code {
font-family: var(--font-heading);
font-size: 180px;
font-weight: 900;
color: var(--primary-color);
line-height: 1;
margin-bottom: 25px;
opacity: 0.2;
}
.error-404 h1 {
font-family: var(--font-heading);
font-size: 36px;
margin-bottom: 20px;
}
.error-404 p {
color: var(--text-light);
font-size: 18px;
margin-bottom: 35px;
}
.error-404 .search-form {
max-width: 500px;
margin: 0 auto 35px;
}
.error-404 .btn {
display: inline-block;
padding: 14px 35px;
background: var(--primary-color);
color: white;
font-weight: 700;
border-radius: 3px;
font-size: 15px;
}
.error-404 .btn:hover {
background: var(--primary-dark);
color: white;
} .pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
margin-top: 50px;
padding-top: 40px;
border-top: 1px solid var(--border-color);
}
.pagination a,
.pagination span {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 45px;
height: 45px;
padding: 0 15px;
background: var(--bg-light);
color: var(--text-color);
font-weight: 600;
border-radius: 3px;
transition: var(--transition);
}
.pagination a:hover,
.pagination span.current {
background: var(--primary-color);
color: white;
}
.pagination .dots {
background: none;
} .site-footer {
background: var(--bg-dark);
color: #aaa;
padding-top: 60px;
}
.footer-widgets {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 45px;
padding-bottom: 50px;
}
.footer-widget .widget-title {
color: white;
font-family: var(--font-heading);
font-size: 18px;
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 1px solid #333;
}
.footer-widget ul li {
padding: 10px 0;
border-bottom: 1px solid #2a2a2a;
}
.footer-widget ul li:last-child {
border-bottom: none;
}
.footer-widget ul li a {
color: #aaa;
font-size: 15px;
}
.footer-widget ul li a:hover {
color: var(--primary-color);
}
.footer-widget p {
line-height: 1.7;
font-size: 15px;
}
.footer-logo {
margin-bottom: 20px;
}
.footer-logo img {
max-height: 50px;
}
.footer-social {
margin-top: 25px;
}
.footer-social a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 42px;
height: 42px;
background: #2a2a2a;
color: #aaa;
margin-right: 10px;
border-radius: 50%;
transition: var(--transition);
}
.footer-social a:hover {
background: var(--primary-color);
color: white;
} .footer-bottom {
border-top: 1px solid #2a2a2a;
padding: 25px 0;
display: flex;
justify-content: space-between;
align-items: center;
}
.copyright {
font-size: 14px;
}
.footer-menu ul {
display: flex;
gap: 30px;
}
.footer-menu ul li a {
color: #aaa;
font-size: 14px;
}
.footer-menu ul li a:hover {
color: var(--primary-color);
} .back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background: var(--primary-color);
color: white;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
cursor: pointer;
opacity: 0;
visibility: hidden;
transition: var(--transition);
z-index: 999;
border: none;
font-size: 20px;
}
.back-to-top.visible {
opacity: 1;
visibility: visible;
}
.back-to-top:hover {
background: var(--primary-dark);
transform: translateY(-3px);
} .comments-area {
margin-top: 50px;
}
.comments-title {
font-family: var(--font-heading);
font-size: 24px;
margin-bottom: 30px;
}
.comment-list {
margin-bottom: 40px;
}
.comment {
display: flex;
gap: 20px;
margin-bottom: 30px;
padding-bottom: 30px;
border-bottom: 1px solid var(--border-color);
}
.comment .comment-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
overflow: hidden;
flex-shrink: 0;
}
.comment .comment-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.comment .comment-content {
flex: 1;
}
.comment .comment-author {
font-family: var(--font-heading);
font-weight: 700;
margin-bottom: 5px;
}
.comment .comment-date {
font-size: 13px;
color: var(--text-muted);
margin-bottom: 12px;
}
.comment .comment-text {
color: var(--text-light);
line-height: 1.7;
}
.comment .comment-reply-link {
display: inline-block;
margin-top: 12px;
font-size: 13px;
color: var(--primary-color);
font-weight: 600;
}
.comment .children {
margin-left: 50px;
margin-top: 30px;
} .comment-respond {
background: var(--bg-light);
padding: 35px;
}
.comment-respond h3 {
font-family: var(--font-heading);
font-size: 22px;
margin-bottom: 25px;
}
.comment-form .form-group,
.comment-form p {
margin-bottom: 20px;
}
.comment-form label {
display: block;
margin-bottom: 8px;
font-weight: 600;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
width: 100%;
padding: 14px 18px;
border: 2px solid var(--border-color);
background: white;
font-size: 15px;
font-family: var(--font-body);
outline: none;
transition: var(--transition);
}
.comment-form input:focus,
.comment-form textarea:focus {
border-color: var(--primary-color);
}
.comment-form textarea {
min-height: 160px;
resize: vertical;
}
.comment-form .submit {
padding: 14px 35px;
background: var(--primary-color);
color: white;
border: none;
font-weight: 700;
cursor: pointer;
transition: var(--transition);
font-size: 15px;
}
.comment-form .submit:hover {
background: var(--primary-dark);
} @media (max-width: 1200px) {
.hero-grid {
grid-template-columns: 220px 1fr 220px;
gap: 20px;
}
.hero-small-image {
height: 130px;
}
.hero-large-image {
height: 480px;
}
.hero-large-title {
font-size: 20px;
}
.hero-style-layout {
gap: 20px;
}
.panel-hero-style .hs-list {
width: 240px;
}
.panel-hero-style .hs-cards {
width: 200px;
}
.category-posts-grid,
.latest-news-grid,
.editors-picks-grid,
.posts-grid {
grid-template-columns: repeat(3, 1fr);
}
.category-five-grid {
grid-template-columns: repeat(4, 1fr);
}
.trending-posts {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 992px) {
.hero-grid {
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.hero-col-center {
grid-column: span 2;
order: -1;
}
.hero-large-image {
height: 400px;
}
.hero-style-layout {
flex-wrap: wrap;
}
.panel-hero-style .hs-main {
width: 100%;
flex: none;
}
.panel-hero-style .hs-list,
.panel-hero-style .hs-cards {
flex: 1;
width: auto;
}
.category-featured-layout {
grid-template-columns: 1fr;
}
.category-side-posts {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin-top: 25px;
}
.side-post-item {
border-bottom: none;
padding: 0;
}
.category-posts-grid,
.latest-news-grid,
.editors-picks-grid,
.posts-grid {
grid-template-columns: repeat(2, 1fr);
}
.category-five-grid {
grid-template-columns: repeat(3, 1fr);
}
.trending-posts {
grid-template-columns: repeat(2, 1fr);
}
.footer-widgets {
grid-template-columns: repeat(2, 1fr);
}
.single-post-content-area {
flex-direction: column;
}
.sidebar {
width: 100%;
}
}
@media (max-width: 768px) {
.nav-wrapper {
position: relative;
}
.main-navigation {
position: fixed;
top: 0;
left: -300px;
width: 300px;
height: 100vh;
background: white;
padding: 70px 25px 25px;
box-shadow: var(--shadow-lg);
transition: var(--transition);
z-index: 1000;
overflow-y: auto;
}
.main-navigation.active {
left: 0;
}
.nav-menu {
flex-direction: column;
align-items: stretch;
}
.nav-menu li a {
padding: 15px 0;
border-bottom: 1px solid var(--border-light);
}
.menu-toggle {
display: block;
}
.header-search {
margin-left: auto;
margin-right: 10px;
}
.hero-grid {
grid-template-columns: 1fr;
}
.hero-col-center {
grid-column: auto;
}
.hero-col-left,
.hero-col-right {
display: none;
}
.hero-style-layout {
flex-direction: column;
}
.panel-hero-style .hs-list,
.panel-hero-style .hs-cards {
width: 100%;
}
.panel-hero-style .hs-cards {
flex-direction: row;
}
.category-posts-grid,
.latest-news-grid,
.editors-picks-grid,
.posts-grid,
.category-five-grid,
.category-side-posts {
grid-template-columns: 1fr;
}
.trending-posts {
grid-template-columns: 1fr;
}
.related-posts-grid {
grid-template-columns: 1fr;
}
.footer-widgets {
grid-template-columns: 1fr;
}
.footer-bottom {
flex-direction: column;
gap: 20px;
text-align: center;
}
.author-header {
flex-direction: column;
text-align: center;
}
.author-header .author-avatar {
margin: 0 auto;
}
.single-post-title {
font-size: 28px;
}
.error-404 .error-code {
font-size: 120px;
}
.trending-section {
padding-top: 20px;
}
}
@media (max-width: 480px) {
.container {
padding: 0 15px;
}
.site-logo img {
height: 55px;
}
.hero-main .hero-title {
font-size: 20px;
}
.hero-cards {
flex-direction: column;
}
.section-title {
font-size: 20px;
}
.single-post-title {
font-size: 24px;
}
.single-post-meta {
flex-wrap: wrap;
}
.post-navigation {
flex-direction: column;
gap: 25px;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
max-width: 100%;
text-align: left;
}
.author-box {
flex-direction: column;
text-align: center;
}
.author-box .author-avatar {
margin: 0 auto;
}
} .dual-featured-section {
margin-bottom: 40px;
}
.dual-featured-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.dual-featured-column .section-header {
margin-bottom: 15px;
padding-bottom: 10px;
}
.dual-featured-article .post-thumbnail {
position: relative;
overflow: hidden;
margin-bottom: 12px;
}
.dual-featured-article .post-thumbnail img {
width: 100%;
height: 250px;
object-fit: cover;
transition: var(--transition);
}
.dual-featured-article .post-thumbnail:hover img {
transform: scale(1.03);
}
.dual-featured-article .post-title {
font-family: var(--font-heading);
font-size: 20px;
line-height: 1.4;
font-weight: 700;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.dual-featured-article .post-title a:hover {
color: var(--primary-color);
} .dual-category-section {
margin-bottom: 40px;
}
.dual-category-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
}
.dual-category-column .section-header {
border-bottom-width: 1px;
margin-bottom: 20px;
padding-bottom: 12px;
} .dual-grid-posts {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.dual-grid-card {
background: var(--bg-white);
}
.dual-grid-card .post-thumbnail {
position: relative;
overflow: hidden;
margin-bottom: 10px;
}
.dual-grid-card .post-thumbnail img {
width: 100%;
height: 140px;
object-fit: cover;
transition: var(--transition);
}
.dual-grid-card .post-thumbnail:hover img {
transform: scale(1.03);
}
.dual-grid-card .post-title {
font-family: var(--font-heading);
font-size: 14px;
line-height: 1.4;
font-weight: 700;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.dual-grid-card .post-title a:hover {
color: var(--primary-color);
} .more-stories-section {
margin-bottom: 50px;
}
.more-stories-section .posts-grid {
grid-template-columns: repeat(4, 1fr);
} .panel-hero-style {
margin-bottom: 50px;
}
.hero-style-layout {
display: flex;
gap: 25px;
}
.panel-hero-style .hs-main {
flex: 1;
min-width: 0;
}
.panel-hero-style .hs-main-image {
display: block;
position: relative;
height: 300px;
margin-bottom: 12px;
}
.panel-hero-style .hs-badge {
position: absolute;
top: 10px;
left: 10px;
background: var(--primary-color);
color: white;
font-size: 9px;
font-weight: 700;
text-transform: uppercase;
padding: 3px 8px;
}
.panel-hero-style .hs-main-title {
font-family: var(--font-heading);
font-size: 22px;
font-weight: 700;
line-height: 1.35;
margin-bottom: 8px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.panel-hero-style .hs-main-title a {
color: var(--secondary-color);
}
.panel-hero-style .hs-main-title a:hover {
color: var(--primary-color);
}
.panel-hero-style .hs-main-date {
font-size: 12px;
color: var(--text-muted);
}
.panel-hero-style .hs-list {
width: 280px;
flex-shrink: 0;
}
.panel-hero-style .hs-list-item {
display: flex;
gap: 12px;
padding: 8px 0;
}
.panel-hero-style .hs-list-image {
display: block;
width: 70px;
height: 55px;
flex-shrink: 0;
}
.panel-hero-style .hs-list-content {
flex: 1;
min-width: 0;
}
.panel-hero-style .hs-list-title {
font-family: var(--font-heading);
font-size: 13px;
font-weight: 700;
line-height: 1.4;
margin-bottom: 5px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.panel-hero-style .hs-list-title a {
color: var(--secondary-color);
}
.panel-hero-style .hs-list-title a:hover {
color: var(--primary-color);
}
.panel-hero-style .hs-list-date {
font-size: 11px;
color: var(--text-muted);
}
.panel-hero-style .hs-cards {
width: 240px;
flex-shrink: 0;
display: flex;
flex-direction: column;
gap: 15px;
}
.panel-hero-style .hs-card {
position: relative;
height: 165px;
}
.panel-hero-style .hs-card-link {
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.panel-hero-style .hs-card-badge {
position: absolute;
top: 8px;
left: 8px;
background: var(--primary-color);
color: white;
font-size: 9px;
font-weight: 700;
text-transform: uppercase;
padding: 3px 8px;
z-index: 2;
}
.panel-hero-style .hs-card-content {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 40px 12px 12px;
background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.panel-hero-style .hs-card-title {
font-family: var(--font-heading);
font-size: 13px;
font-weight: 700;
color: white;
line-height: 1.35;
margin-bottom: 5px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.panel-hero-style .hs-card-date {
font-size: 11px;
color: rgba(255,255,255,0.7);
} .panel-overlay {
margin-bottom: 50px;
}
.panel-overlay .overlay-cards-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.panel-overlay .overlay-card {
position: relative;
overflow: hidden;
}
.panel-overlay .overlay-card a {
display: block;
position: relative;
}
.panel-overlay .overlay-card img {
width: 100%;
height: 380px;
object-fit: cover;
transition: transform 0.6s ease;
}
.panel-overlay .overlay-card:hover img {
transform: scale(1.1);
}
.panel-overlay .overlay-content {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 100px 18px 20px;
background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.9) 100%);
color: white;
}
.panel-overlay .overlay-badge {
display: inline-block;
background: var(--primary-color);
color: white;
font-family: var(--font-body);
font-size: 9px;
font-weight: 700;
text-transform: uppercase;
padding: 5px 10px;
margin-bottom: 12px;
letter-spacing: 0.5px;
border-radius: 3px;
}
.panel-overlay .overlay-title {
font-family: var(--font-heading);
font-size: 16px;
font-weight: 700;
line-height: 1.4;
color: white;
margin-bottom: 8px;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.panel-overlay .overlay-date {
font-size: 12px;
opacity: 0.8;
font-weight: 500;
} .panel-horizontal {
margin-bottom: 50px;
}
.panel-horizontal .horizontal-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}
.panel-horizontal .h-card {
display: flex;
gap: 20px;
overflow: hidden;
transition: var(--transition);
}
.panel-horizontal .h-card:hover {
transform: translateY(-3px);
}
.panel-horizontal .h-image {
position: relative;
width: 240px;
flex-shrink: 0;
overflow: hidden;
}
.panel-horizontal .h-image img {
width: 100%;
height: 100%;
min-height: 160px;
object-fit: cover;
transition: transform 0.5s ease;
}
.panel-horizontal .h-card:hover .h-image img {
transform: scale(1.08);
}
.panel-horizontal .h-badge {
position: absolute;
top: 10px;
left: 10px;
background: var(--primary-color);
color: white;
font-family: var(--font-body);
font-size: 9px;
font-weight: 700;
text-transform: uppercase;
padding: 4px 10px;
letter-spacing: 0.5px;
border-radius: 3px;
}
.panel-horizontal .h-content {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
padding: 18px 18px 18px 0;
}
.panel-horizontal .h-content .post-title {
font-family: var(--font-heading);
font-size: 17px;
font-weight: 700;
line-height: 1.4;
margin-bottom: 10px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.panel-horizontal .h-content .post-title a {
color: var(--secondary-color);
}
.panel-horizontal .h-content .post-title a:hover {
color: var(--primary-color);
}
.panel-horizontal .h-content .post-excerpt {
font-size: 14px;
color: var(--text-light);
line-height: 1.6;
margin-bottom: 12px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.panel-horizontal .h-content .post-date {
font-size: 13px;
color: var(--text-muted);
margin-top: auto;
} .panel-1plus6 {
margin-bottom: 50px;
}
.panel-1plus6 .layout-1plus6 {
display: grid;
grid-template-columns: 380px 1fr;
gap: 30px;
align-items: start;
}
.panel-1plus6 .l16-featured {
position: relative;
overflow: hidden;
}
.panel-1plus6 .l16-featured:hover {
}
.panel-1plus6 .l16-image {
position: relative;
overflow: hidden;
}
.panel-1plus6 .l16-image img {
width: 100%;
height: 280px;
object-fit: cover;
transition: transform 0.5s ease;
}
.panel-1plus6 .l16-featured:hover .l16-image img {
transform: scale(1.05);
}
.panel-1plus6 .l16-badge {
position: absolute;
bottom: 12px;
left: 12px;
background: var(--primary-color);
color: white;
font-family: var(--font-body);
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
padding: 5px 12px;
letter-spacing: 0.5px;
border-radius: 3px;
}
.panel-1plus6 .l16-content {
padding: 18px;
}
.panel-1plus6 .l16-content .post-title {
font-family: var(--font-heading);
font-size: 20px;
font-weight: 700;
line-height: 1.35;
margin-bottom: 10px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.panel-1plus6 .l16-content .post-title a {
color: var(--secondary-color);
}
.panel-1plus6 .l16-content .post-title a:hover {
color: var(--primary-color);
}
.panel-1plus6 .l16-content .post-excerpt {
font-size: 14px;
color: var(--text-light);
line-height: 1.65;
margin-bottom: 12px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.panel-1plus6 .l16-content .post-meta {
display: flex;
align-items: center;
gap: 8px;
font-size: 12px;
color: var(--text-muted);
font-weight: 500;
}
.panel-1plus6 .l16-content .post-author {
font-weight: 600;
}
.panel-1plus6 .l16-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.panel-1plus6 .l16-card {
display: flex;
flex-direction: column;
overflow: hidden;
transition: var(--transition);
}
.panel-1plus6 .l16-card:hover {
transform: translateY(-4px);
}
.panel-1plus6 .l16-card-image {
position: relative;
overflow: hidden;
}
.panel-1plus6 .l16-card-image img {
width: 100%;
height: 120px;
object-fit: cover;
transition: transform 0.5s ease;
}
.panel-1plus6 .l16-card:hover .l16-card-image img {
transform: scale(1.08);
}
.panel-1plus6 .l16-card-badge {
position: absolute;
top: 8px;
left: 8px;
background: var(--primary-color);
color: white;
font-family: var(--font-body);
font-size: 9px;
font-weight: 700;
text-transform: uppercase;
padding: 3px 8px;
letter-spacing: 0.3px;
border-radius: 3px;
}
.panel-1plus6 .l16-card .post-title {
font-family: var(--font-heading);
font-size: 13px;
font-weight: 700;
line-height: 1.4;
padding-top: 10px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.panel-1plus6 .l16-card .post-title a {
color: var(--secondary-color);
}
.panel-1plus6 .l16-card .post-title a:hover {
color: var(--primary-color);
}
.panel-1plus6 .l16-card .post-date {
font-size: 11px;
color: var(--text-muted);
font-weight: 500;
padding-top: 5px;
} @media (max-width: 1200px) {
.panel-hero-style .hs-main-image {
height: 260px;
}
.panel-hero-style .hs-main-title {
font-size: 18px;
}
.panel-overlay .overlay-cards-grid {
grid-template-columns: repeat(2, 1fr);
}
.panel-overlay .overlay-card img {
height: 320px;
}
.panel-horizontal .h-image {
width: 200px;
}
.panel-1plus6 .layout-1plus6 {
grid-template-columns: 320px 1fr;
gap: 25px;
}
.panel-1plus6 .l16-image img {
height: 240px;
}
.panel-1plus6 .l16-grid {
gap: 15px;
}
.panel-1plus6 .l16-card-image img {
height: 100px;
}
}
@media (max-width: 992px) {
.panel-hero-style .hero-style-layout {
flex-wrap: wrap;
}
.panel-hero-style .hs-main {
width: 100%;
}
.panel-hero-style .hs-list,
.panel-hero-style .hs-cards {
flex: 1;
width: auto;
}
.panel-horizontal .horizontal-grid {
grid-template-columns: 1fr;
}
.panel-horizontal .h-image {
width: 220px;
}
.panel-1plus6 .layout-1plus6 {
grid-template-columns: 1fr;
}
.panel-1plus6 .l16-image img {
height: 280px;
}
.panel-1plus6 .l16-grid {
grid-template-columns: repeat(3, 1fr);
}
.dual-featured-grid {
grid-template-columns: 1fr;
gap: 30px;
}
.dual-category-grid {
grid-template-columns: 1fr;
gap: 40px;
}
.dual-grid-posts {
grid-template-columns: repeat(2, 1fr);
}
.more-stories-section .posts-grid {
grid-template-columns: repeat(2, 1fr);
}
.subcategories {
gap: 10px;
}
.subcategories a {
font-size: 12px;
}
.panel-hero-style,
.panel-1plus6,
.panel-overlay,
.panel-horizontal {
margin-bottom: 35px;
}
}
@media (max-width: 768px) {
.panel-hero-style .hero-style-layout {
flex-direction: column;
}
.panel-hero-style .hs-list,
.panel-hero-style .hs-cards {
width: 100%;
}
.panel-hero-style .hs-cards {
flex-direction: row;
}
.panel-overlay .overlay-cards-grid {
grid-template-columns: 1fr;
}
.panel-overlay .overlay-card img {
height: 280px;
}
.panel-horizontal .h-card {
flex-direction: column;
}
.panel-horizontal .h-image {
width: 100%;
}
.panel-horizontal .h-image img {
height: 200px;
}
.panel-horizontal .h-content {
padding: 15px;
}
.panel-1plus6 .l16-grid {
grid-template-columns: repeat(2, 1fr);
}
.more-stories-section .posts-grid {
grid-template-columns: 1fr;
}
.dual-grid-posts {
grid-template-columns: 1fr;
}
.section-header {
flex-wrap: wrap;
gap: 15px;
}
.section-nav {
flex-wrap: wrap;
gap: 10px;
}
.subcategories {
display: none;
}
.section-title {
font-size: 22px;
}
.view-all {
font-size: 12px;
padding: 5px 12px;
}
.panel-hero-style .hs-cards {
flex-direction: column;
}
.panel-hero-style .hs-card {
height: 140px;
}
} .text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.hidden { display: none; }
.visible { display: block; } .screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
} .alignleft {
float: left;
margin-right: 25px;
margin-bottom: 15px;
}
.alignright {
float: right;
margin-left: 25px;
margin-bottom: 15px;
}
.aligncenter {
display: block;
margin: 25px auto;
}
.alignwide {
margin-left: -60px;
margin-right: -60px;
max-width: calc(100% + 120px);
}
.alignfull {
margin-left: calc(-50vw + 50%);
margin-right: calc(-50vw + 50%);
max-width: 100vw;
} .wp-caption {
max-width: 100%;
margin-bottom: 25px;
}
.wp-caption img {
display: block;
max-width: 100%;
}
.wp-caption-text {
font-size: 13px;
color: var(--text-muted);
text-align: center;
padding: 12px 0;
font-style: italic;
} .gallery {
display: grid;
gap: 15px;
margin-bottom: 25px;
}
.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-item img {
width: 100%;
height: auto;
}