/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Tinos', serif;
    font-weight: 400;
}

a {
    text-decoration: none;
}

.space {
    letter-spacing: 0.25em;
}

.hero-title {
    font-family: 'Tinos', serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.section-title {
    font-family: 'Tinos', serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
    color: #B29539;
}

.section-subtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    font-weight: 300;
    color: #B29539;
    margin-top: -1rem;
}

/* トップページ: スライドショー + 下部ナビゲーション */
.hero-slider-with-nav {
    position: relative;
}

.hero-slider {
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.slider-logo {
    position: absolute;
    top: 50%;
    left: 10%;
    max-width: 400px;
    transform: translate(-10%, -50%);
    -webkit-transform: translate(-10%, -50%);
    -ms-transform: translate(-10%, -50%);
    z-index: 1;
}

@media (max-width:600px) {
    .slider-logo {
        position: absolute;
        left: 20%;
        max-width: 100px;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        z-index: 1;
    }
}


.slider {
    height: 100%;
}

.slide {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.logo-overlay {
    margin-bottom: 2rem;
}

.hero-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

/* スライドショー下部のナビゲーション */

.main-navigation-home {
    background-color: #CDE9EB;
    color: #000;
}

span.cart-icon::before {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-image: url(./images/cart-icon.svg);
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 7px;
}

/* トップページのモバイル時にメニューを上固定 */
@media (max-width: 991.98px) {
    .main-navigation-home {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
    }


}

.main-navigation-bottom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.main-navigation-bottom .nav {
    gap: 4rem;
}

.main-navigation-bottom .nav-link {
    font-family: 'Tinos', serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: #333 !important;
    padding: 1rem 0 !important;
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
}

.main-navigation-bottom .nav-link:hover {
    color: #a8d5d8 !important;
}

.main-navigation-bottom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #a8d5d8;
    transition: width 0.3s ease;
}

.main-navigation-bottom .nav-link:hover::after {
    width: 100%;
}

.nav-link {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
}

/* モバイル用ヘッダー（トップページ） */
.mobile-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.mobile-header .logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* その他のページ: ナビゲーションのみ */
.header-pages {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.header-pages .navbar {
    padding: 1.5rem 0;
}


.navbar {
    background-color: #CDE9EB;
}

.navbar-brand {
    padding-top: 0;
}

.navbar-brand img {
    max-width: 250px;
}

.header-pages .navbar-brand .logo {
    height: 50px;
    width: auto;
}

.header-pages .navbar-nav .nav-link {
    font-family: 'Tinos', serif;
    letter-spacing: 0.05em;
    color: #333 !important;
    margin: 0 2rem;
    padding: 0.5rem 0 !important;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.25em;
}

.header-pages .navbar-nav .nav-link:hover {
    color: #a8d5d8 !important;
}

.header-pages .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #a8d5d8;
    transition: width 0.3s ease;
}

.header-pages .navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* メインコンテンツのマージン（その他のページ） */
.main-content {
    padding-top: 2rem;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-header .hamburger span {
    background: #fff;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: right 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-menu-item {
    display: block;
    font-family: 'Tinos', serif;
    font-size: 1.5rem;
    color: #333;
    text-decoration: none;
    margin: 2rem 0;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.mobile-menu-item:hover {
    color: #a8d5d8;
}

/* Sections */


.bg-light {
    background-color: #f8f9fa !important;
}

.back-01 {
    background-image: url(./images/block-back01.png);
    background-repeat: no-repeat;
    background-size: 15%;
    background-position: left bottom;
}

.back-02 {
    background-image: url(./images/block-back02.png);
    background-repeat: no-repeat;
    background-size: 15%;
    background-position: right bottom;
}

.back-03 {
    background-image: url(./images/block-back03.png);
    background-repeat: no-repeat;
    background-size: 15%;
    background-position: left bottom;
}

.back-04 {
    background-image: url(./images/block-back04.png);
    background-repeat: no-repeat;
    background-size: 15%;
    background-position: right bottom;
}

/* Product Cards */

#online .container {
    max-width: 900px;
}

.product-card {
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    text-align: center;
}

.product-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.product-price {
    font-family: 'Tinos', serif;
    font-size: 1.1rem;
    color: #a8d5d8;
    font-weight: 500;
}

/* Concept Section */
.concept-text {
    display: flex;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}



.concept-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.concept-image img {
    width: 100%;
    object-fit: cover;
}

/* Chef Section */

.chef-content {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.chef-image img {
    width: 100%;
    object-fit: cover;
}

.chef-title {
    font-family: 'Tinos', serif;
    font-size: 1.2rem;
    color: #a8d5d8;
    margin-bottom: 0.5rem;
}

.chef-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}


.chef-name span {
    font-size: 0.6em;
}


.chef-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Cake Section */
.cake-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.cake-image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.cake-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 50px 0;
}

.catch-copy {
    text-align: center;
    font-size: 1.2rem;
    color: #B29539;
    padding: 50px 0;
    line-height: 2;
}

/* News Section */
#news .container {
    max-width: 900px;
    margin: 0 auto;
}

.news-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 400px;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.9rem;
    color: #a8d5d8;
    margin-bottom: 0.5rem;
}

.news-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 0.5rem;
}

.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #a8d5d8;
}

.news-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Buttons */
.btn {
    font-family: 'Tinos', serif;
    letter-spacing: 0.25em;
    padding: 1rem 3rem;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;

}

.btn-outline-primary {
    color: #333;
    border-color: #a8d5d8;
    border-width: 1px;
    background: #fff;
}

.btn-outline-primary:hover {
    background-color: #a8d5d8;
    border-color: #a8d5d8;
    color: #fff;
    transform: translateY(-2px);
}

/* Home-button */
.home-button {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.25em;
    color: #B29539;
    transition: 0.5s;
}

.home-button:hover {
    color: #333;
}

/* Footer */
.footer {
    color: #333;
    margin-top: 50px;
}

.footer-nav-container {
    border-top: 9px solid #CDE9EB;
    border-bottom: 9px solid #CDE9EB;
}

.footer-logo {
    max-width: 300px;
    margin: 50px auto
}

.footer-text {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-info {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-link {
    font-family: 'Tinos', serif;
    text-decoration: none;
    margin: 1rem 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
    color: #333;
}

.footer-link:hover {
    opacity: 0.8;
    color: #B29539;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.8;
    background: #CDE9EB;
    margin-bottom: 0;
    padding: 5px;
}

@media (min-width:820px) {
    .footer-nav {
        display: flex;
        flex-direction: unset;
        align-items: flex-end;
        justify-content: center;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.back-to-top {
    text-align: center;
    letter-spacing: 0.2em;
}

.arrow-up {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #fff;
}


/* under-content */


/* chef */

.under-chef-content {
    width: 60%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    line-height: 2.5;
}

.under-chef-content p span {
    color: #B29539;
}

@media (min-width:1200px) {

    .content-divbox {
        width: 80%;
        margin-left: auto;
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .main-navigation-bottom .nav {
        gap: 3rem;
    }

    .main-navigation-bottom .nav-link {
        font-size: 1.1rem;
    }

    .header-pages .navbar-nav .nav-link {
        margin: 0 1.5rem;
    }
}

@media (max-width: 991.98px) {

    /* モバイル表示 */
    .main-navigation-bottom {
        display: none !important;
    }

    .mobile-header {
        display: block !important;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .chef-content,
    .concept-text {
        margin-top: 3rem;
    }

    .cake-image img {
        width: 100%;
        object-fit: cover;
        height: 300px;
    }

    .catch-copy {
        font-size: 1rem;
    }

    .footer-nav {
        justify-content: center;
        flex-direction: row;
    }
}

@media (max-width: 767.98px) {

    .slide {

        height: 40vh;
    }

    .hero-slider {
        height: 40vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .product-card img {
        height: 150px;
    }

    /* 
    .online-shop,
    .concept,
    .cake-section,
    .news,
    .chef,
    .featured-cake {
        padding: 4rem 0;
    }
 */

    .back-01 {
        background-image: unset;
    }

    .back-01-mb {
        background-image: url(./images/block-back01.png);
        background-repeat: no-repeat;
        background-size: 35%;
        background-position: left bottom;
    }

    .back-02 {
        background-image: url(./images/block-back02.png);
        background-repeat: no-repeat;
        background-size: 35%;
        background-position: right bottom;
    }

    .back-03 {
        background-image: url(./images/block-back03.png);
        background-repeat: no-repeat;
        background-size: 35%;
        background-position: left bottom;
    }

    .concept-description {
        font-size: 0.85rem;
        margin-bottom: 50px;
    }

    .chef-content {
        width: 100%;
        margin: 50px auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cake-description {
        font-size: 0.85rem;
    }

    .footer-link {
        margin: 1rem 0.2rem;
        font-size: 0.7rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .arrow-up {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 10px solid #fff;
    }
}

/* デスクトップでモバイルヘッダーを非表示 */
@media (min-width: 992px) {
    .mobile-header {
        display: none !important;
    }
}

/* Slick Slider Customization */
.slick-dots {
    bottom: 30px;
}

.slick-dots li button:before {
    color: #fff;
    font-size: 14px;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #a8d5d8;
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-family: 'Noto Serif JP', serif;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* singlepage */

/* Single Post Styles */

.post-thumbnail {
    margin-bottom: 2rem;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
}

.post-content {
    margin: 100px 0;
}

.post-content .container {
    max-width: 1000px;
}

.post-header {
    margin-bottom: 2rem;
    text-align: center;
}

.post-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.post-date {
    font-weight: 500;
}

.post-categories a {
    background: #a8d5d8;
    color: #fff;
    padding: 0.25rem 0.75rem;
    text-decoration: none;
    font-size: 0.8rem;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.post-tags {
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.tag-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-list li {
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.post-navigation {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-previous,
.nav-next {
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    background: #f8f9fa;
}

.nav-previous a,
.nav-next a {
    text-decoration: none;
    color: #333;
    display: block;
}

.nav-subtitle {
    font-size: 0.8rem;
    color: #666;
    display: block;
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
    display: block;
}

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

.back-to-list {
    text-align: center;
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-links {
        grid-template-columns: 1fr;
    }

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

/* News Archive Page Styles */
.news-archive-page {
    padding: 4rem 0;
    min-height: 70vh;
}

.news-archive-header {
    text-align: center;
    margin-bottom: 4rem;
}

.news-archive-title {
    font-family: 'Tinos', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.news-archive-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* News Archive Grid */
.news-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* News Archive Item */
.news-archive-item {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
}

.news-archive-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.news-archive-link {
    text-decoration: none;
    color: inherit;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Archive Image */
.news-archive-image {
    position: relative;
    height: 60%;
    overflow: hidden;
}

.news-archive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-archive-item:hover .news-archive-img {
    transform: scale(1.05);
}

/* Date Overlay */
.news-archive-date-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(168, 213, 216, 0.9);
    color: #fff;
    padding: 0.5rem;
    text-align: center;
    min-width: 50px;
    backdrop-filter: blur(10px);
}

.news-archive-day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.news-archive-month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Archive Content */
.news-archive-content {
    padding: 1.5rem;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-archive-category {
    background: #a8d5d8;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    display: inline-block;
    width: fit-content;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-archive-item-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-archive-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.news-archive-date {
    font-size: 0.8rem;
    color: #999;
    margin-top: auto;
}

/* Archive Pagination */
.news-archive-pagination {
    margin-top: 3rem;
}

.news-archive-pagination-wrapper {
    display: flex;
    justify-content: center;
}

.news-archive-pagination .page-numbers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5rem;
}

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

.news-archive-pagination .page-numbers a,
.news-archive-pagination .page-numbers span {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.news-archive-pagination .page-numbers a:hover {
    background: #a8d5d8;
    color: #fff;
    border-color: #a8d5d8;
}

.news-archive-pagination .page-numbers .current {
    background: #a8d5d8;
    color: #fff;
    border-color: #a8d5d8;
}

.news-archive-pagination .page-numbers .prev,
.news-archive-pagination .page-numbers .next {
    font-weight: 600;
}

/* No Posts */
.news-archive-no-posts {
    text-align: center;
    padding: 4rem 0;
    color: #666;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .news-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .news-archive-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .news-archive-page {
        padding: 2rem 0;
    }

    .news-archive-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-archive-title {
        font-size: 2rem;
    }

    .news-archive-item {
        aspect-ratio: 1.2;
    }

    .news-archive-image {
        height: 50%;
    }

    .news-archive-content {
        height: 50%;
        padding: 1rem;
    }

    .news-archive-pagination .page-numbers a,
    .news-archive-pagination .page-numbers span {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .news-archive-grid {
        gap: 1rem;
    }

    .news-archive-content {
        padding: 0.75rem;
    }

    .news-archive-item-title {
        font-size: 1rem;
    }

    .news-archive-excerpt {
        font-size: 0.85rem;
    }

    .under-chef-content {
        width: 70%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        line-height: 2.5;
    }
}