/* Front Page Styles */

/* Container */
.fp-container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Business Information Section */
.business-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.business-section.bg-white {
    background-color: #ffffff;
}

.business-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.business-layout.reverse {
    flex-direction: column;
}

.business-text,
.business-image {
    width: 100%;
    position: relative;
}

/* 背景装飾 */
.bg-decoration {
    position: absolute;
    background-color: #EBF5F7;
    border-radius: 0.5rem;
    z-index: 1;
    mix-blend-mode: multiply;
}

.bg-decoration-1 {
    top: 13rem;
    left: -20%;
    width: 28rem;
    height: 25rem;
}

.bg-decoration-2 {
    bottom: -10rem;
    left: -30%;
    width: 13rem;
    height: 8rem;
}

.bg-decoration-3 {
    top: -40%;
    right: -34%;
    width: 30rem;
    height: 30rem;
}

.bg-decoration-right-1 {
    top: -4rem;
    right: -4rem;
    width: 18rem;
    height: 20rem;
}

.bg-decoration-right-2 {
    bottom: -4rem;
    right: 0;
    width: 16rem;
    height: 16rem;
}

/* 画像コンテナに擬似要素で装飾を追加 */
.business-image::before {
    content: '';
    position: absolute;
    background-color: #EBF5F7;
    border-radius: 0.5rem;
    z-index: 0;
    width: 100%;
    aspect-ratio: 6/7;
}

/* セクション1（通常レイアウト）: 画像が右側 → 装飾も右側 */
.business-layout .business-image::before {
    top: -2rem;
    right: -2rem;
}

/* セクション2（反転レイアウト）: 画像が左側 → 装飾も左側 */
.business-layout.reverse .business-image::before {
    top: -2rem;
    left: -2rem;
}

.business-content {
    position: relative;
    z-index: 10;
    padding: 1rem;
}

.section-title-en {
    font-size: 2.25rem;
    font-weight: 500;
    color: #333;
    letter-spacing: -0.025em;
}

.section-title-jp {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-top: 0;
}

.title-divider {
    width: 3rem;
    height: 0.2rem;
    background-color: #06b6d4;
    margin-top: 0.5rem;
    margin-bottom: 6.5rem;
}

.content-spacing {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.text-content {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.625;
}

.business-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
}

.business-image img.ratio-6-7 {
    aspect-ratio: 6/7;
}

.business-image img.ratio-3-2 {
    aspect-ratio: 6/7;
}

/* BLOG Section */
.blog-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.blog-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-header {
    width: 100%;
}

.blog-cards {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.blog-card {
    display: block;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card-image {
    position: relative;
}

.blog-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #06b6d4;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.blog-card-content {
    padding: 1rem;
}

.blog-date {
    font-size: 0.875rem;
    color: #0891b2;
}

.blog-title {
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.375;
    position: relative;
    display: inline-block;
}

.blog-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0891b2;
    transition: width 0.3s ease;
}

.blog-card:hover .blog-title::after {
    width: 100%;
}


.btn-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 3rem;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    color: #ffffff;
    background-color: #0891b2;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;
}

.btn-view-more:hover {
    background-color: #0e7490;
}

.btn-view-more svg {
    margin-left: 0.75rem;
    margin-right: -0.25rem;
    height: 1.25rem;
    width: 1.25rem;
}

/* Construction Example Section */
.construction-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ecfeff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.construction-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.construction-title-wrapper {
    width: 100%;
    text-align: right;
}

.construction-title-wrapper .section-title-jp {
    text-align: right;
}

.construction-title-wrapper .title-divider {
    margin-left: auto;
    margin-right: 0;
}

.construction-description {
    width: 50%;
}

.construction-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.construction-item {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    position: relative;
}

.construction-item img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    display: block;
}

.construction-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3), transparent);
    z-index: 1;
}

.construction-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    z-index: 2;
}

.construction-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.construction-overlay p {
    font-size: 0.875rem;
    color: #e5e7eb;
    margin-top: 0.5rem;
}

.btn-view-more-alt {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    color: #0e7490;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;
    width: 100%;
    max-width: 20rem;
}

.btn-view-more-alt:hover {
    background-color: #f9fafb;
}

.btn-view-more-alt svg {
    height: 1.25rem;
    width: 1.25rem;
    color: #0891b2;
}

.btn-view-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.construction-bg-text {
    margin-top: 6rem;
    overflow: hidden;
    width: 100%;
}

.construction-bg-text-wrapper {
    display: flex;
    white-space: nowrap;
}

.construction-bg-text-content {
    font-size: 3.75rem;
    font-weight: 900;
    color: #e5e7eb;
    opacity: 0.8;
    letter-spacing: -0.05em;
    animation: scroll-text 30s linear infinite;
    display: inline-block;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Profile Section */
.profile-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.profile-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.profile-header {
    width: 100%;
}

.profile-content {
    width: 100%;
}

.profile-list {
    border-top: 1px solid #e5e7eb;
}

.profile-item {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e5e7eb;
}

.profile-label {
    width: 100%;
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
}

.profile-value {
    width: 100%;
    color: #374151;
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.625;
}

/* Contact & Recruit Section */
.contact-recruit-section {
    background-color: #ffffff;
}

.contact-recruit-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.card-link {
    position: relative;
    display: block;
    height: 31.25rem;
    overflow: hidden;
    text-decoration: none;
}

.card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.card-link:hover .card-bg {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.card-overlay.contact {
    background-color: #1f2937;
}

.card-overlay.recruit {
    background-color: #1e3a8a;
}

.card-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 3rem;
    color: #ffffff;
}

.card-title-en {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.card-title-jp {
    margin-top: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    opacity: 0.9;
}

.card-description {
    font-size: 1rem;
    line-height: 1.625;
    max-width: 28rem;
    opacity: 0.9;
}

/* Footer Section */
.site-footer-custom {
    background-color: #16365C;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-company-info {
    grid-column: span 1;
}

.footer-company-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-company-info p {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.625;
    margin-top: 1rem;
}

.footer-company-info a {
    font-size: 0.875rem;
    color: #22d3ee;
    text-decoration: underline;
    transition: color 0.3s;
}

.footer-company-info a:hover {
    color: #67e8f9;
}

.footer-privacy {
    padding-top: 1rem;
}

.footer-privacy a {
    font-size: 0.875rem;
    color: #d1d5db;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-privacy a:hover {
    color: #ffffff;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-map {
    margin-top: 4rem;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.5);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.footer-copyright {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 58, 138, 0.5);
    text-align: center;
}

.footer-copyright p {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Construction Archive Page Styles */
.construction-archive-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.construction-archive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.construction-archive-item {
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.construction-archive-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.construction-archive-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.construction-archive-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.construction-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.construction-archive-content {
    padding: 1.5rem;
}

.construction-archive-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.construction-archive-excerpt {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

.construction-archive-pagination {
    margin-top: 3rem;
    text-align: center;
}

.construction-archive-pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s;
}

.construction-archive-pagination .page-numbers:hover,
.construction-archive-pagination .page-numbers.current {
    background-color: #008597;
    color: #fff;
    border-color: #008597;
}

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

.no-posts {
    text-align: center;
    padding: 4rem 1rem;
}

.no-posts p {
    font-size: 1.125rem;
    color: #6b7280;
}

/* Responsive Design */
@media (min-width: 768px) {
    .construction-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .construction-archive-image {
        height: 300px;
    }

    .blog-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .construction-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-item {
        flex-direction: row;
    }

    .profile-label {
        width: 25%;
    }

    .profile-value {
        width: 75%;
        margin-top: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .construction-archive-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .construction-archive-image {
        height: 350px;
    }

    .business-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .business-layout {
        flex-direction: row;
        gap: 4rem;
    }

    .business-layout.reverse {
        flex-direction: row-reverse;
    }

    .business-text,
    .business-image {
        width: 50%;
    }

    .section-title-en {
        font-size: 3rem;
    }

    .blog-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .blog-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }

    .blog-header {
        width: 20%;
    }

    .blog-cards {
        width: 80%;
        grid-template-columns: repeat(3, 1fr);
    }

    .construction-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .construction-header {
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: flex-start;
    }

    .construction-title-wrapper {
        width: auto;
        text-align: right;
    }

    .construction-description {
        width: 50%;
    }

    .construction-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .construction-bg-text h1 {
        font-size: 6rem;
    }

    .profile-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .profile-layout {
        flex-direction: row;
        gap: 4rem;
    }

    .profile-header {
        width: 33.333333%;
    }

    .profile-content {
        width: 66.666667%;
    }

    .contact-recruit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .footer-company-info {
        grid-column: span 2;
    }
}

@media (min-width: 1200px) {
    .construction-description {
        width: 50%;
    }
}

/* Archive Page Styles */
.archive-section {
    padding-top: 4rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.archive-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #EBF5F7;
}

.archive-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.archive-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.625;
}

.archive-posts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.archive-post-link {
    display: block;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.archive-post-link:hover {
    transform: translateY(-4px);
}

.archive-post-image {
    position: relative;
    overflow: hidden;
}

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

.archive-post-link:hover .archive-post-image img {
    transform: scale(1.05);
}

.archive-post-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #06b6d4;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.archive-post-content {
    padding: 1rem;
}

.archive-post-date {
    font-size: 0.875rem;
    color: #0891b2;
}

.archive-post-title {
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.375;
    position: relative;
    display: inline-block;
}

.archive-post-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0891b2;
    transition: width 0.3s ease;
}

.archive-post-link:hover .archive-post-title::after {
    width: 100%;
}


.archive-pagination {
    margin-top: 4rem;
    text-align: center;
}

.archive-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem 1rem;
    background-color: #ffffff;
    color: #4b5563;
    text-decoration: none;
    border-radius: 0.375rem;
    border: 1px solid #e5e7eb;
    font-weight: 500;
    transition: all 0.3s ease;
}

.archive-pagination .page-numbers:hover {
    background-color: #f3f4f6;
    border-color: #0891b2;
    color: #0891b2;
}

.archive-pagination .page-numbers.current {
    background-color: #0891b2;
    border-color: #0891b2;
    color: #ffffff;
}

.archive-pagination .page-numbers.dots {
    border: none;
    background: transparent;
}

.archive-pagination .page-numbers.dots:hover {
    background: transparent;
    border: none;
    color: #4b5563;
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .archive-posts {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 992px) {
    .archive-posts {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

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

/* Page Key Visual Styles */
.page-key-visual {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 30vh;
    background: linear-gradient(135deg, #2C8843 0%, #008597 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    overflow: hidden;
}

.page-kv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.page-kv-title-en {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.page-kv-title-jp {
    font-size: 1.25rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2em;
    opacity: 0.95;
}

/* Archive section adjustment when using page key visual */
.page-key-visual + .archive-section {
    padding-top: 4rem;
}

@media screen and (max-width: 768px) {
    .page-key-visual {
        height: 60vh;
        margin-top: 64px;
    }

    .page-kv-title-en {
        font-size: 2.5rem;
    }

    .page-kv-title-jp {
        font-size: 1rem;
    }

    .page-key-visual + .archive-section {
        padding-top: 3rem;
    }
}

/* Blog with Sidebar Layout */
.blog-container-with-sidebar {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.blog-main-content {
    flex: 1;
    min-width: 0;
}

/* Blog Sidebar Styles */
.blog-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-widget {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.sidebar-widget-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #0891b2;
}

.sidebar-archive-list,
.sidebar-category-list,
.sidebar-recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-archive-list li,
.sidebar-category-list li {
    margin-bottom: 0.75rem;
}

.sidebar-archive-list a,
.sidebar-category-list a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.sidebar-archive-list a:hover,
.sidebar-category-list a:hover {
    color: #0891b2;
}

.sidebar-recent-posts li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.sidebar-recent-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-recent-posts a {
    text-decoration: none;
    display: block;
}

.sidebar-post-date {
    display: block;
    font-size: 0.75rem;
    color: #0891b2;
    margin-bottom: 0.25rem;
}

.sidebar-post-title {
    display: block;
    font-size: 0.875rem;
    color: #333;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.sidebar-recent-posts a:hover .sidebar-post-title {
    color: #0891b2;
}

@media screen and (max-width: 992px) {
    .blog-container-with-sidebar {
        flex-direction: column;
    }

    .blog-sidebar {
        width: 100%;
    }
}
