.wp-block-acf-posts-switcher {
    margin: 0;
}

.postsSwitcher {
    width: 100%;
    background-color: #F8F6EE;
    
    box-sizing: border-box;
}

.postsSwitcher__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border-top: 1px solid rgba(116, 134, 57, 0.15);
    max-width: 1280px;
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
    padding-top: 40px;
    padding-bottom: 112px;
    box-sizing: border-box;
}

.postsSwitcher__item {
    flex: 0 1 auto;
    min-width: 0;
}

.postsSwitcher__item--next {
    text-align: right;
}

.postsSwitcher__container--previous-only {
    justify-content: flex-start;
}

.postsSwitcher__container--next-only {
    justify-content: flex-end;
}

.postsSwitcher__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7F9138;
    font-family: Satoshi, "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.16px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.postsSwitcher__link:hover {
    opacity: 0.75;
}

.postsSwitcher__icon {
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 12px;
}

.postsSwitcher__label {
    display: block;
}

@media (max-width: 768px) {
    .postsSwitcher__container {
        width: min(1280px, calc(100% - 48px));
        padding: 20px 0;
    }

    .postsSwitcher__link {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .postsSwitcher__container {
        width: min(1280px, calc(100% - 40px));
        padding: 18px 0;
        gap: 16px;
    }

    .postsSwitcher__link {
        font-size: 14px;
        gap: 6px;
    }

    .postsSwitcher__icon {
        width: 7px;
        height: 11px;
    }
}
