.section-package {
    background: var(--primary-beige);
    overflow-x: hidden;
}

.package-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.package-features > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 0 20px 20px;
    border-left: 1px solid var(--secondary-sand);
}

.package-features > div:first-of-type {
    border-left: 0;
}

.package-features p {
    margin: 0;
    padding: 0;
}

.package-features p.title {
    font-size: 18px;
    font-weight: 800;
}

.package-features p.description {
    font-size: 16px;
    line-height: 1.375;
}

.package-lists {
    padding: 40px 0;
}

.package-lists .swiper-wrapper {
    align-items: stretch;
}

.package-lists .swiper-slide {
    height: auto;
}

.package-lists .swiper-background {
    padding: 40px;
    background: var(--primary-white);
    height: 100%;
}

.package-lists .swiper-background p {
    margin: 0;
    padding: 0;
}

.package-lists .swiper-background .heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.package-lists .swiper-background .heading p {
    font-size: 14px;
}

.package-lists .swiper-background .heading .title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-lists .swiper-background .heading .subtitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
}

.package-lists .swiper-background .heading span {
    font-size: 24px;
    font-weight: 800;
    line-height: normal;
}

.package-lists .swiper-background .header {
    font-size: 14px;
    padding: 24px 0;
    line-height: 1.285;
}

.package-lists .swiper-background .items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.package-lists .swiper-background .items > div {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.package-lists .swiper-background .items p {
    font-size: 16px;
    line-height: 1.375;
}

.package-lists .swiper-background .items .title {
    font-weight: 700;
    margin-bottom: 4px;
}

.package-footer-description {
    font-size: 16px;
    line-height: 1.375;
}

@media (max-width: 992px) {
    .package-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .package-features > div {
        border-bottom: 1px solid var(--secondary-sand);
        border-left: 0;
        padding: 16px;
    }

    .package-features > div:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .package-features > div:nth-child(2n+1):not(:last-child) {
        border-right: 1px solid var(--secondary-sand);
    }

    .package-features p.title {
        font-size: 14px;
        font-weight: 700;
    }

    .package-features p.description {
        font-size: 14px;
    }

    .package-lists .swiper {
        overflow: visible;
    }

    .package-lists .swiper-slide {
        max-width: 320px;
    }

    .package-lists .swiper-background {
        padding: 24px;
    }

    .package-lists .swiper-background .items svg {
        width: 16px;
        height: auto;
    }

    .package-lists .swiper-background .heading span {
        font-size: 18px;
    }

    .package-lists .swiper-background .heading .subtitle,
    .package-lists .swiper-background .items p {
        font-size: 14px;
    }

    .package-lists .swiper-background .heading p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .page-id-1099 .section-package .section-heading {
        padding: 0 12px;
    }
}