* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
background: #f5f5f5;
overflow-x: hidden;
font-size: 1rem;
}
img {
max-width: 100%;
height: auto;
display: block;
}
a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
} h1, h2, h3, h4, h5, h6 {
font-weight: 700;
line-height: 1.3;
color: #2c3e50;
margin-bottom: 1rem;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
}
h2 {
font-size: 2rem;
margin-bottom: 1.25rem;
}
h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}
h4 {
font-size: 1.25rem;
margin-bottom: 0.875rem;
}
p {
margin-bottom: 1.5rem;
line-height: 1.7;
} h1 + p,
h2 + p,
h3 + p,
h4 + p {
margin-top: -0.5rem;
} .site-header {
background: #fff;
border-bottom: 1px solid #e0e0e0;
padding: 15px 0;
position: sticky;
top: 0;
z-index: 1000;
}
.header-container {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 25px;
}
.site-branding {
flex: 0 0 auto;
}
.site-title {
font-size: 28px;
font-weight: bold;
color: #e74c3c;
margin: 0;
line-height: 1.2;
}
.site-title a:hover {
color: #c0392b;
} .main-navigation {
flex: 1;
min-width: 0;
}
.main-navigation ul {
display: flex;
flex-wrap: wrap;
list-style: none;
gap: 8px;
margin: 0;
padding: 0;
justify-content: center;
}
.main-navigation li {
flex: 0 0 auto;
}
.main-navigation a {
display: block;
padding: 10px 18px;
font-size: 14px;
font-weight: 500;
color: #333;
border-radius: 3px;
white-space: nowrap;
text-transform: uppercase;
letter-spacing: 0.5px;
line-height: 1.4;
}
.main-navigation a:hover {
background: #e74c3c;
color: #fff;
} .category-nav {
background: #2c3e50;
padding: 15px 0;
margin-bottom: 30px;
}
.category-menu {
display: flex;
flex-wrap: wrap;
gap: 12px;
list-style: none;
margin: 0;
padding: 0;
}
.category-menu li {
flex: 0 0 auto;
}
.category-menu a {
display: block;
padding: 8px 18px;
background: rgba(255,255,255,0.1);
color: #fff;
border-radius: 20px;
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
line-height: 1.4;
}
.category-menu a:hover,
.category-menu a.active {
background: #e74c3c;
} .homepage-sections {
display: grid;
grid-template-columns: 1fr;
gap: 40px;
margin: 40px 0;
}
.homepage-section {
margin-bottom: 40px;
}
.section-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 2px solid #e74c3c;
}
.section-title {
font-size: 24px;
font-weight: bold;
color: #2c3e50;
margin: 0;
padding: 0;
}
.view-all {
font-size: 14px;
color: #e74c3c;
font-weight: 500;
padding: 5px 0;
}
.view-all:hover {
text-decoration: underline;
} .section-content {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 25px;
} .section-featured .section-content {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 25px;
}
.featured-main {
position: relative;
border-radius: 8px;
overflow: hidden;
}
.featured-main img {
width: 100%;
height: 380px;
object-fit: cover;
}
.featured-main .post-info {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(transparent, rgba(0,0,0,0.8));
padding: 25px;
color: #fff;
}
.featured-main .post-category {
display: inline-block;
background: #e74c3c;
color: #fff;
padding: 5px 12px;
border-radius: 4px;
font-size: 12px;
margin-bottom: 12px;
text-transform: uppercase;
line-height: 1.3;
}
.featured-main .post-title {
font-size: 22px;
font-weight: bold;
margin: 0;
line-height: 1.3;
padding: 5px 0;
}
.featured-main .post-title a:hover {
color: #e74c3c;
}
.featured-side {
display: flex;
flex-direction: column;
gap: 20px;
}
.featured-side-item {
display: flex;
gap: 18px;
padding-bottom: 20px;
border-bottom: 1px solid #eee;
}
.featured-side-item:last-child {
border-bottom: none;
padding-bottom: 0;
}
.featured-side-item img {
width: 110px;
height: 80px;
object-fit: cover;
border-radius: 5px;
}
.featured-side-content {
flex: 1;
padding: 5px 0;
}
.featured-side-content .post-category {
font-size: 11px;
color: #e74c3c;
text-transform: uppercase;
font-weight: bold;
margin-bottom: 8px;
display: block;
}
.featured-side-content .post-title {
font-size: 15px;
font-weight: 600;
line-height: 1.4;
margin: 0;
padding: 3px 0;
} .post-card {
background: #fff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.post-card img {
width: 100%;
height: 200px;
object-fit: cover;
}
.post-card-content {
padding: 20px;
}
.post-card .post-category {
display: inline-block;
color: #e74c3c;
font-size: 11px;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 10px;
line-height: 1.3;
}
.post-card .post-title {
font-size: 17px;
font-weight: 600;
line-height: 1.4;
margin: 0;
padding: 5px 0;
} .sidebar-area {
margin-top: 50px;
padding-top: 50px;
border-top: 2px solid #e74c3c;
}
.sidebar-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 35px;
}
.widget {
background: #fff;
padding: 25px;
border-radius: 8px;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.widget-title {
font-size: 20px;
font-weight: bold;
color: #2c3e50;
margin-bottom: 20px;
padding-bottom: 12px;
border-bottom: 2px solid #e74c3c;
}
.widget ul {
list-style: none;
margin: 0;
padding: 0;
}
.widget li {
padding: 10px 0;
border-bottom: 1px solid #eee;
line-height: 1.5;
}
.widget li:last-child {
border-bottom: none;
}
.widget a {
color: #333;
display: block;
padding: 3px 0;
}
.widget a:hover {
color: #e74c3c;
padding-left: 5px;
} .entry-header {
margin-bottom: 30px;
}
.entry-title {
font-size: 32px;
font-weight: bold;
color: #2c3e50;
margin-bottom: 15px;
line-height: 1.3;
padding-top: 10px;
}
.entry-meta {
display: flex;
gap: 20px;
color: #666;
font-size: 14px;
margin-bottom: 20px;
padding: 10px 0;
}
.entry-content {
font-size: 18px;
line-height: 1.7;
color: #444;
}
.entry-content p {
margin-bottom: 25px;
}
.entry-content h2 {
font-size: 28px;
margin-top: 40px;
margin-bottom: 20px;
padding-top: 10px;
}
.entry-content h3 {
font-size: 24px;
margin-top: 35px;
margin-bottom: 18px;
padding-top: 8px;
}
.entry-content img {
margin: 25px 0;
border-radius: 8px;
} .site-footer {
background: #2c3e50;
color: #fff;
padding: 50px 0 25px;
margin-top: 60px;
}
.footer-widgets {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 35px;
margin-bottom: 40px;
}
.footer-widget {
padding: 10px 0;
}
.footer-widget h3 {
color: #fff;
font-size: 20px;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid #e74c3c;
}
.footer-widget p {
color: #ccc;
line-height: 1.7;
margin-bottom: 15px;
}
.footer-widget ul {
list-style: none;
margin: 0;
padding: 0;
}
.footer-widget li {
padding: 8px 0;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-widget a {
color: #ccc;
padding: 3px 0;
display: block;
}
.footer-widget a:hover {
color: #fff;
padding-left: 8px;
}
.footer-bottom {
text-align: center;
padding-top: 25px;
border-top: 1px solid rgba(255,255,255,0.1);
font-size: 14px;
color: #ccc;
line-height: 1.6;
}
.footer-bottom p {
margin-bottom: 15px;
}  @media (max-width: 992px) {
html {
font-size: 15px;
}
.header-container {
flex-direction: column;
gap: 20px;
}
.main-navigation ul {
justify-content: center;
gap: 5px;
}
.main-navigation a {
padding: 8px 12px;
font-size: 13px;
}
.section-featured .section-content {
grid-template-columns: 1fr;
}
.featured-main img {
height: 320px;
}
.sidebar-content {
grid-template-columns: 1fr;
}
.entry-title {
font-size: 28px;
}
} @media (max-width: 768px) {
html {
font-size: 14px;
}
.container {
padding: 0 15px;
}
.main-navigation ul {
justify-content: flex-start;
overflow-x: auto;
padding-bottom: 10px;
-webkit-overflow-scrolling: touch;
}
.main-navigation a {
padding: 8px 14px;
font-size: 12px;
}
.category-menu {
overflow-x: auto;
padding-bottom: 10px;
-webkit-overflow-scrolling: touch;
}
.section-content {
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 20px;
}
.featured-main img {
height: 280px;
}
.featured-side-item img {
width: 90px;
height: 70px;
}
.post-card img {
height: 180px;
}
.entry-title {
font-size: 24px;
}
.entry-content {
font-size: 16px;
}
} @media (max-width: 480px) {
.site-title {
font-size: 24px;
}
.main-navigation a {
padding: 6px 10px;
font-size: 11px;
}
.section-content {
grid-template-columns: 1fr;
}
.featured-main img {
height: 240px;
}
.featured-side {
gap: 15px;
}
.featured-side-item {
flex-direction: column;
gap: 12px;
}
.featured-side-item img {
width: 100%;
height: 140px;
}
.post-card img {
height: 220px;
}
.entry-title {
font-size: 22px;
}
} .text-center { text-align: center; }
.text-right { text-align: right; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.pt-10 { padding-top: 10px; }
.pt-20 { padding-top: 20px; }
.pt-30 { padding-top: 30px; }
.pt-40 { padding-top: 40px; }
.pb-10 { padding-bottom: 10px; }
.pb-20 { padding-bottom: 20px; }
.pb-30 { padding-bottom: 30px; }
.pb-40 { padding-bottom: 40px; }
.p-20 { padding: 20px; }
.p-30 { padding: 30px; } .hidden {
display: none !important;
} .loading {
opacity: 0.6;
pointer-events: none;
} .clearfix::after {
content: "";
display: table;
clear: both;
}  .comments-area {
margin-top: 3rem;
padding: 2.5rem;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
} .comments-title {
color: #e10600 !important;
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 2px solid #334155;
text-align: center;
font-family: 'Arial Black', sans-serif;
} .comment-list {
list-style: none;
padding: 0;
margin: 0 0 2rem 0;
}
.comment {
background: #1e293b;
border-radius: 12px;
padding: 1.5rem;
margin-bottom: 1.5rem;
border-left: 4px solid #e10600;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.comment:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(225, 6, 0, 0.2);
} .comment-meta {
display: flex;
align-items: center;
margin-bottom: 1rem;
padding-bottom: 0.8rem;
border-bottom: 1px solid #334155;
}
.comment-author {
font-weight: 700;
color: #f8fafc;
font-size: 1.1rem;
}
.comment-author a {
color: #60a5fa;
text-decoration: none;
transition: color 0.2s ease;
}
.comment-author a:hover {
color: #93c5fd;
text-decoration: underline;
}
.comment-metadata {
font-size: 0.85rem;
color: #94a3b8;
margin-left: auto;
}
.comment-metadata a {
color: #94a3b8;
text-decoration: none;
}
.comment-metadata a:hover {
color: #cbd5e1;
} .comment-content {
color: #cbd5e1;
line-height: 1.7;
font-size: 1rem;
}
.comment-content p {
margin: 0.5rem 0;
} .reply {
margin-top: 1rem;
text-align: right;
}
.comment-reply-link {
display: inline-block;
background: #e10600;
color: white !important;
padding: 0.5rem 1.2rem;
border-radius: 6px;
font-size: 0.9rem;
font-weight: 600;
text-decoration: none;
transition: all 0.2s ease;
}
.comment-reply-link:hover {
background: #ff1a1a;
transform: translateY(-1px);
box-shadow: 0 4px 8px rgba(225, 6, 0, 0.3);
} .comment-navigation {
display: flex;
justify-content: space-between;
margin: 2rem 0;
padding: 1rem 0;
border-top: 1px solid #334155;
border-bottom: 1px solid #334155;
}
.comment-navigation a {
color: #60a5fa;
text-decoration: none;
font-weight: 600;
padding: 0.5rem 1rem;
border-radius: 6px;
transition: all 0.2s ease;
}
.comment-navigation a:hover {
background: rgba(96, 165, 250, 0.1);
color: #93c5fd;
} .no-comments {
text-align: center;
color: #94a3b8;
font-style: italic;
padding: 2rem;
background: rgba(30, 41, 59, 0.5);
border-radius: 10px;
border: 1px dashed #475569;
}  .comment-respond {
background: #1e293b;
border-radius: 12px;
padding: 2rem;
margin-top: 2rem;
}
.comment-reply-title {
color: #f8fafc !important;
font-size: 1.5rem;
margin-bottom: 1.5rem;
padding-bottom: 1rem;
border-bottom: 2px solid #334155;
} .comment-form {
display: grid;
gap: 1.5rem;
}
.comment-form label {
display: block;
color: #cbd5e1;
font-weight: 600;
margin-bottom: 0.5rem;
font-size: 0.95rem;
}
.comment-form .required {
color: #e10600;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
width: 100%;
padding: 1rem;
background: #0f172a;
border: 2px solid #334155;
border-radius: 8px;
color: #f8fafc;
font-size: 1rem;
transition: all 0.3s ease;
box-sizing: border-box;
}
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
outline: none;
border-color: #e10600;
box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.2);
}
.comment-form textarea {
min-height: 150px;
resize: vertical;
} .comment-form .form-submit {
margin-top: 1rem;
text-align: right;
}
.comment-form input[type="submit"] {
background: linear-gradient(135deg, #e10600 0%, #b90500 100%);
color: white;
border: none;
padding: 1rem 2.5rem;
border-radius: 8px;
font-size: 1rem;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.comment-form input[type="submit"]:hover {
background: linear-gradient(135deg, #ff1a1a 0%, #d60600 100%);
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(225, 6, 0, 0.3);
}
.comment-form input[type="submit"]:active {
transform: translateY(0);
} .comment-notes,
.logged-in-as {
color: #94a3b8;
font-size: 0.9rem;
margin-bottom: 1rem;
padding: 0.8rem;
background: rgba(15, 23, 42, 0.5);
border-radius: 6px;
} @media (max-width: 768px) {
.comments-area {
padding: 1.5rem;
margin-top: 2rem;
}
.comment-respond {
padding: 1.5rem;
}
.comments-title {
font-size: 1.5rem;
}
.comment-form {
gap: 1rem;
}
.comment {
padding: 1.2rem;
}
}
@media (max-width: 480px) {
.comments-area {
padding: 1rem;
}
.comment-respond {
padding: 1rem;
}
.comment-meta {
flex-direction: column;
align-items: flex-start;
}
.comment-metadata {
margin-left: 0;
margin-top: 0.5rem;
}
} .posts-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;
margin-bottom: 40px;
}
.post-card {
background: #fff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.post-card:hover {
transform: translateY(-5px);
}
.post-thumbnail img {
width: 100%;
height: 200px;
object-fit: cover;
}
.post-card-content {
padding: 20px;
}
.post-category {
color: #0073aa;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
}
.post-title {
margin: 10px 0 0;
font-size: 18px;
line-height: 1.4;
}
.post-title a {
color: #333;
text-decoration: none;
}
.post-title a:hover {
color: #0073aa;
} .category-description-section {
background: #f8f9fa;
border-radius: 10px;
padding: 40px;
margin: 50px 0;
border-left: 5px solid #0073aa;
}
.category-description-content {
font-size: 16px;
line-height: 1.7;
color: #444;
}
.category-description-content p {
margin-bottom: 15px;
}
.category-description-content p:last-child {
margin-bottom: 0;
} .posts-pagination {
margin-top: 40px;
padding-top: 30px;
border-top: 1px solid #eee;
}
.pagination {
display: flex;
justify-content: center;
gap: 10px;
}
.page-numbers {
display: inline-block;
padding: 10px 15px;
background: #fff;
border: 1px solid #ddd;
border-radius: 4px;
text-decoration: none;
color: #333;
}
.page-numbers.current {
background: #0073aa;
color: white;
border-color: #0073aa;
}
.page-numbers:hover {
background: #f0f0f0;
} @media (max-width: 768px) {
.posts-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.category-description-section {
padding: 25px;
margin: 30px 0;
}
} .posts-pagination {
margin: 60px 0 40px;
text-align: center;
padding-top: 30px;
border-top: 1px solid #eaeaea;
position: relative;
}
.posts-pagination::before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 3px;
background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
border-radius: 3px;
}
.pagination {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 8px;
margin: 0;
padding: 0;
list-style: none;
}
.page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 40px;
height: 40px;
padding: 0 15px;
background: #fff;
border: 2px solid #eaeaea;
border-radius: 8px;
font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 15px;
font-weight: 600;
color: #333;
text-decoration: none;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.page-numbers:not(.dots):hover {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-color: #667eea;
color: white;
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(102, 126, 234, 0.2);
}
.page-numbers.current {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
border-color: #f5576c;
color: white;
box-shadow: 0 5px 15px rgba(245, 87, 108, 0.3);
} .prev,
.next {
position: relative;
padding-left: 40px;
padding-right: 40px;
}
.prev::before,
.next::before {
content: '';
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 20px;
height: 20px;
background-size: contain;
background-repeat: no-repeat;
transition: transform 0.3s ease;
}
.prev::before {
left: 10px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
}
.next::before {
right: 10px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
}
.prev:hover::before,
.next:hover::before {
transform: translateY(-50%) scale(1.2);
}
.prev:hover,
.next:hover {
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
border-color: #4facfe;
color: white;
}
.prev:hover::before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
}
.next:hover::before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
} .dots {
background: transparent;
border: none;
color: #999;
font-size: 18px;
cursor: default;
min-width: 20px;
}
.dots:hover {
background: transparent;
transform: none;
border: none;
color: #999;
box-shadow: none;
} .page-numbers.current {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 5px 15px rgba(245, 87, 108, 0.3);
}
50% {
box-shadow: 0 5px 20px rgba(245, 87, 108, 0.5);
}
100% {
box-shadow: 0 5px 15px rgba(245, 87, 108, 0.3);
}
} .posts-pagination.loading .page-numbers {
opacity: 0.7;
pointer-events: none;
} @media (max-width: 768px) {
.posts-pagination {
margin: 40px 0 30px;
padding-top: 25px;
}
.page-numbers {
min-width: 35px;
height: 35px;
padding: 0 10px;
font-size: 14px;
}
.prev,
.next {
padding-left: 35px;
padding-right: 35px;
font-size: 14px;
}
.prev::before,
.next::before {
width: 16px;
height: 16px;
}
.prev::before {
left: 8px;
}
.next::before {
right: 8px;
}
}
@media (max-width: 480px) {
.pagination {
gap: 5px;
}
.page-numbers {
min-width: 30px;
height: 30px;
padding: 0 8px;
font-size: 13px;
}
.prev,
.next {
padding-left: 25px;
padding-right: 25px;
font-size: 12px;
}
.prev::before,
.next::before {
width: 14px;
height: 14px;
}
} @media (prefers-color-scheme: dark) {
.posts-pagination {
border-top-color: #333;
}
.page-numbers {
background: #222;
border-color: #444;
color: #ddd;
}
.page-numbers:not(.dots):hover {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-color: #667eea;
color: white;
}
.prev::before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ddd'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
}
.next::before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ddd'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
}
.dots {
color: #666;
}
} .page-numbers {
will-change: transform, box-shadow, background, border-color;
} html[amp] .page-numbers.current {
animation: none;
} @media print {
.posts-pagination {
display: none;
}
} .page-numbers:focus {
outline: 2px solid #667eea;
outline-offset: 2px;
}
.page-numbers:focus-visible {
outline: 3px solid #667eea;
outline-offset: 3px;
} .page-numbers.current {
cursor: default;
pointer-events: none;
} @keyframes shimmer {
0% {
background-position: -200px 0;
}
100% {
background-position: 200px 0;
}
}
.posts-pagination.loading .page-numbers:not(.current) {
background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
background-size: 200px 100%;
animation: shimmer 1.5s infinite;
color: transparent;
border-color: #f0f0f0;
} .entry-content a:link,
.post-content a:link,
.article-content a:link,
.single-post .content a:link,
.single .entry-content a:link,
.type-post .entry-content a:link,
.single-post .post-content a:link,
.single .post-content a:link {
color: #e74c3c;
} .entry-content a:visited,
.post-content a:visited,
.single-post .content a:visited {
color: #c0392b; } .main-navigation a:link,
#primary-menu a:link,
.menu a:link,
.nav-menu a:link,
.widget a:link,
.sidebar a:link,
.footer a:link,
.site-footer a:link,
.entry-title a:link,
.post-title a:link,
h1 a:link, h2 a:link, h3 a:link,
.page-title a:link,
.archive .post-title a:link,
.home .post-title a:link,
.blog .post-title a:link,
.category .post-title a:link,
.tag .post-title a:link,
.pagination a:link,
.page-numbers:link,
.post-card a:link,
.posts-grid a:link,
.section-content a:link,
.posts-listing a:link,
header a:link,
nav a:link {
color: inherit; } .post .entry-content p a:link,
.post .entry-content ul a:link,
.post .entry-content ol a:link,
.post .entry-content li a:link,
.post .entry-content td a:link,
.post .entry-content blockquote a:link {
color: #e74c3c;
} .wp-block-post-content a:link,
.wp-block-group__inner-container a:link,
.wp-block-column a:link {
color: #e74c3c;
}.homepage-section {
padding: 20px 0;
}
.section-featured {
padding-top: 0;
} .post-card-content {
padding-top: 15px;
padding-bottom: 15px;
} .featured-side-content .post-title {
margin-top: 5px;
} .widget {
margin-bottom: 20px;
}
.widget:last-child {
margin-bottom: 0;
} .footer-widget h3 {
margin-top: 10px;
} .view-all {
margin-top: 5px;
} .entry-meta span {
margin-right: 15px;
}
.entry-meta span:last-child {
margin-right: 0;
} .post-category {
margin-right: 5px;
margin-bottom: 8px;
}
.post-category:last-child {
margin-right: 0;
} .entry-content img.alignleft {
margin-right: 20px;
margin-bottom: 20px;
}
.entry-content img.alignright {
margin-left: 20px;
margin-bottom: 20px;
} .entry-content ul,
.entry-content ol {
margin-bottom: 25px;
padding-left: 30px;
}
.entry-content li {
margin-bottom: 10px;
} .entry-content blockquote {
margin: 30px 0;
padding: 20px 30px;
border-left: 4px solid #e74c3c;
background: #f9f9f9;
font-style: italic;
} .entry-content table {
margin: 25px 0;
width: 100%;
border-collapse: collapse;
}
.entry-content table th,
.entry-content table td {
padding: 12px 15px;
border: 1px solid #ddd;
} .entry-content input,
.entry-content textarea,
.entry-content select {
margin-bottom: 15px;
padding: 10px 15px;
}