@charset "UTF-8";

body {
    margin: 0;
}

body.sidebar-hidden.om-wpb-active .om-c-container {
    max-width: 100%;
}

body.sidebar-hidden.om-wpb-active .om-c-container-inner {
    margin: 0;
}

.ec-gallery {
    --ink: #0f1828;
    --muted: #5f7087;
    --accent: #0f7a8a;
    --accent-2: #e4f1f4;
    --panel: #ffffff;
    --border: #e7edf3;
    --tag: #f0f4ff;
    font-family: "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
    color: var(--ink);
    background: radial-gradient(120% 120% at 20% 20%, #f2f8ff, #f7fbff 45%, #eef3fb 75%, #f9fbff);
    padding: clamp(24px, 10vw, 100px);
}

.ec-gallery *,
.ec-gallery *::before,
.ec-gallery *::after {
    box-sizing: border-box;
}

.eg-shell {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vw, 32px);
}

.eg-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(220px, 320px);
    gap: clamp(18px, 4vw, 28px);
    padding: clamp(24px, 5vw, 38px);
    background: linear-gradient(135deg, #0f7a8a 0%, #0b4f5b 35%, #0f1828 95%);
    border-radius: 22px;
    overflow: hidden;
    color: #f7fbff;
    box-shadow: 0 28px 60px rgba(5, 17, 40, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    align-items: center;
}

.eg-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(480px at 20% 20%, rgba(255, 255, 255, 0.16), transparent 60%),
        radial-gradient(420px at 80% 10%, rgba(255, 255, 255, 0.1), transparent 60%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.eg-hero__ribbon {
    position: absolute;
    top: 12px;
    right: -48px;
    background: linear-gradient(135deg, #5de0e6 0%, #0f7a8a 50%, #0b4f5b 100%);
    color: #0f1828;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 60px;
    transform: rotate(38deg);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 3;
    pointer-events: none;
}

.eg-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(120deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px,
            transparent 18px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%);
    opacity: 0.6;
    pointer-events: none;
}

.eg-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    white-space: nowrap;
    width: auto;
    max-width: 240px;
    background: rgba(255, 255, 255, 0.12);
    color: #e8fbff;
    border-radius: 18px;
    font-size: 13px;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    align-self: flex-start;
}

.eg-hero h1 {
    margin: 10px 0 8px;
    font-size: clamp(24px, 5vw, 32px);
    line-height: 1.25;
    color: #ffffff;
}

.eg-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 15px;
}

.eg-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.eg-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #eaf7ff;
    font-weight: 700;
    font-size: 13px;
    backdrop-filter: blur(8px);
}

.eg-hero__actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.eg-hero__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    background: #ffffff;
    color: #0f4d5b !important;
    border: 1px solid rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.eg-hero__button:hover,
.eg-hero__button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    background: #e8f6f8;
    outline: none;
}

.eg-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: center;
}

.eg-hero__visual {
    position: relative;
    z-index: 1;
    justify-self: end;
    width: min(320px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
    background: #0b111e;
}

.eg-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 300ms ease;
}

.eg-hero__visual img.is-fading {
    opacity: 0;
}

@media (max-width: 768px) {
    .eg-hero {
        grid-template-columns: 1fr;
    }

    .eg-hero__visual {
        justify-self: center;
        width: min(320px, 100%);
    }
}

.eg-section {
    background: var(--panel);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: clamp(18px, 4vw, 24px);
    box-shadow: 0 14px 30px rgba(4, 18, 46, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eg-section__header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.eg-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--accent);
}

.eg-section h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
}

.eg-section__desc {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.eg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.eg-filter {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.eg-filter__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 120ms ease, color 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.eg-filter__btn:hover,
.eg-filter__btn:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(15, 122, 138, 0.4);
    outline: none;
}

.eg-filter__btn.is-active {
    background: rgba(15, 122, 138, 0.12);
    color: var(--accent);
    border-color: rgba(15, 122, 138, 0.5);
}

.eg-filter__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

.eg-filter__row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.eg-filter__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

.eg-filter__row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.eg-shot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.eg-shot {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f6f8ff;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    padding: 0;
    transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.eg-shot:hover,
.eg-shot:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(15, 122, 138, 0.35);
    box-shadow: 0 12px 25px rgba(15, 122, 138, 0.12);
    outline: none;
}

.eg-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.eg-shot__tags {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.eg-shot__tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 122, 138, 0.2);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.eg-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px;
    background: var(--tag);
    cursor: pointer;
    transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
    text-align: left;
    color: inherit;
    text-decoration: none;
}

.eg-card:hover,
.eg-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(15, 122, 138, 0.35);
    box-shadow: 0 12px 25px rgba(15, 122, 138, 0.12);
    outline: none;
}

.eg-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(15, 122, 138, 0.15);
    background: #f7f9ff;
    display: block;
}

.eg-card video {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(15, 122, 138, 0.15);
    background: #0f1222;
    display: block;
}

.eg-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.eg-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 999px;
    border: 1px solid rgba(15, 122, 138, 0.15);
    background: #ffffff;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.eg-card__title {
    margin: 2px 0 4px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
}

.eg-card__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.eg-lightbox[hidden] {
    display: none;
}

.eg-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    padding: 20px;
}

.eg-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 17, 36, 0.72);
    backdrop-filter: blur(4px);
}

.eg-lightbox__frame {
    position: relative;
    z-index: 1;
    max-width: min(1080px, 92vw);
    max-height: 90vh;
    background: #0b111e;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.eg-lightbox__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.eg-lightbox__close:hover,
.eg-lightbox__close:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    outline: none;
}

.eg-lightbox__image {
    width: 100%;
    height: clamp(300px, 65vh, 760px);
    object-fit: contain;
    background: #0f1222;
}

.eg-lightbox__caption {
    margin: 0;
    padding: 0 16px 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .ec-gallery {
        padding: 18px;
    }

    .eg-card img {
        height: 160px;
    }
}