@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;
}.mejs-offscreen{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}.mejs-container{background:#000;font-family:Helvetica,Arial,serif;position:relative;text-align:left;text-indent:0;vertical-align:top}.mejs-container,.mejs-container *{box-sizing:border-box}.mejs-container video::-webkit-media-controls,.mejs-container video::-webkit-media-controls-panel,.mejs-container video::-webkit-media-controls-panel-container,.mejs-container video::-webkit-media-controls-start-playback-button{-webkit-appearance:none;display:none!important}.mejs-fill-container,.mejs-fill-container .mejs-container{height:100%;width:100%}.mejs-fill-container{background:transparent;margin:0 auto;overflow:hidden;position:relative}.mejs-container:focus{outline:none}.mejs-iframe-overlay{height:100%;position:absolute;width:100%}.mejs-embed,.mejs-embed body{background:#000;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.mejs-fullscreen{overflow:hidden!important}.mejs-container-fullscreen{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;z-index:1000}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{height:100%!important;width:100%!important}.mejs-background,.mejs-mediaelement{left:0;position:absolute;top:0}.mejs-mediaelement{height:100%;width:100%;z-index:0}.mejs-poster{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;left:0;position:absolute;top:0;z-index:1}:root .mejs-poster-img{display:none}.mejs-poster-img{border:0;padding:0}.mejs-overlay{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0}.mejs-layer{z-index:1}.mejs-overlay-play{cursor:pointer}.mejs-overlay-button{background:url(//singaporeoutlook.com/wp-includes/js/mediaelement/mejs-controls.svg) no-repeat;background-position:0 -39px;height:80px;width:80px}.mejs-overlay:hover>.mejs-overlay-button{background-position:-80px -39px}.mejs-overlay-loading{height:80px;width:80px}.mejs-overlay-loading-bg-img{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent url(//singaporeoutlook.com/wp-includes/js/mediaelement/mejs-controls.svg) -160px -40px no-repeat;display:block;height:80px;width:80px;z-index:1}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.mejs-controls{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;left:0;list-style-type:none;margin:0;padding:0 10px;position:absolute;width:100%;z-index:3}.mejs-controls:not([style*="display: none"]){background:rgba(255,0,0,.7);background:-webkit-linear-gradient(transparent,rgba(0,0,0,.35));background:linear-gradient(transparent,rgba(0,0,0,.35))}.mejs-button,.mejs-time,.mejs-time-rail{font-size:10px;height:40px;line-height:10px;margin:0;width:32px}.mejs-button>button{background:transparent url(//singaporeoutlook.com/wp-includes/js/mediaelement/mejs-controls.svg);border:0;cursor:pointer;display:block;font-size:0;height:20px;line-height:0;margin:10px 6px;overflow:hidden;padding:0;position:absolute;text-decoration:none;width:20px}.mejs-button>button:focus{outline:1px dotted #999}.mejs-container-keyboard-inactive [role=slider],.mejs-container-keyboard-inactive [role=slider]:focus,.mejs-container-keyboard-inactive a,.mejs-container-keyboard-inactive a:focus,.mejs-container-keyboard-inactive button,.mejs-container-keyboard-inactive button:focus{outline:0}.mejs-time{box-sizing:content-box;color:#fff;font-size:11px;font-weight:700;height:24px;overflow:hidden;padding:16px 6px 0;text-align:center;width:auto}.mejs-play>button{background-position:0 0}.mejs-pause>button{background-position:-20px 0}.mejs-replay>button{background-position:-160px 0}.mejs-time-rail{direction:ltr;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:40px;margin:0 10px;padding-top:10px;position:relative}.mejs-time-buffering,.mejs-time-current,.mejs-time-float,.mejs-time-float-corner,.mejs-time-float-current,.mejs-time-hovered,.mejs-time-loaded,.mejs-time-marker,.mejs-time-total{border-radius:2px;cursor:pointer;display:block;height:10px;position:absolute}.mejs-time-total{background:hsla(0,0%,100%,.3);margin:5px 0 0;width:100%}.mejs-time-buffering{-webkit-animation:b 2s linear infinite;animation:b 2s linear infinite;background:-webkit-linear-gradient(135deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background:linear-gradient(-45deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background-size:15px 15px;width:100%}@-webkit-keyframes b{0%{background-position:0 0}to{background-position:30px 0}}@keyframes b{0%{background-position:0 0}to{background-position:30px 0}}.mejs-time-loaded{background:hsla(0,0%,100%,.3)}.mejs-time-current,.mejs-time-handle-content{background:hsla(0,0%,100%,.9)}.mejs-time-hovered{background:hsla(0,0%,100%,.5);z-index:10}.mejs-time-hovered.negative{background:rgba(0,0,0,.2)}.mejs-time-buffering,.mejs-time-current,.mejs-time-hovered,.mejs-time-loaded{left:0;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:all .15s ease-in;transition:all .15s ease-in;width:100%}.mejs-time-buffering{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.mejs-time-hovered{-webkit-transition:height .1s cubic-bezier(.44,0,1,1);transition:height .1s cubic-bezier(.44,0,1,1)}.mejs-time-hovered.no-hover{-webkit-transform:scaleX(0)!important;-ms-transform:scaleX(0)!important;transform:scaleX(0)!important}.mejs-time-handle,.mejs-time-handle-content{border:4px solid transparent;cursor:pointer;left:0;position:absolute;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);z-index:11}.mejs-time-handle-content{border:4px solid hsla(0,0%,100%,.9);border-radius:50%;height:10px;left:-7px;top:-4px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);width:10px}.mejs-time-rail .mejs-time-handle-content:active,.mejs-time-rail .mejs-time-handle-content:focus,.mejs-time-rail:hover .mejs-time-handle-content{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mejs-time-float{background:#eee;border:1px solid #333;bottom:100%;color:#111;display:none;height:17px;margin-bottom:9px;position:absolute;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:36px}.mejs-time-float-current{display:block;left:0;margin:2px;text-align:center;width:30px}.mejs-time-float-corner{border:5px solid #eee;border-color:#eee transparent transparent;border-radius:0;display:block;height:0;left:50%;line-height:0;position:absolute;top:100%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:0}.mejs-long-video .mejs-time-float{margin-left:-23px;width:64px}.mejs-long-video .mejs-time-float-current{width:60px}.mejs-broadcast{color:#fff;height:10px;position:absolute;top:15px;width:100%}.mejs-fullscreen-button>button{background-position:-80px 0}.mejs-unfullscreen>button{background-position:-100px 0}.mejs-mute>button{background-position:-60px 0}.mejs-unmute>button{background-position:-40px 0}.mejs-volume-button{position:relative}.mejs-volume-button>.mejs-volume-slider{-webkit-backface-visibility:hidden;background:rgba(50,50,50,.7);border-radius:0;bottom:100%;display:none;height:115px;left:50%;margin:0;position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:25px;z-index:1}.mejs-volume-button:hover{border-radius:0 0 4px 4px}.mejs-volume-total{background:hsla(0,0%,100%,.5);height:100px;left:50%;margin:0;position:absolute;top:8px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:2px}.mejs-volume-current{left:0;margin:0;width:100%}.mejs-volume-current,.mejs-volume-handle{background:hsla(0,0%,100%,.9);position:absolute}.mejs-volume-handle{border-radius:1px;cursor:ns-resize;height:6px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:16px}.mejs-horizontal-volume-slider{display:block;height:36px;position:relative;vertical-align:middle;width:56px}.mejs-horizontal-volume-total{background:rgba(50,50,50,.8);height:8px;top:16px;width:50px}.mejs-horizontal-volume-current,.mejs-horizontal-volume-total{border-radius:2px;font-size:1px;left:0;margin:0;padding:0;position:absolute}.mejs-horizontal-volume-current{background:hsla(0,0%,100%,.8);height:100%;top:0;width:100%}.mejs-horizontal-volume-handle{display:none}.mejs-captions-button,.mejs-chapters-button{position:relative}.mejs-captions-button>button{background-position:-140px 0}.mejs-chapters-button>button{background-position:-180px 0}.mejs-captions-button>.mejs-captions-selector,.mejs-chapters-button>.mejs-chapters-selector{background:rgba(50,50,50,.7);border:1px solid transparent;border-radius:0;bottom:100%;margin-right:-43px;overflow:hidden;padding:0;position:absolute;right:50%;visibility:visible;width:86px}.mejs-chapters-button>.mejs-chapters-selector{margin-right:-55px;width:110px}.mejs-captions-selector-list,.mejs-chapters-selector-list{list-style-type:none!important;margin:0;overflow:hidden;padding:0}.mejs-captions-selector-list-item,.mejs-chapters-selector-list-item{color:#fff;cursor:pointer;display:block;list-style-type:none!important;margin:0 0 6px;overflow:hidden;padding:0}.mejs-captions-selector-list-item:hover,.mejs-chapters-selector-list-item:hover{background-color:#c8c8c8!important;background-color:hsla(0,0%,100%,.4)!important}.mejs-captions-selector-input,.mejs-chapters-selector-input{clear:both;float:left;left:-1000px;margin:3px 3px 0 5px;position:absolute}.mejs-captions-selector-label,.mejs-chapters-selector-label{cursor:pointer;float:left;font-size:10px;line-height:15px;padding:4px 10px 0;width:100%}.mejs-captions-selected,.mejs-chapters-selected{color:#21f8f8}.mejs-captions-translations{font-size:10px;margin:0 0 5px}.mejs-captions-layer{bottom:0;color:#fff;font-size:16px;left:0;line-height:20px;position:absolute;text-align:center}.mejs-captions-layer a{color:#fff;text-decoration:underline}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:400}.mejs-captions-position{bottom:15px;left:0;position:absolute;width:100%}.mejs-captions-position-hover{bottom:35px}.mejs-captions-text,.mejs-captions-text *{background:hsla(0,0%,8%,.5);box-shadow:5px 0 0 hsla(0,0%,8%,.5),-5px 0 0 hsla(0,0%,8%,.5);padding:0;white-space:pre-wrap}.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container{display:none}.mejs-overlay-error{position:relative}.mejs-overlay-error>img{left:0;max-width:100%;position:absolute;top:0;z-index:-1}.mejs-cannotplay,.mejs-cannotplay a{color:#fff;font-size:.8em}.mejs-cannotplay{position:relative}.mejs-cannotplay a,.mejs-cannotplay p{display:inline-block;padding:0 15px;width:100%}.mejs-container{clear:both;max-width:100%}.mejs-container *{font-family:Helvetica,Arial}.mejs-container,.mejs-container .mejs-controls,.mejs-embed,.mejs-embed body{background:#222}.mejs-time{font-weight:400;word-wrap:normal}.mejs-controls a.mejs-horizontal-volume-slider{display:table}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-time-rail .mejs-time-loaded{background:#fff}.mejs-controls .mejs-time-rail .mejs-time-current{background:#0073aa}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail .mejs-time-total{background:rgba(255,255,255,.33)}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail span{border-radius:0}.mejs-overlay-loading{background:0 0}.mejs-controls button:hover{border:none;-webkit-box-shadow:none;box-shadow:none}.me-cannotplay{width:auto!important}.media-embed-details .wp-audio-shortcode{display:inline-block;max-width:400px}.audio-details .embed-media-settings{overflow:visible}.media-embed-details .embed-media-settings .setting span:not(.button-group){max-width:400px;width:auto}.media-embed-details .embed-media-settings .checkbox-setting span{display:inline-block}.media-embed-details .embed-media-settings{padding-top:0;top:28px}.media-embed-details .instructions{padding:16px 0;max-width:600px}.media-embed-details .setting .remove-setting,.media-embed-details .setting p{color:#a00;font-size:10px;text-transform:uppercase}.media-embed-details .setting .remove-setting{padding:5px 0}.media-embed-details .setting a:hover{color:#dc3232}.media-embed-details .embed-media-settings .checkbox-setting{float:none;margin:0 0 10px}.wp-video{max-width:100%;height:auto}.wp_attachment_holder .wp-audio-shortcode,.wp_attachment_holder .wp-video{margin-top:18px}.wp-video-shortcode video,video.wp-video-shortcode{max-width:100%;display:inline-block}.video-details .wp-video-holder{width:100%;max-width:640px}.wp-playlist{border:1px solid #ccc;padding:10px;margin:12px 0 18px;font-size:14px;line-height:1.5}.wp-admin .wp-playlist{margin:0 0 18px}.wp-playlist video{display:inline-block;max-width:100%}.wp-playlist audio{display:none;max-width:100%;width:400px}.wp-playlist .mejs-container{margin:0;max-width:100%}.wp-playlist .mejs-controls .mejs-button button{outline:0}.wp-playlist-light{background:#fff;color:#000}.wp-playlist-dark{color:#fff;background:#000}.wp-playlist-caption{display:block;max-width:88%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;line-height:1.5}.wp-playlist-item .wp-playlist-caption{text-decoration:none;color:#000;max-width:-webkit-calc(100% - 40px);max-width:calc(100% - 40px)}.wp-playlist-item-meta{display:block;font-size:14px;line-height:1.5}.wp-playlist-item-title{font-size:14px;line-height:1.5}.wp-playlist-item-album{font-style:italic;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-playlist-item-artist{font-size:12px;text-transform:uppercase}.wp-playlist-item-length{position:absolute;right:3px;top:0;font-size:14px;line-height:1.5}.rtl .wp-playlist-item-length{left:3px;right:auto}.wp-playlist-tracks{margin-top:10px}.wp-playlist-item{position:relative;cursor:pointer;padding:0 3px;border-bottom:1px solid #ccc}.wp-playlist-item:last-child{border-bottom:0}.wp-playlist-light .wp-playlist-caption{color:#333}.wp-playlist-dark .wp-playlist-caption{color:#ddd}.wp-playlist-playing{font-weight:700;background:#f7f7f7}.wp-playlist-light .wp-playlist-playing{background:#fff;color:#000}.wp-playlist-dark .wp-playlist-playing{background:#000;color:#fff}.wp-playlist-current-item{overflow:hidden;margin-bottom:10px;height:60px}.wp-playlist .wp-playlist-current-item img{float:left;max-width:60px;height:auto;margin-right:10px;padding:0;border:0}.rtl .wp-playlist .wp-playlist-current-item img{float:right;margin-left:10px;margin-right:0}.wp-playlist-current-item .wp-playlist-item-artist,.wp-playlist-current-item .wp-playlist-item-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-audio-playlist .me-cannotplay span{padding:5px 15px}