:root {
--primary-color: #333333;
--accent-color: #4CAF50;
--background-color: #ffffff;
--text-color: #333333;
--light-gray: #f2f2f2;
--dark-gray: #666666;
--card-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
--hover-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
height: 100%;
width: 100%;
margin: 0 !important;
padding: 0 !important;
overflow-x: hidden !important;
max-width: 100% !important;
margin-top: 0 !important;
padding-top: 0 !important;
}
body {
width: 100%;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
line-height: 1.8;
color: var(--text-color);
background: #ffffff;
min-height: 100vh;
display: flex;
flex-direction: column;
margin: 0 !important;
padding: 0 !important;
position: relative;
}
.site-content {
flex: 1;
display: flex;
flex-direction: column;
}
a {
color: var(--accent-color);
text-decoration: none;
transition: all 0.3s ease;
}
a:hover {
color: #388E3C;
}
img {
max-width: 100%;
height: auto;
} .container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
.content-area {
display: flex;
flex-wrap: wrap;
margin: 1.5rem 0;
align-items: flex-start;
min-height: 50vh;
}
.site-main {
flex: 1;
min-width: 0;
padding-right: 1.5rem; }
.sidebar {
width: 280px;
padding: 1.2rem;
background: white;
border-radius: 8px;
box-shadow: var(--card-shadow);
position: static; margin-bottom: 30px; max-height: calc(70vh); overflow-y: auto;
} .sidebar::-webkit-scrollbar {
width: 6px;
}
.sidebar::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 3px;
}
.sidebar::-webkit-scrollbar-thumb {
background: #ccc;
border-radius: 3px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
background: #aaa;
} .site-header {
background: #ffffff;
position: sticky;
top: 0;
width: 100%;
z-index: 100;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
padding: 10px 0;
transition: all 0.3s ease;
margin-top: 0;
} .site-header .container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 15px;
width: 100%;
max-width: 1200px;
margin: 0 auto;
}
.site-branding {
display: flex;
align-items: center;
padding: 5px 0;
}
.site-logo {
margin: 0;
padding: 0;
}
.site-logo img.custom-logo {
max-height: 60px;
width: auto;
display: block;
}
.site-title {
font-size: 1.8rem;
margin: 0;
line-height: 1.2;
}
.site-title a {
color: #333;
text-decoration: none;
}
.site-description {
color: #666;
margin-top: 0.3rem;
font-size: 0.9rem;
line-height: 1.2;
} .main-navigation {
display: flex;
}
.nav-menu {
display: flex;
list-style: none;
margin: 0;
padding: 0;
}
.nav-menu li {
position: relative;
}
.nav-menu a {
display: block;
padding: 1.1rem 1.3rem;
color: black; font-weight: normal; font-size: 1.1rem; transition: all 0.3s ease;
text-decoration: none;
}
.nav-menu a:hover {
color: #4CAF50; } .nav-menu .sub-menu {
position: absolute;
top: 100%;
left: 0;
background: white;
min-width: 200px;
box-shadow: var(--card-shadow);
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all 0.3s ease;
z-index: 10;
list-style: none;
padding: 0.5rem 0;
border-radius: 4px;
}
.nav-menu li:hover > .sub-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.nav-menu .sub-menu a {
padding: 0.6rem 1.2rem;
}
.menu-toggle {
display: none;
background: transparent;
border: none;
width: 30px;
height: 30px;
position: relative;
cursor: pointer;
padding: 0;
}
.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #333;
position: absolute;
left: 0;
transition: all 0.3s ease;
}
.menu-toggle-icon {
top: 50%;
transform: translateY(-50%);
}
.menu-toggle-icon::before {
top: -8px;
}
.menu-toggle-icon::after {
bottom: -8px;
}
.menu-toggle.active .menu-toggle-icon {
background: transparent;
}
.menu-toggle.active .menu-toggle-icon::before {
transform: rotate(45deg);
top: 0;
}
.menu-toggle.active .menu-toggle-icon::after {
transform: rotate(-45deg);
bottom: 0;
} .hero-section {
height: 100vh;
position: relative;
display: flex;
align-items: center;
justify-content: center;
color: #333;
text-align: center;
margin-bottom: 2rem;
margin-top: -1rem;
background-color: #f9f9f9;
}
.hero-content {
position: relative;
z-index: 1;
padding: 2rem;
max-width: 800px;
}
.hero-content h1 {
font-size: 4rem;
margin-bottom: 1rem;
font-weight: 700;
letter-spacing: 1px;
}
.hero-content p {
font-size: 1.5rem;
margin: 0 auto;
}
.hero-content .tagline {
font-size: 1.2rem;
margin-top: 1rem;
font-style: italic;
opacity: 0.9;
} .post-card {
background: #ffffff;
border-radius: 8px;
box-shadow: var(--card-shadow);
margin-bottom: 0; overflow: hidden;
display: flex;
transition: all 0.3s ease;
min-height: 280px;
} .post-card.status-format {
min-height: auto;
padding: 1rem;
flex-direction: row;
align-items: center;
gap: 1rem;
margin-bottom: 0; }
.status-author {
display: flex;
align-items: center;
gap: 0.5rem;
flex-shrink: 0;
min-width: 120px;
}
.status-avatar {
flex-shrink: 0;
display: flex;
align-items: center;
}
.status-avatar img {
border-radius: 50%;
width: 40px;
height: 40px;
vertical-align: middle;
}
.status-author-name {
font-size: 0.9rem;
font-weight: 500;
}
.status-author-name a {
color: var(--primary-color);
text-decoration: none;
}
.status-author-name a:hover {
color: var(--accent-color);
}
.status-content {
flex: 1;
padding: 0 1rem;
}
.status-text {
font-size: 0.95rem;
line-height: 1.4;
color: var(--text-color);
}
.status-text p {
margin: 0;
word-wrap: break-word;
overflow-wrap: break-word;
}
.status-text p:not(:last-child) {
margin-bottom: 0.5rem;
}
.status-date {
flex-shrink: 0;
min-width: 80px;
text-align: right;
}
.status-date time {
color: #777777;
font-size: 0.85rem;
text-decoration: none;
display: block;
} .post-card.status-format:hover {
transform: translateY(-2px);
box-shadow: var(--hover-shadow);
} .status-content-link {
color: inherit;
text-decoration: none;
display: block;
transition: all 0.3s ease;
}
.status-content-link:hover {
color: inherit;
text-decoration: none;
}
.status-content-link:hover .status-text {
color: var(--primary-color);
} .status-text a {
color: var(--primary-color);
text-decoration: none;
}
.status-text a:hover {
color: var(--accent-color);
text-decoration: underline;
}
.post-card:hover {
transform: translateY(-5px);
box-shadow: var(--hover-shadow);
}
.post-thumbnail {
flex: 0 0 280px;
height: 280px;
position: relative;
overflow: hidden;
}
.post-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.post-card:hover .post-thumbnail img {
transform: scale(1.05);
}
.post-content {
padding: 1.5rem;
flex: 1;
display: flex;
flex-direction: column;
}
.entry-title {
margin: 0 0 0.8rem;
font-size: 1.6rem;
line-height: 1.4;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
.entry-title a {
color: var(--primary-color);
text-decoration: none;
transition: color 0.3s ease;
}
.entry-title a:hover {
color: var(--accent-color);
}
.entry-meta {
color: var(--dark-gray);
font-size: 0.9rem;
margin-bottom: 1rem;
}
.entry-meta span {
margin-right: 1rem;
} .entry-meta .post-tags {
margin-right: 1rem; display: inline-block; }
.entry-meta .post-tags a {
color: var(--accent-color); text-decoration: none;
font-size: 0.9rem; }
.entry-meta .post-tags a:hover {
color: #388E3C; text-decoration: none; }  .entry-summary {
color: var(--text-color);
line-height: 1.6;
margin-top: 0.4rem;
font-size: 0.95rem;
flex-grow: 1;
display: -webkit-box !important;
-webkit-line-clamp: 4 !important;
line-clamp: 4 !important;
-webkit-box-orient: vertical !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
max-height: calc(1.6em * 4) !important; word-wrap: break-word;
word-break: break-word;
} .pagination {
margin: 2rem 0;
display: flex;
justify-content: center;
gap: 8px;
flex-wrap: wrap;
background: #f0f0f0;
padding: 15px;
border-radius: 5px;
box-shadow: var(--card-shadow);
}
.pagination .page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 40px;
height: 40px;
padding: 0 10px;
border-radius: 4px;
background: white;
color: var(--text-color);
text-decoration: none;
transition: all 0.3s ease;
box-shadow: var(--card-shadow);
font-weight: 500;
}
.pagination .page-numbers.current {
background: var(--accent-color);
color: white;
font-weight: bold;
}
.pagination .page-numbers:hover:not(.disabled):not(.current):not(.dots) {
background: var(--light-gray);
transform: translateY(-2px);
box-shadow: var(--hover-shadow);
}
.pagination .prev,
.pagination .next {
padding: 0 15px;
}
.pagination .disabled {
opacity: 0.5;
cursor: not-allowed;
}
.pagination .dots {
background: transparent;
box-shadow: none;
cursor: default;
}
.pagination .dots:hover {
transform: none;
box-shadow: none;
}
@media (max-width: 576px) {
.pagination {
gap: 5px;
}
.pagination .page-numbers {
min-width: 35px;
height: 35px;
font-size: 0.9rem;
}
.pagination .prev,
.pagination .next {
padding: 0 10px;
}
} .intro-module {
width: 280px; margin-bottom: 0.8rem; }
.intro-card {
background: white;
border-radius: 8px;
box-shadow: var(--card-shadow);
padding: 1.2rem;
transition: all 0.3s ease;
}
.intro-avatar-section {
text-align: center;
margin-bottom: 0.1rem; }
.intro-avatar {
display: inline-block;
}
.intro-avatar img {
width: 100px;
height: 100px;
border-radius: 12px; border: 3px solid #f0f0f0;
transition: all 0.3s ease;
object-fit: cover; object-position: center; }
.intro-avatar .site-icon {
width: 100px;
height: 100px;
border-radius: 12px;
border: 3px solid #f0f0f0;
object-fit: cover; object-position: center; }
.intro-avatar .default-site-icon {
width: 100px;
height: 100px;
border-radius: 12px;
border: 3px solid #f0f0f0;
background: var(--light-gray);
display: flex;
align-items: center;
justify-content: center;
color: var(--dark-gray);
}
.intro-avatar .default-site-icon i {
font-size: 2rem;
}
.intro-details {
text-align: center;
margin-bottom: 0.6rem; }
.intro-name {
margin: 0 0 0.3rem 0;
font-size: 1.2rem;
font-weight: 600;
line-height: 1.3;
}
.intro-name a {
color: var(--primary-color);
text-decoration: none;
transition: color 0.3s ease;
}
.intro-name a:hover {
color: var(--accent-color);
}
.intro-role {
margin: 0;
font-size: 0.85rem;
color: var(--dark-gray);
background: var(--light-gray);
display: inline-block;
padding: 0.2rem 0.6rem;
border-radius: 15px;
font-weight: 500;
}
.intro-description {
text-align: left;
padding-top: 1rem;
border-top: 1px solid #f0f0f0;
}
.intro-description p {
margin: 0;
font-size: 0.9rem;
line-height: 1.5;
color: var(--text-color);
} .sidebar-container {
width: 280px; display: flex;
flex-direction: column;
position: sticky;
top: 100px; align-self: flex-start; } .widget {
margin-bottom: 1.5rem; }
.widget:last-child {
margin-bottom: 0;
}
.widget-title {
color: var(--primary-color);
font-size: 1.1rem; margin-bottom: 0.8rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--accent-color);
}
.widget ul {
list-style: none;
padding: 0;
}
.widget li {
padding: 0.5rem 0;
border-bottom: 1px solid var(--light-gray);
}
.widget li:last-child {
border-bottom: none;
}
.widget a {
color: var(--text-color);
transition: color 0.3s ease;
}
.widget a:hover {
color: var(--accent-color);
} .widget_search .search-form {
display: flex;
margin-bottom: 0.5rem;
}
.widget_search .search-field {
flex: 1;
padding: 0.7rem 1rem;
border: 1px solid var(--light-gray);
border-radius: 4px 0 0 4px;
font-size: 0.9rem;
outline: none;
transition: border-color 0.3s ease;
}
.widget_search .search-field:focus {
border-color: var(--accent-color);
box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
}
.widget_search .search-submit {
background: var(--accent-color);
color: white;
border: none;
padding: 0 0.5rem;
border-radius: 0 4px 4px 0;
cursor: pointer;
transition: background 0.3s ease;
font-size: 0.9rem;
display: flex;
align-items: center;
justify-content: center;
min-width: 35px;
margin-left: -2px;
}
.widget_search .search-submit:hover {
background: #388E3C;
} .widget_search .search-submit:disabled {
background: var(--accent-color);
color: white;
opacity: 1;
cursor: default;
}
.widget_search .search-submit:disabled:hover {
background: var(--accent-color);
}
.widget_search .search-submit .fa-search {
font-size: 1rem;
} .search-form .search-submit:disabled {
background: var(--accent-color);
color: white;
opacity: 1;
cursor: default;
}
.search-form .search-submit:disabled:hover {
background: var(--accent-color);
} .search-term {
color: var(--accent-color);
font-weight: 600;
background: rgba(76, 175, 80, 0.1);
padding: 0.2rem 0.4rem;
border-radius: 3px;
} .search-form {
position: relative;
}
.search-field[maxlength]:focus::after {
content: attr(maxlength);
position: absolute;
top: -20px;
right: 0;
font-size: 0.7rem;
color: var(--dark-gray);
background: white;
padding: 2px 5px;
border-radius: 3px;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
} .screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
} .wp-tag-cloud {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.wp-tag-cloud a {
display: inline-block;
padding: 4px 12px;
background: var(--light-gray);
border-radius: 15px;
color: var(--text-color);
text-decoration: none;
font-size: 0.9rem !important;
transition: all 0.3s ease;
}
.wp-tag-cloud a:hover {
background: var(--accent-color);
color: white;
transform: translateY(-2px);
} .single-post {
background: white;
border-radius: 8px;
box-shadow: var(--card-shadow);
padding: 1.5rem;
margin-bottom: 1.5rem;
margin-top: 0;
}
.single-post .entry-header {
margin-bottom: 1.2rem; }
.single-post .entry-title {
font-size: 2.2rem;
margin-bottom: 1rem;
display: block;
-webkit-line-clamp: unset;
line-clamp: unset;
-webkit-box-orient: unset;
overflow: visible;
text-overflow: unset;
}
.single-post .entry-meta {
margin-bottom: 1.5rem;
}
.single-post .post-thumbnail {
margin: -1.5rem -1.5rem 1.5rem; height: 400px;
}
.single-post .entry-content {
line-height: 1.8;
}
.single-post .entry-content p,
.single-post .entry-content ul,
.single-post .entry-content ol {
margin-bottom: 1.2rem; }
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
margin: 1.5rem 0 0.8rem; }
.single-post .entry-content img {
border-radius: 8px;
margin: 1.2rem 0; }
.single-post .entry-content blockquote {
border-left: 4px solid var(--accent-color);
padding-left: 1.5rem;
margin: 1.5rem 0;
font-style: italic;
color: var(--dark-gray);
} .comments-area, .comment-respond {
background: white;
border-radius: 8px;
box-shadow: var(--card-shadow);
padding: 1.5rem;
margin-bottom: 1.5rem;
}
.comments-title, .comment-reply-title {
font-size: 1.3rem;
margin-bottom: 1rem;
padding-bottom: 0.4rem;
border-bottom: 2px solid var(--accent-color);
}
.comment-list {
list-style: none;
padding: 0;
margin: 0;
counter-reset: none; }
.comment-list li {   list-style-type: none; } .comment-list > li.comment:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
} .comment-list > li.comment {
border-bottom: 1px solid #e0e0e0;
margin-bottom: 1.2rem; padding-bottom: 1.2rem; } .comment {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.comment:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.comment-author {
margin-bottom: 0; font-weight: 600;
color: #333; font-size: 1.1rem;
} .comment-author a {
color: var(--accent-color); text-decoration: none;
}
.comment-author a:hover {
color: #388E3C; }
.comment-author .avatar {
margin-right: 8px;
border-radius: 50%;
}
.comment-metadata {
font-size: 0.85rem;
color: #888;
margin: 0 !important; padding-top: 10px; line-height: 1.2;
} .comment-content-wrapper {
position: relative;
} .comment-content {
line-height: 1.8;
margin-top: 0.8rem;
padding-left: 0;
font-size: 1.05rem;
color: #333;
background-color: #f0f0f0; padding: 1rem;
border-radius: 6px;
border-left: 3px solid var(--accent-color);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
padding-right: 70px; }
.comment-content p {
margin-bottom: 0.8rem;
}
.comment-content p:last-child {
margin-bottom: 0;
}
.comment-content a {
color: var(--accent-color);
text-decoration: none;
border-bottom: 1px dotted var(--accent-color);
}
.comment-content a:hover {
border-bottom: 1px solid var(--accent-color);
} .reply {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
} .comment-reply-link {
display: inline-block;
font-size: 0.9rem;
color: var(--accent-color);
text-decoration: none;
padding: 0.3rem 0.8rem;
border-radius: 4px;
background-color: #f0f0f0;
transition: all 0.2s ease;
cursor: pointer;
}
.comment-reply-link:hover {
background-color: #e0e0e0;
text-decoration: none;
color: #2E7D32;
} .comment-respond {
margin-top: 2rem;
} .comment-respond form {
background: transparent;
border: none;
box-shadow: none;
padding: 0;
margin: 0;
} .comment-notes {
font-size: 0.9rem;
color: var(--dark-gray);
margin-top: 0; margin-bottom: 0.5rem; line-height: 1.5;
}
.comment-form-comment label {
display: block;
margin-bottom: 0.5rem;
}
.comment-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.comment-form textarea {
width: 100%;
padding: 0.8rem;
border: 1px solid #ddd;
border-radius: 4px;
font-family: inherit;
font-size: 1rem;
margin-bottom: 1rem;
}
.comment-form textarea {
margin-bottom: 5px;
min-height: 120px;
resize: vertical;
}
.comment-form input:focus,
.comment-form textarea:focus {
border-color: var(--accent-color);
outline: none;
}
.comment-form input[type="submit"] {
background: var(--accent-color);
color: white;
border: none;
padding: 0.8rem 1.5rem;
border-radius: 4px;
cursor: pointer;
font-size: 1rem;
font-weight: 500;
transition: background 0.3s ease;
}
.comment-form input[type="submit"]:hover {
background: #388E3C;
} .comment-list .children {
list-style: none;
margin: 1.5rem 0 0 3rem; padding: 0;
} .comment-list .children > li {
margin-bottom: 1.5rem; padding-bottom: 0;
} .comment-list .children > li:last-child {
margin-bottom: 0;
padding-bottom: 0;
} .comment-list .children .children {
margin-left: 0; } @media (max-width: 768px) {
.comment-list .children {
margin-left: 1.5rem; }
.comment-list .children .children {
margin-left: 0; }
} .reply-author {
font-weight: bold;
color: var(--accent-color);
}
#cancel-comment-reply-link {
font-size: 0.9rem;
color: var(--dark-gray);
margin-left: 1rem;
display: none;
}
#cancel-comment-reply-link.show {
display: inline-block;
}
#cancel-comment-reply-link:hover {
color: #f44336;
} .copyright-info {
background-color: #ffffff;
padding: 15px 0; border-top: 1px solid #e8e8e8;
text-align: center;
font-size: 0.9rem;
color: #666;
width: 100%;
margin-top: 0;
}
.copyright-info .container p {
margin: 0;
line-height: 1.6;
}
.copyright-info .sep {
margin: 0 0.5rem;
color: #ccc;
}
.copyright-info a {
color: var(--accent-color);
text-decoration: none;
border-bottom: 1px dotted transparent;
transition: border-bottom 0.3s ease;
}
.copyright-info a:hover {
text-decoration: none;
border-bottom: 1px dotted var(--accent-color);
} @media (max-width: 576px) {
.copyright-info .sep {
display: block;
margin: 0.3rem auto;
}
}
@media (max-width: 768px) {
.content-area {
min-height: 40vh;
}
} @keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in {
animation: fadeIn 0.8s ease-out forwards;
} @media (max-width: 992px) {
.content-area {
flex-direction: column;
margin-top: 1rem; }
.site-main {
padding-right: 0;
}
.sidebar-container {
width: 100%;
margin-top: 1.5rem; align-self: stretch;
position: static; max-height: none; overflow-y: visible; }
.intro-module {
width: 100%;
margin-bottom: 0.6rem; }
.intro-avatar img,
.intro-avatar .site-icon,
.intro-avatar .default-site-icon {
width: 80px;
height: 80px;
}
.intro-card {
padding: 1.2rem;
}
.intro-name {
font-size: 1.1rem;
}
.sidebar {
width: 100%;
margin-top: 0; align-self: stretch;
position: static; max-height: none; overflow-y: visible; }
}
@media (max-width: 768px) {
.hero-content h1 {
font-size: 2.5rem;
}
.hero-content p {
font-size: 1.2rem;
}
.post-card {
flex-direction: column;
}
.post-card.status-format {
flex-direction: column;
align-items: flex-start;
gap: 0.8rem;
padding: 0.8rem;
position: relative;
}
.status-author {
min-width: auto;
width: calc(100% - 100px); justify-content: flex-start;
align-items: center;
}
.status-content {
padding: 0;
width: 100%;
margin-top: 0.5rem;
}
.status-date {
position: absolute;
top: 0.8rem;
right: 0.8rem;
min-width: auto;
text-align: right;
width: auto;
z-index: 1;
height: 40px; display: flex;
align-items: center; }
.status-date time {
font-size: 0.8rem;
color: #888;
white-space: nowrap;
}
.post-thumbnail {
height: 200px;
flex: none;
} .entry-summary {
font-size: 0.95rem;
line-height: 1.5;
margin-top: 0.3rem;
display: -webkit-box !important;
-webkit-line-clamp: 4 !important;
line-clamp: 4 !important;
-webkit-box-orient: vertical !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
}
.menu-toggle {
display: block;
z-index: 101;
}
.main-navigation {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.98);
box-shadow: none;
padding: 80px 2rem 2rem;
display: none;
overflow-y: auto;
z-index: 100;
}
.main-navigation.toggled {
display: block;
animation: fadeIn 0.3s ease-out forwards;
}
.nav-menu {
flex-direction: column;
width: 100%;
}
.nav-menu li {
width: 100%;
border-bottom: 1px solid #f0f0f0;
}
.nav-menu li:last-child {
border-bottom: none;
}
.nav-menu a {
padding: 1rem 0;
width: 100%;
}
.nav-menu .sub-menu {
position: static;
opacity: 1;
visibility: visible;
transform: none;
box-shadow: none;
width: 100%;
padding: 0 0 0 1.5rem;
display: none;
background: transparent;
border-top: 1px solid #f0f0f0;
}
.nav-menu .sub-menu li {
border-bottom: 1px solid #f0f0f0;
}
.nav-menu .sub-menu li:last-child {
border-bottom: none;
}
.nav-menu .sub-menu a {
padding: 0.8rem 0;
}
.nav-menu li.menu-item-has-children > a {
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-menu li.menu-item-has-children > a::after {  content: '';   display: inline-block;
width: 0;
height: 0;
border-style: solid;
border-width: 0.3em 0.4em 0 0.4em; border-color: var(--dark-gray) transparent transparent transparent; margin-left: 0.5rem;
vertical-align: middle; transition: transform 0.3s ease; }
.nav-menu li.menu-item-has-children.active > a::after {  transform: rotate(180deg);  } .nav-menu li.menu-item-has-children.active > .sub-menu {
display: block;
} .post-navigation .nav-links {
flex-direction: column;
gap: 1rem; }
.post-navigation .nav-previous,
.post-navigation .nav-next {
width: 100%;
padding: 1rem; } .site-logo img.custom-logo {
max-height: 50px;
}  .single-post .entry-content,
.comment-content p {
word-wrap: break-word;
overflow-wrap: break-word;
word-break: break-word; hyphens: auto; } .comments-area, 
.comment-respond {
padding: 1rem;
} .comment-reply-item {
margin-left: 1rem !important; } .comment-content {
padding: 0.8rem;
padding-right: 55px; } .reply {
right: 5px; top: 50%; transform: translateY(-50%); }
.comment-reply-link {
padding: 0.3rem 0.8rem; font-size: 0.9rem; } .single-page-content .container,
.single-page-content .content-area {
padding-top: 0.5rem !important;
} }
.widget_popular_posts ul {
list-style: none;
padding: 0;
}
.widget_popular_posts li {
padding: 0.8rem 0;
border-bottom: 1px solid var(--light-gray);
}
.widget_popular_posts li:last-child {
border-bottom: none;
}
.widget_popular_posts a {
color: var(--text-color);
text-decoration: none;
transition: color 0.3s ease;
display: block;
line-height: 1.4;
}
.widget_popular_posts a:hover {
color: var(--accent-color);
} .popular-posts-grid {
display: flex;
flex-direction: column;
gap: 15px;
}
.mini-post-card {
display: flex;
background: white;
border-radius: 6px;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: var(--card-shadow);
margin-bottom: 0; height: 80px; } .mini-post-card:hover {
transform: none;
box-shadow: none;
}
.mini-post-thumbnail {
flex: 0 0 80px;
height: 80px;
overflow: hidden;
cursor: pointer;
}
.mini-post-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
cursor: pointer;
}
.mini-post-card:hover .mini-post-thumbnail img {
transform: scale(1.05);
}
.no-thumbnail {
background-color: var(--light-gray);
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: #999;
transition: all 0.3s ease;
}
.no-thumbnail .fa-file-alt {
font-size: 1.8rem;
opacity: 0.7;
transition: transform 0.3s ease;
}
.mini-post-card:hover .no-thumbnail {
background-color: var(--light-gray);
}
.mini-post-card:hover .no-thumbnail .fa-file-alt {
opacity: 0.9;
transform: scale(1.1);
}
.mini-post-content {
padding: 6px 10px; flex: 1;
display: flex;
flex-direction: column;
justify-content: flex-start; overflow: hidden; gap: 6px; }
.mini-post-title {
font-size: 0.9rem;
margin: 0; line-height: 1.2; cursor: pointer;
display: -webkit-box !important;
-webkit-line-clamp: 2 !important;
line-clamp: 2 !important;
-webkit-box-orient: vertical !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
max-height: calc(1.2em * 2) !important; word-wrap: break-word;
word-break: break-word;
} .mini-post-title a {
color: var(--text-color);
text-decoration: none;
transition: color 0.3s ease;
display: -webkit-box !important;
-webkit-line-clamp: 2 !important;
line-clamp: 2 !important;
-webkit-box-orient: vertical !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
cursor: pointer;
max-height: calc(1.2em * 2) !important; word-wrap: break-word;
word-break: break-word;
line-height: 1.2;
}
.mini-post-title a:hover {
color: var(--accent-color);
}
.mini-post-meta {
font-size: 0.75rem;
color: var(--dark-gray);
margin: 0; line-height: 1.2; flex-shrink: 0; } .widget_popular_posts ul,
.widget_popular_posts li,
.widget_popular_posts li:last-child,
.widget_popular_posts a,
.widget_popular_posts a:hover { all: unset;
} .post-navigation {
margin: 1.5rem 0; }
.post-navigation .nav-links {
display: flex;
justify-content: space-between;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
background: white;
padding: 1.2rem; border-radius: 8px;
box-shadow: var(--card-shadow);
width: 48%;
transition: all 0.3s ease;
}
.post-navigation .nav-previous:hover,
.post-navigation .nav-next:hover {
transform: translateY(-3px);
box-shadow: var(--hover-shadow);
}
.post-navigation .nav-subtitle {
display: block;
font-size: 0.75rem; color: var(--dark-gray);
margin-bottom: 0.3rem; }
.post-navigation .nav-title {
font-size: 1rem; font-weight: 500;
color: var(--primary-color);
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
line-height: 1.4;
max-height: 2.8em; }
@media (max-width: 768px) {
.post-navigation .nav-links {
flex-direction: column;
gap: 1.5rem;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
width: 100%;
}
} body::after {
content: none !important;
display: none !important;
}
html::after {
content: none !important;
display: none !important;
}
.copyright-info::after {
content: none !important;
display: none !important;
} .widget_categories .categories-list {
list-style: none;
padding: 0;
margin: 0;
}
.widget_categories .category-item {
margin-bottom: 0.8rem;
padding-bottom: 0.8rem;
border-bottom: 1px solid #f0f0f0;
transition: all 0.3s ease;
}
.widget_categories .category-item:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.widget_categories .category-link {
display: flex;
justify-content: space-between;
align-items: center;
color: #333;
text-decoration: none;
font-size: 0.95rem;
padding: 0.3rem 0;
transition: all 0.3s ease;
}
.widget_categories .category-link:hover {
color: var(--accent-color);
transform: translateX(5px);
}
.widget_categories .category-name {
font-weight: 500;
}
.widget_categories .category-count {
color: #888;
font-size: 0.85rem;
background: #f5f5f5;
padding: 0.2rem 0.5rem;
border-radius: 12px;
transition: all 0.3s ease;
}
.widget_categories .category-link:hover .category-count {
background: var(--accent-color);
color: white;
} .post-thumbnail .no-thumbnail {
background-color: #f9f9f9;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: #999;
min-height: 200px;
}
.post-thumbnail .no-thumbnail .fa-file-alt {
font-size: 3rem;
opacity: 0.7;
transition: transform 0.3s ease;
}
.post-card:hover .post-thumbnail .no-thumbnail .fa-file-alt {
opacity: 0.9;
transform: scale(1.1);
} .comment-reply-item {
margin-left: 2.5rem !important;
position: relative;
margin-top: 1rem; }  .comment-reply-item .comment {
padding-left: 1rem;
background-color: transparent !important; border-radius: 6px;
} .comment-reply-item .comment-content {
background-color: #f0f0f0 !important; border-left: 3px solid var(--accent-color) !important; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important; }   .reply-to-inline {
font-size: 0.8rem; color: var(--dark-gray); font-weight: normal; margin-left: 0.5rem; } .reply-to-inline .replied-author-name {
color: #444; font-weight: 500; } .mini-post-card-link {
display: block;
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
margin-bottom: 1rem;
cursor: pointer; }
.mini-post-card-link:hover {
transform: translateY(-3px);
text-decoration: none;
color: inherit;
}
.mini-post-card-link:hover .mini-post-card {
box-shadow: var(--hover-shadow);
}
.mini-post-card-link:hover .mini-post-title {
color: var(--accent-color);
} .mini-post-card-link * {
cursor: pointer;
} .mini-post-card {
display: flex;
background: white;
border-radius: 6px;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: var(--card-shadow);
margin-bottom: 0; } .page-title {
margin-bottom: 0.5rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid var(--accent-color);
font-size: 1.8rem;
color: var(--primary-color);
}
.author-description {
margin-top: 1rem;
margin-bottom: 1.5rem;
padding: 1rem;
background: #f9f9f9;
border-radius: 8px;
border-left: 4px solid var(--accent-color);
}
.author-description p {
margin: 0;
font-style: italic;
color: var(--dark-gray);
} .search .page-title {
margin-bottom: 0.5rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid var(--accent-color);
font-size: 1.8rem;
}
.search .search-result-count {
color: var(--dark-gray);
font-size: 0.95rem;
margin-bottom: 1.5rem;
}
.search .entry-title a {
display: block;
cursor: pointer;
position: relative;
z-index: 2;
} .entry-title a {
display: block;
cursor: pointer;
position: relative;
z-index: 2;
} .poster-wrapper {
position: relative;
width: 100%;
max-width: 1170px; height: 60vh;
overflow: hidden;
background-color: #000;
margin: 2rem auto;
border-radius: 8px;
box-shadow: var(--card-shadow);
}
.poster-container {
position: relative;
width: 100%;
height: 100%;
}
.poster-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1;
will-change: opacity; }
.poster-slide.active {
opacity: 1;
z-index: 2;
}
.poster-slide img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center; image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
backface-visibility: hidden; transform: translateZ(0); filter: none; -webkit-filter: none; opacity: 0; transition: opacity 0.3s ease; } .poster-link {
display: block;
width: 100%;
height: 100%;
text-decoration: none;
cursor: pointer;
}
.poster-link img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
} .poster-slide.next {
z-index: 1;
opacity: 0;
}
.poster-dots {
position: absolute;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
display: flex;
z-index: 10;
}
.poster-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.5);
margin: 0 5px;
cursor: pointer;
transition: all 0.3s;
}
.poster-dot.active {
background: white;
} .main-content-container {
width: 100%;
padding: 1rem 0;
background-color: #ffffff;
}
@media (max-width: 992px) {
.poster-wrapper {
width: 100%;
max-width: calc(100% - 30px); height: 50vh;
}
}
@media (max-width: 768px) {
.poster-wrapper {
width: 100%;
max-width: calc(100% - 30px); height: 40vh;
}
.content-area {
min-height: 40vh;
}
} html {
height: 100%;
margin-top: 0 !important;
padding-top: 0 !important;
}
body:not(.wp-admin) {
margin-top: 0 !important;
}
.site-content {
flex: 1;
padding-bottom: 0;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
.content-area {
display: flex;
flex-wrap: wrap;
margin: 1.5rem 0;
align-items: flex-start;
min-height: 50vh;
}
.copyright-info {
background-color: #ffffff;
padding: 15px 0; border-top: 1px solid #e8e8e8;
text-align: center;
font-size: 0.9rem;
color: #666;
width: 100%;
margin-top: 0;
}
.copyright-info .container p {
margin: 0;
line-height: 1.6;
}
.copyright-info .sep {
margin: 0 0.5rem;
color: #ccc;
}
.copyright-info a {
color: var(--accent-color);
text-decoration: none;
border-bottom: 1px dotted transparent;
transition: border-bottom 0.3s ease;
}
.copyright-info a:hover {
text-decoration: none;
border-bottom: 1px dotted var(--accent-color);
} @media (max-width: 576px) {
.copyright-info .sep {
display: block;
margin: 0.3rem auto;
}
}
@media (max-width: 768px) {
.content-area {
min-height: 40vh;
}
} .single .content-area {
margin-top: 0; } .page .content-area {
margin-top: 0; } .single .site-content, 
.page .site-content {
padding-top: 0; } .site-header + .site-content {
margin-top: 0; } .single-page-content {
padding-top: 0 !important;
margin-top: 0 !important;
}
.single-page-content .container,
.single-page-content .content-area {
margin-top: 0 !important;
padding-top: 0.8rem !important;
} .single .container,
.page .container {
padding-top: 0;
} .single .site-header,
.page .site-header {
margin-bottom: 0;
border-bottom: none;
} .single .site-content,
.page .site-content {
display: flex;
flex-direction: column;
} @media (max-width: 768px) {
.single-post {
padding: 1rem;
}
.single-post .post-thumbnail {
margin: -1rem -1rem 1rem;
height: auto;
max-height: 300px;
}
.single-page-content .container,
.single-page-content .content-area {
padding-top: 0.5rem !important;
}
} body.single,
body.page {
display: flex;
flex-direction: column;
min-height: 100vh;
} .single .site-header,
.page .site-header {
position: sticky; top: 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.1); z-index: 100;
} .single .container,
.page .container {
padding-top: 0;
} .single .site-content,
.page .site-content {
flex: 1;
display: flex;
flex-direction: column;
padding-top: 0.8rem; } .single-post {
margin-top: 0;
border-radius: 6px; } .single-post .post-thumbnail {
margin: 1rem -1.5rem 1.5rem;
height: 400px;
border-radius: 6px; } body::before,
html::before {
display: none !important;
content: none !important;
} body.admin-bar .site-header {
top: 32px; }
@media screen and (max-width: 782px) {
body.admin-bar .site-header {
top: 46px; }
} .form-submit {
margin-top: 0.7rem; } @media (max-width: 768px) {
.site-logo img.custom-logo {
max-height: 50px;
}
} .mini-post-views {
margin-left: 10px;
font-size: 0.75rem;
color: var(--dark-gray);
}
.mini-post-views i {
margin-right: 3px;
font-size: 0.7rem;
} .post-author {
margin-right: 1rem;
color: var(--dark-gray);
}
.post-author i {
margin-right: 0;  color: inherit;
} .author-link {
color: var(--accent-color);
text-decoration: none;
transition: color 0.3s ease;
}
.author-link:hover {
color: #388E3C; text-decoration: none; } .image-lightbox {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.image-lightbox.active {
opacity: 1;
visibility: visible;
}
.lightbox-container {
position: relative;
max-width: 90%;
max-height: 90%;
margin: auto;
display: flex;
justify-content: center;
align-items: center;
}
.lightbox-image {
max-width: 100%;
max-height: 80vh;
display: block;
object-fit: contain;
transition: none; cursor: grab;
transform-origin: center;
}
.lightbox-image:active {
cursor: grabbing;
} .single-post .entry-content img {
cursor: pointer;
transition: opacity 0.3s ease;
}
.single-post .entry-content img:hover {
opacity: 1;
} .comment-avatar {
width: 53px !important; height: 53px !important; border-radius: 50% !important;
box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
border: 2px solid #fff !important;
float: none !important; margin: 0 !important; flex-shrink: 0; }
.comment-header {
display: flex;
align-items: center; gap: 10px; margin-bottom: 0.8rem; }
.comment-author-meta-details {
display: flex;
flex-direction: column;
justify-content: center; }
.comment-author h4 {
display: flex !important; align-items: center !important; font-size: 18px !important;
line-height: 1.4 !important;
margin-bottom: 0 !important; margin-top: 0 !important; color: #444; } .comment-author h4 a {
color: var(--accent-color) !important; text-decoration: none !important;
font-weight: inherit;
}
.comment-author h4 a:hover {
color: #388E3C !important; text-decoration: none !important;
} .user-role-badge {
font-size: 11px;
font-weight: 500;
padding: 2px 6px;
border-radius: 10px;
margin-left: 8px;
color: white;
text-transform: uppercase;
letter-spacing: 0.5px;
vertical-align: middle;
}
.admin-badge {
background-color: #ff564d; }
.editor-badge {
background-color: #FFD93D; }
.author-badge {
background-color: #6CBBE7; }
.contributor-badge {
background-color: #40c24b; } .wp-lightbox-container,
.wp-lightbox-overlay,
.lightbox-trigger {
display: none !important;
visibility: hidden !important;
opacity: 0 !important;
} .wp-lightbox-container button {
display: none !important;
} .wp-block-image img {
cursor: pointer !important;
} .wp-lightbox-container * {
display: none !important;
} .copyright-info .site-runtime {
margin-top: 8px !important;
font-size: 0.85rem;
color: #888;
}
.copyright-info .site-runtime #site-runtime-display {
color: #666;
font-weight: 600;
} .copyright-info img {
vertical-align: middle;
margin-left: 8px;
border: none;
box-shadow: none;
max-height: 20px;
width: auto;
border-radius: 2px;
} @media (max-width: 576px) {
.copyright-info img {
margin-left: 5px;
max-height: 16px;
}
} .site-statement {
position: absolute;
z-index: 50;
font-size: 0.75rem;
color: rgba(102, 102, 102, 0.6);
background: none;
padding: 0;
border-radius: 0;
box-shadow: none;
backdrop-filter: none;
transition: opacity 0.3s ease;
}
.site-statement:hover {
opacity: 1;
color: rgba(102, 102, 102, 0.9);
} .site-statement.statement-left {
left: 20px;
} .site-statement.statement-right {
right: 20px;
} .site-statement.site-statement-wordpress.statement-left {
bottom: 15px;
}
.site-statement.site-statement-wordpress.statement-right {
bottom: 15px;
} .site-statement.site-statement-theme.statement-left {
bottom: 15px;
}
.site-statement.site-statement-theme.statement-right {
bottom: 15px;
}  .site-statement.site-statement-wordpress.statement-left ~ .site-statement.site-statement-theme.statement-left {
bottom: 45px; }
.site-statement.site-statement-wordpress.statement-right ~ .site-statement.site-statement-theme.statement-right {
bottom: 45px; }
.site-statement a {
color: inherit;
text-decoration: none;
transition: color 0.3s ease;
}
.site-statement a:hover {
color: var(--accent-color);
text-decoration: none;
} .mobile-statements {
display: none;
} @media (max-width: 768px) { .mobile-statements {
display: block !important;
} .site-statement.desktop-only {
display: none !important;
} .mobile-statements .site-statement {
position: static !important;
font-size: 0.7rem;
padding: 0;
display: inline-block;
margin: 0 8px;
left: auto !important;
right: auto !important;
bottom: auto !important;
color: rgba(102, 102, 102, 0.6);
transition: opacity 0.3s ease;
} .mobile-statements .site-statement:hover {
opacity: 1;
color: rgba(102, 102, 102, 0.9);
} .mobile-statements .site-statement a {
color: inherit;
text-decoration: none;
transition: color 0.3s ease;
}
.mobile-statements .site-statement a:hover {
color: var(--accent-color);
text-decoration: none;
}
} 
@media (max-width: 576px) {
.pagination {
gap: 5px;
}
.pagination .page-numbers {
min-width: 35px;
height: 35px;
font-size: 0.9rem;
}
.pagination .prev,
.pagination .next {
padding: 0 10px;
} .entry-summary {
font-size: 0.95rem;
line-height: 1.4;
margin-top: 0.2rem;
display: -webkit-box !important;
-webkit-line-clamp: 4 !important;
line-clamp: 4 !important;
-webkit-box-orient: vertical !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
} .entry-title {
font-size: 1.4rem;
line-height: 1.3;
margin-bottom: 0.6rem;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
} .posts-grid {
display: flex !important;
flex-direction: column !important;
gap: 2rem !important; } .posts-grid .post-card,
.posts-grid .post-card.status-format {
margin-bottom: 0 !important;
}