div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}
.section-nav {
    position: sticky;
    top: 3.125rem;
    display: flex;
    gap: 1rem;
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid;
    margin-bottom: 3rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
}

.section-nav li a {
    font-size: 0.875rem;
    font-weight: bold;
    white-space: nowrap;
    text-transform: uppercase;
}

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

.section-title + ul {
    scroll-margin-top: 10rem;
}

.scroll-smooth {
    scroll-behavior: smooth;
}

.product-card-slider {
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.product-card-slider:active {
    cursor: grabbing;
}

.product-card-slider img {
    pointer-events: none;
    user-select: none;
}

.js-product-card-slider .col-start-1 {
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.js-product-card-slider.is-dragging .col-start-1 {
    transition: none;
}


.product-card-slider {
    position: relative;
    overflow: hidden;
}

.product-card-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: var(--edge-width, 0px);
    opacity: 0;
    background: rgba(120, 120, 120, 0.18);
    pointer-events: none;
    transition: opacity 0.15s ease, width 0.15s ease;
}

.product-card-slider.drag-left::after {
    right: 0;
    border-radius: 50% 0 0 50%;
}

.product-card-slider.drag-right::after {
    left: 0;
    border-radius: 0 50% 50% 0;
}

.product-card-slider.is-dragging::after {
    opacity: 1;
}

@media screen and (min-width:993px) {
    .section-nav {
        top: 0;
    }
}