/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
.service-single {
    padding: 60px 0;
}

.service-single__container {
    max-width: 960px;
    margin: 0 auto;
}

.service-single__article {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 45px rgba(25, 32, 60, 0.08);
}

.service-single__badge {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: #4e54c8;
    background: rgba(78, 84, 200, 0.1);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.service-single__title {
    font-size: 36px;
    margin-bottom: 16px;
}

.service-single__summary {
    font-size: 18px;
    color: #5d6370;
    margin-bottom: 32px;
}

.service-single__media {
    margin: 0 0 32px;
    border-radius: 16px;
    overflow: hidden;
}

.service-single__image {
    width: 100%;
    display: block;
}

.service-single__content {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3f50;
}

.service-single__content h2,
.service-single__content h3 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.service-single__highlight {
    margin-top: 48px;
    padding: 32px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(78, 84, 200, 0.1), rgba(143, 148, 251, 0.15));
}

.service-single__highlight-title {
    margin-bottom: 16px;
    font-size: 20px;
}

.service-single__footer {
    margin-top: 48px;
}

.service-single__footer .nav-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 16px;
}

.service-single__footer .nav-links a {
    display: block;
    padding: 16px 24px;
    border-radius: 12px;
    background: #f2f4f8;
    transition: background 0.2s ease, transform 0.2s ease;
}

.service-single__footer .nav-links a:hover {
    background: #e0e5ff;
    transform: translateY(-3px);
}

@media (max-width: 767px) {
    .service-single__article {
        padding: 28px;
    }

    .service-single__title {
        font-size: 28px;
    }

    .service-single__summary {
        font-size: 16px;
    }
}
.services-archive {
    padding: 80px 0;
    background: #f7f8fb;
}

.services-archive__header {
    text-align: center;
    margin-bottom: 48px;
}

.services-archive__title {
    font-size: 40px;
    margin-bottom: 12px;
}

.services-archive__description {
    max-width: 720px;
    margin: 0 auto;
    color: #606778;
    font-size: 18px;
}

.services-archive__grid {
    display: grid;
    gap: 32px;
}

.services-archive__grid.grid-columns-2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.services-archive__grid.grid-columns-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.services-archive__item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(25, 32, 60, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-archive__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(25, 32, 60, 0.12);
}

.services-archive__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.services-archive__media img {
    width: 100%;
    height: auto;
    display: block;
}

.services-archive__content {
    padding: 28px;
}

.services-archive__item-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.services-archive__excerpt {
    color: #5d6370;
    margin-bottom: 20px;
}

.services-archive__cta {
    font-weight: 600;
    color: #4e54c8;
}

.services-archive__empty {
    text-align: center;
    color: #6b7280;
}

@media (max-width: 767px) {
    .services-archive {
        padding: 48px 0;
    }

    .services-archive__title {
        font-size: 30px;
    }
}
