.wvs-section,
.wvs-section * {
    box-sizing: border-box;
}

.wvs-section {
    --wvs-red: #ef233c;
    --wvs-text: #0b0f19;
    --wvs-muted: #6b7280;
    --wvs-border: #e5e7eb;
    --wvs-card-radius: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--wvs-text);
}

.wvs-section-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 14px 18px;
    border-top: 1px solid var(--wvs-border);
}

.wvs-home-section .wvs-section-inner {
    padding-top: 36px;
}

.wvs-section-heading {
    margin: 0 0 26px;
}

.wvs-section-heading h1,
.wvs-section-heading h2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: var(--wvs-text);
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.wvs-section-heading h1::before,
.wvs-section-heading h2::before {
    content: "";
    width: 5px;
    height: 28px;
    display: inline-block;
    background: var(--wvs-red);
}

.wvs-home-grid,
.wvs-archive-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.wvs-archive-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wvs-card {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    min-height: 0;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: var(--wvs-card-radius);
    overflow: hidden;
    background: #111827;
    color: #fff;
    cursor: pointer;
    text-align: inherit;
    box-shadow: none;
}

.wvs-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform .35s ease, filter .35s ease;
}

.wvs-card:hover img,
.wvs-card:focus img {
    transform: scale(1.035);
    filter: contrast(1.04);
}

.wvs-card-gradient {
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    display: block;
    background: linear-gradient(0deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.60) 42%, rgba(0,0,0,.18) 78%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.wvs-card-title {
    position: absolute;
    right: 18px;
    bottom: 20px;
    left: 18px;
    z-index: 2;
    color: #fff;
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 900;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
}

.wvs-read-more-wrap {
    display: flex;
    justify-content: center;
    margin: 16px 0 0;
}

.wvs-read-more,
.wvs-read-more:visited {
    min-width: 126px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid #111827;
    border-radius: 4px;
    color: #111827;
    background: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.wvs-read-more:hover,
.wvs-read-more:focus {
    background: #111827;
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none;
}

.wvs-empty {
    margin: 0;
    color: var(--wvs-muted);
    font-size: 16px;
}

.wvs-pagination {
    margin: 30px 0 0;
}

.wvs-pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wvs-pagination a,
.wvs-pagination span {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    color: #111827;
    text-decoration: none;
}

.wvs-pagination .current {
    color: #fff;
    background: #111827;
    border-color: #111827;
}

.wvs-single-fallback {
    min-height: 52vh;
    display: grid;
    place-items: center;
    gap: 18px;
    text-align: center;
}

.wvs-single-fallback h1 {
    margin: 0;
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 900;
}

body.wvs-viewer-open {
    overflow: hidden !important;
}

.wvs-viewer {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

.wvs-viewer.is-open {
    display: flex;
}

.wvs-viewer-bg {
    position: absolute;
    inset: -7%;
    background-position: center center;
    background-size: cover;
    transform: scale(1.08);
    filter: blur(26px) saturate(1.25) brightness(.72);
    opacity: .86;
    transition: background-image .24s ease, filter .24s ease, opacity .24s ease;
}

.wvs-viewer-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255,255,255,.04), rgba(0,0,0,.26) 34%, rgba(0,0,0,.70) 100%),
        linear-gradient(90deg, rgba(0,0,0,.54), rgba(0,0,0,.08) 48%, rgba(0,0,0,.54));
}

.wvs-close {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 20;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
    opacity: .96;
}

.wvs-close svg {
    width: 30px;
    height: 30px;
}

.wvs-close:hover,
.wvs-close:focus {
    opacity: 1;
    transform: scale(1.04);
}

.wvs-phone {
    position: relative;
    z-index: 10;
    width: min(430px, calc(100vw - 86px));
    aspect-ratio: 9 / 16;
    max-height: calc(100vh - 84px);
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #09090b;
    box-shadow: 0 24px 80px rgba(0,0,0,.45);
    transform: translateZ(0);
}

.wvs-phone::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: inherit;
    pointer-events: none;
    z-index: 9;
}

.wvs-progress {
    position: absolute;
    top: 9px;
    right: 12px;
    left: 12px;
    z-index: 14;
    display: flex;
    gap: 4px;
}

.wvs-progress-segment {
    position: relative;
    flex: 1 1 0;
    height: 3px;
    border-radius: 999px;
    background: rgba(255,255,255,.43);
    overflow: hidden;
}

.wvs-progress-segment::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    border-radius: inherit;
    background: #fff;
}

.wvs-progress-segment.is-done::after,
.wvs-progress-segment.is-active::after {
    width: 100%;
}

.wvs-progress-segment.is-active {
    height: 4px;
    background: rgba(255,255,255,.60);
}

.wvs-image-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.wvs-slide-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.wvs-phone.is-entering .wvs-image-layer,
.wvs-phone.is-entering .wvs-caption-layer {
    animation: wvsDropIn .42s cubic-bezier(.22,.85,.28,1) both;
}

@keyframes wvsDropIn {
    0% {
        transform: translate3d(0,-105%,0);
        opacity: .28;
    }
    100% {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

.wvs-share-trigger {
    position: absolute;
    top: 22px;
    right: 16px;
    z-index: 15;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.45));
}

.wvs-share-trigger svg {
    width: 24px;
    height: 24px;
}

.wvs-caption-layer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 13;
    min-height: 25%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0;
    padding: 34px 28px 30px;
    background: linear-gradient(0deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.72) 48%, rgba(0,0,0,.18) 88%, rgba(0,0,0,0) 100%);
    color: #fff;
}

.wvs-caption-layer h2 {
    margin: 0;
    color: #fff;
    font-size: 25px;
    font-weight: 950;
    line-height: 1.18;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0,0,0,.55);
}

.wvs-caption-layer.is-first h2 {
    font-size: clamp(25px, 3.5vh, 34px);
    line-height: 1.18;
}

.wvs-slide-caption {
    display: none;
    margin: 12px 0 0;
    color: rgba(255,255,255,.94);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.32;
}

.wvs-slide-caption.has-caption {
    display: block;
}

.wvs-slide-credit {
    margin: 10px 0 0;
    color: rgba(255,255,255,.92);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.wvs-nav {
    position: fixed;
    top: 50%;
    z-index: 12;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: #111827;
    background: rgba(255,255,255,.96);
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    transition: opacity .18s ease, transform .18s ease, background-color .18s ease;
}

.wvs-nav svg {
    width: 28px;
    height: 28px;
}

.wvs-nav-prev {
    left: calc(50% - 310px);
}

.wvs-nav-next {
    right: calc(50% - 310px);
}

.wvs-nav:hover,
.wvs-nav:focus {
    transform: translateY(-50%) scale(1.05);
}

.wvs-nav[disabled] {
    opacity: .22;
    cursor: default;
    pointer-events: none;
}

.wvs-restart-icon {
    display: none;
}

.wvs-nav-next.is-restart .wvs-next-icon {
    display: none;
}

.wvs-nav-next.is-restart .wvs-restart-icon {
    display: inline-flex;
}

.wvs-share-panel {
    position: absolute;
    inset: 20px 18px 20px;
    z-index: 30;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.wvs-share-panel.is-open {
    display: flex;
}

.wvs-share-panel-inner {
    width: 100%;
    max-height: 95%;
    padding: 22px 20px;
    border-radius: 8px;
    background: rgba(20,20,20,.92);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 48px rgba(0,0,0,.45);
    backdrop-filter: blur(18px);
    overflow-y: auto;
}

.wvs-share-head {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 0 16px;
}

.wvs-share-head strong {
    color: #fff;
    font-size: 19px;
    font-weight: 850;
}

.wvs-share-close {
    position: absolute;
    right: 0;
    top: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #fff;
    background: transparent;
    transform: translateY(-50%);
    cursor: pointer;
}

.wvs-share-close svg {
    width: 23px;
    height: 23px;
}

.wvs-copy-row {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    margin: 0 0 20px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
}

.wvs-copy-icon {
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.75);
    border-right: 1px solid rgba(255,255,255,.14);
}

.wvs-copy-icon svg {
    width: 22px;
    height: 22px;
}

.wvs-copy-row input {
    width: 100%;
    height: 48px;
    padding: 0 10px;
    border: 0 !important;
    outline: 0 !important;
    color: #fff !important;
    background: transparent !important;
    font-size: 13px;
    box-shadow: none !important;
}

.wvs-copy-row button {
    width: 48px;
    height: 48px;
    border: 0;
    color: #fff;
    background: rgba(255,255,255,.18);
    font-size: 0;
    cursor: pointer;
}

.wvs-copy-row button::before {
    content: "🔗";
    font-size: 18px;
}

.wvs-share-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.14);
}

.wvs-share-option,
.wvs-share-option:visited {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    text-decoration: none;
}

.wvs-share-option::before {
    content: "";
    width: 42px;
    height: 42px;
    display: block;
    border-radius: 4px;
    background-position: center;
    background-size: 26px 26px;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.wvs-share-option[data-wvs-share="whatsapp"]::before {
    background-color: #25D366;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M20.5 3.5A11 11 0 0 0 3.2 16.7L2 22l5.4-1.4A11 11 0 0 0 20.5 3.5ZM12 20a8 8 0 0 1-4.1-1.1l-.3-.2-3.2.8.9-3.1-.2-.3A8 8 0 1 1 12 20Zm4.4-6c-.2-.1-1.4-.7-1.6-.8-.2-.1-.4-.1-.6.1-.2.3-.6.8-.8 1-.1.2-.3.2-.5.1a6.6 6.6 0 0 1-3.3-2.9c-.2-.2 0-.4.1-.5l.4-.5c.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5l-.8-1.9c-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.5.1-.7.3-.2.3-.9.9-.9 2.1s.9 2.4 1 2.6c.1.2 1.8 2.8 4.4 3.9.6.3 1.1.4 1.5.5.6.2 1.2.2 1.6.1.5-.1 1.4-.6 1.6-1.1.2-.6.2-1 .1-1.1 0-.2-.2-.2-.4-.3Z'/%3E%3C/svg%3E");
}

.wvs-share-option[data-wvs-share="facebook"]::before {
    background-color: #1877F2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M14 8h3V4h-3c-3.3 0-5 2-5 5v2H6v4h3v5h4v-5h3.4l.6-4h-4V9c0-.7.3-1 1-1Z'/%3E%3C/svg%3E");
}

.wvs-share-option[data-wvs-share="twitter"]::before {
    background-color: #000;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M13.8 10.5 21.2 2h-1.8l-6.4 7.3L7.9 2H2l7.8 11.2L2 22h1.8l6.8-7.7 5.4 7.7h5.9l-8.1-11.5Zm-2.4 2.7-.8-1.1L4.4 3.3H7l5 7.1.8 1.1 6.6 9.3h-2.6l-5.4-7.6Z'/%3E%3C/svg%3E");
}

.wvs-share-option[data-wvs-share="gmail"]::before {
    background-color: #EA4335;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M4 6h16v12H4z'/%3E%3Cpath fill='%23EA4335' d='m4 6 8 6 8-6v2.5l-8 6-8-6z'/%3E%3C/svg%3E");
}

.wvs-share-option[data-wvs-share="linkedin"]::before {
    background-color: #0A66C2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M6.8 20H3V8.6h3.8V20ZM4.9 7.1A2.1 2.1 0 1 1 5 2.9a2.1 2.1 0 0 1-.1 4.2ZM21 20h-3.8v-5.6c0-1.3 0-3-1.8-3s-2.1 1.4-2.1 2.9V20H9.5V8.6h3.6v1.6h.1c.5-1 1.8-1.9 3.6-1.9 3.9 0 4.6 2.6 4.6 5.9V20Z'/%3E%3C/svg%3E");
}

.wvs-share-option:hover,
.wvs-share-option:focus {
    transform: translateY(-1px);
    text-decoration: none;
}

@media (max-width: 1100px) {
    .wvs-home-grid,
    .wvs-archive-grid {
        gap: 18px;
    }

    .wvs-nav-prev {
        left: calc(50% - 278px);
    }

    .wvs-nav-next {
        right: calc(50% - 278px);
    }
}

@media (max-width: 880px) {
    .wvs-home-grid,
    .wvs-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wvs-card-title {
        font-size: 17px;
    }

    .wvs-nav-prev {
        left: 14px;
    }

    .wvs-nav-next {
        right: 14px;
    }
}

@media (max-width: 560px) {
    .wvs-section-inner {
        padding-right: 12px;
        padding-left: 12px;
    }

    .wvs-home-grid,
    .wvs-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .wvs-card-title {
        right: 12px;
        left: 12px;
        bottom: 14px;
        font-size: 13px;
    }

    .wvs-phone {
        width: min(390px, calc(100vw - 38px));
        max-height: calc(100vh - 74px);
        border-radius: 14px;
    }

    .wvs-close {
        top: 12px;
        right: 10px;
    }

    .wvs-nav {
        width: 42px;
        height: 42px;
    }

    .wvs-nav-prev {
        left: 8px;
    }

    .wvs-nav-next {
        right: 8px;
    }

    .wvs-caption-layer {
        padding: 30px 20px 24px;
    }

    .wvs-caption-layer h2,
    .wvs-caption-layer.is-first h2 {
        font-size: 22px;
    }

    .wvs-slide-caption {
        font-size: 15px;
    }

    .wvs-slide-credit {
        font-size: 14px;
    }

    .wvs-share-panel {
        inset: 16px 12px;
    }

    .wvs-share-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
