*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    color: #f96d00;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover,
a:focus {
    color: #d65a00;
    text-decoration: none;
    transform: translateY(-2px);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin: 0 0 1rem;
}

ul, ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: #2d7d46;
    color: #fff;
    padding: 10px 20px;
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #f96d00;
    color: #fff;
    border-color: #f96d00;
    box-shadow: 0 4px 12px rgba(249, 109, 0, 0.3);
}

.btn-primary:hover {
    background-color: #d65a00;
    border-color: #d65a00;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(249, 109, 0, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: #fff;
    color: #f96d00;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #f96d00;
    border-color: #f96d00;
    box-shadow: 0 4px 12px rgba(249, 109, 0, 0.1);
}

.btn-outline:hover {
    background-color: #f96d00;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(249, 109, 0, 0.3);
    transform: translateY(-2px);
}

.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: #f96d00;
    color: #fff;
    padding: 8px 0;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(249, 109, 0, 0.3);
}

.header-contact {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.site-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo {
    max-width: 200px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f96d00;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(249, 109, 0, 0.2);
}

.site-description {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #333;
    left: 0;
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 5px;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a {
    color: #f96d00;
    text-decoration: none;
    transform: translateY(-2px);
}

.nav-menu li:hover > ul {
    display: block;
}

.nav-menu ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 10px 0;
    display: none;
    z-index: 999;
}

.nav-menu ul li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 0.875rem;
}

.nav-menu ul li a:hover {
    background-color: #fff3e0;
    color: #f96d00;
    text-decoration: none;
    transform: translateX(5px);
}

.breadcrumb-wrapper {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    font-size: 0.875rem;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li a {
    color: #666;
}

.breadcrumb-list li a:hover {
    color: #f96d00;
}

.breadcrumb-list li:last-child span {
    color: #f96d00;
    font-weight: 600;
}

.breadcrumb-list .separator {
    margin: 0 10px;
    color: #999;
}

.hero-section {
    background: linear-gradient(135deg, #f96d00 0%, #d65a00 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.1"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.section-description {
    font-size: 1rem;
    color: #666;
}

.services-section {
    padding: 100px 0;
    background-color: #fff9f5;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f96d00, #ff9e43);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item {
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f96d00, #ff9e43);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(249, 109, 0, 0.15);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f96d00, #ff9e43);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(249, 109, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(249, 109, 0, 0.4);
}

.service-icon::before {
    content: '';
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.service-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.advantages-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.advantages-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff9e43, #f96d00);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.advantage-item {
    text-align: center;
    padding: 40px 30px;
    background-color: #fff9f5;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(249, 109, 0, 0.1);
}

.advantage-number {
    font-size: 4rem;
    font-weight: 700;
    color: #f96d00;
    opacity: 0.1;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.advantage-title {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.advantage-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.posts-section {
    padding: 100px 0;
    background-color: #fff9f5;
    position: relative;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.post-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.post-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f96d00, #ff9e43);
}

.post-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(249, 109, 0, 0.15);
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    height: 200px;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-item:hover .post-thumbnail img {
    transform: scale(1.1);
}

.post-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-item:hover .post-thumbnail::after {
    opacity: 1;
}

.post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.post-meta a {
    color: #999;
    transition: all 0.3s ease;
}

.post-meta a:hover {
    color: #f96d00;
    transform: translateY(-2px);
}

.post-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.post-title a {
    color: #333;
    transition: all 0.3s ease;
}

.post-title a:hover {
    color: #f96d00;
    text-decoration: none;
    transform: translateX(5px);
}

.post-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #f96d00;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
    background-color: rgba(249, 109, 0, 0.05);
}

.read-more:hover {
    color: #fff;
    background-color: #f96d00;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 109, 0, 0.3);
}

.posts-more {
    text-align: center;
    margin-top: 20px;
}

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f96d00 0%, #d65a00 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.1"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    z-index: 0;
}

.contact-section .section-title,
.contact-section .section-description {
    color: #fff;
    position: relative;
    z-index: 1;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.contact-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 15px;
    opacity: 0.95;
    font-weight: 600;
}

.contact-phone {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 60px 0;
}

.content-area {
    min-width: 0;
}

.widget-area {
    width: 300px;
}

.widget {
    background-color: #fff9f5;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 109, 0, 0.1);
}

.widget-title {
    font-size: 1.125rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f96d00;
    color: #333;
    font-weight: 600;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #f96d00, #ff9e43);
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li:hover {
    padding-left: 10px;
}

.widget ul li a {
    color: #333;
    transition: all 0.3s ease;
    display: block;
}

.widget ul li a:hover {
    color: #f96d00;
    transform: translateX(5px);
}

.archive-header {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f96d00;
    position: relative;
}

.archive-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #f96d00, #ff9e43);
}

.archive-title {
    font-size: 2rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.archive-description {
    margin-top: 15px;
    color: #666;
    font-size: 1rem;
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.posts-list .post-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.posts-list .post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(249, 109, 0, 0.1);
}

.posts-list .post-thumbnail {
    aspect-ratio: auto;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
}

.posts-list .post-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.posts-list .post-title {
    font-size: 1.45rem;
    margin-bottom: 15px;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.post-categories {
    font-size: 0.875rem;
}

.post-categories a {
    color: #f96d00;
    background-color: rgba(249, 109, 0, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.post-categories a:hover {
    background-color: #f96d00;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.pagination-nav {
    margin-top: 50px;
    padding: 30px 0;
    background-color: #fff9f5;
    border-radius: 12px;
}

.pagination-nav .page-numbers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-nav .page-numbers li {
    display: inline-block;
}

.pagination-nav .page-numbers a,
.pagination-nav .page-numbers span {
    display: block;
    padding: 12px 18px;
    background-color: #fff;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    font-weight: 500;
}

.pagination-nav .page-numbers a:hover {
    background-color: #f96d00;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 109, 0, 0.3);
    border-color: #f96d00;
}

.pagination-nav .page-numbers .current {
    background-color: #f96d00;
    color: #fff;
    border-color: #f96d00;
    box-shadow: 0 4px 12px rgba(249, 109, 0, 0.3);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.no-results-content {
    color: #666;
    margin-bottom: 30px;
}

.post-single {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.entry-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f96d00;
    position: relative;
}

.entry-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #f96d00, #ff9e43);
}

.entry-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.875rem;
    color: #666;
    padding: 15px;
    background-color: #fff9f5;
    border-radius: 8px;
    margin-top: 15px;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.entry-thumbnail {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.entry-thumbnail img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.entry-thumbnail:hover img {
    transform: scale(1.02);
}

.entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333;
}

.entry-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #f96d00;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.entry-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #d65a00;
    font-weight: 600;
}

.entry-content img {
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 2.5rem;
}

.entry-content ul li,
.entry-content ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.entry-content blockquote {
    margin: 30px 0;
    padding: 30px 40px;
    background-color: #fff9f5;
    border-left: 4px solid #f96d00;
    font-style: italic;
    border-radius: 8px;
    position: relative;
}

.entry-content blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 3rem;
    color: #f96d00;
    opacity: 0.2;
    font-family: 'Georgia', serif;
}

.entry-footer {
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 40px;
}

.entry-tags {
    margin-bottom: 25px;
}

.entry-tags a {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 8px 18px;
    background-color: #fff9f5;
    color: #f96d00;
    border-radius: 25px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(249, 109, 0, 0.2);
}

.entry-tags a:hover {
    background-color: #f96d00;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 109, 0, 0.3);
}

.entry-share {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff9f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(249, 109, 0, 0.2);
}

.share-btn:hover {
    background-color: #f96d00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 109, 0, 0.3);
}

.post-navigation {
    margin-bottom: 50px;
    padding: 40px;
    background-color: #fff9f5;
    border-radius: 12px;
    position: relative;
}

.post-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f96d00, #ff9e43);
    border-radius: 12px 12px 0 0;
}

.post-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.nav-previous,
.nav-next {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.nav-previous:hover,
.nav-next:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 109, 0, 0.1);
}

.nav-next {
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 0.75rem;
    color: #f96d00;
    margin-bottom: 8px;
    font-weight: 500;
}

.nav-title {
    display: block;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.post-navigation a:hover .nav-title {
    color: #f96d00;
}

.author-info {
    display: flex;
    gap: 30px;
    padding: 40px;
    background-color: #fff9f5;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.author-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f96d00, #ff9e43);
    border-radius: 12px 12px 0 0;
}

.author-avatar img {
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.author-info:hover .author-avatar img {
    transform: scale(1.05);
}

.author-name {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.author-bio {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.related-posts {
    margin-bottom: 50px;
    padding: 40px;
    background-color: #fff9f5;
    border-radius: 12px;
    position: relative;
}

.related-posts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f96d00, #ff9e43);
    border-radius: 12px 12px 0 0;
}

.related-posts-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    color: #333;
    font-weight: 600;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-post-item {
    display: flex;
    flex-direction: column;
    padding: 25px;
    background-color: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.related-post-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(249, 109, 0, 0.15);
}

.related-post-thumbnail {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.related-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-item:hover .related-post-thumbnail img {
    transform: scale(1.1);
}

.related-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-post-title {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 10px;
}

.related-post-title a {
    color: #333;
    transition: all 0.3s ease;
}

.related-post-title a:hover {
    color: #f96d00;
    text-decoration: none;
    transform: translateX(5px);
}

.related-post-date {
    font-size: 0.75rem;
    color: #999;
    margin-top: auto;
}

.comments-area {
    margin-top: 50px;
    padding: 40px;
    background-color: #fff9f5;
    border-radius: 12px;
    position: relative;
}

.comments-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f96d00, #ff9e43);
    border-radius: 12px 12px 0 0;
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    margin-bottom: 30px;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.comment:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 109, 0, 0.1);
}

.comment .children {
    list-style: none;
    margin-top: 20px;
    margin-left: 40px;
}

.comment-author {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.comment-meta {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 15px;
}

.comment-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.reply a {
    font-size: 0.875rem;
    color: #f96d00;
    background-color: rgba(249, 109, 0, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.reply a:hover {
    background-color: #f96d00;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.comment-respond {
    margin-top: 40px;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.comment-reply-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #f96d00;
    box-shadow: 0 0 0 3px rgba(249, 109, 0, 0.1);
}

.comment-form textarea {
    min-height: 180px;
    resize: vertical;
}

.form-submit input[type="submit"] {
    padding: 15px 35px;
    background-color: #f96d00;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 109, 0, 0.3);
}

.form-submit input[type="submit"]:hover {
    background-color: #d65a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 109, 0, 0.4);
}

.site-footer {
    background: linear-gradient(135deg, #f96d00 0%, #d65a00 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.1"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    z-index: 0;
}

.footer-widgets {
    padding: 80px 0 50px;
    position: relative;
    z-index: 1;
}

.footer-widgets-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-widget {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.footer-widget-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
}

.footer-widget p,
.footer-widget li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-widget a:hover {
    color: #fff;
    transform: translateX(5px);
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-list li i {
    margin-top: 4px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-menu li:hover {
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    background: rgba(249, 109, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p,
.footer-info p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.copyright a {
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.copyright a:hover {
    text-decoration: underline;
    transform: translateY(-2px);
}

.page-links {
    margin: 20px 0;
}

.page-links-title {
    font-weight: 600;
    margin-right: 10px;
}

.page-number {
    display: inline-block;
    padding: 5px 10px;
    margin-right: 5px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.edit-link a {
    color: #2d7d46;
    font-size: 0.875rem;
}
