/* ============================================================
   GALLERY – Stylesheet Style 4: Sommer
   Grav CMS Template: bilder-video.html.twig
   Frisch, hell, mediterran, Sonne & Meer
   ============================================================ */


/* ============================================================
   1. FAVORITEN BUTTON
   ============================================================ */

.fav-btn {
    all: unset;
    font-size: 28px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #f0d060;
    background: rgba(0, 116, 217);
    border-radius: 50%;
    margin: 10px auto 0 auto;
    transition: transform 0.2s ease, color 0.2s;
}

.fav-btn:hover {
    transform: scale(1.15);
    color: #f0a020;
}

.fav-btn.active {
    color: gold;
    background: rgba(0,0,0,0.7);
    filter: drop-shadow(0 0 6px rgba(240,160,32,0.6));
}


/* ============================================================
   2. GALERIE WAND & HEADER
   ============================================================ */







.gallery-wall {
    background: linear-gradient(to right, #4ab8d8, #a8e6d0, #fdf8e8);
    min-height: 100vh;
    padding: 30px 24px;
    transition: opacity 0.3s;
    border-top: 4px solid #4ab8d8;
    position: relative;
     width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow-x: hidden;
}




.gallery-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Seitentitel */
.header-main h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    color: #1a6a8a;
    border: none;
    padding: 6px 20px;
    display: inline-block;
    box-shadow: none;
    text-shadow: 0 2px 8px rgba(74,184,216,0.2);
    letter-spacing: 0.01em;
    position: relative;
}

.header-main h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, #4ab8d8, #60d8a8, #4ab8d8);
    border-radius: 2px;
}

/* Badge-Zeile unter dem Titel */
.badge-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

/* Jahr-Badge */
.badge {
    background: linear-gradient(135deg, #4ab8d8, #38a0c0);
    color: #fff;
    padding: 5px 16px;
    font-size: 0.95rem;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(74,184,216,0.35);
    letter-spacing: 0.04em;
    display: inline-flex;       /* macht das Element zu einem flex container */
    align-items: center;        /* vertikale Zentrierung */
    justify-content: center;    /* horizontale Zentrierung */
    text-align: center;
}

/* Info-Wiki Button */
.info-btn {
    background: #fff;
    border: 2px solid #4ab8d8;
    border-radius: 20px;
    padding: 5px 16px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.82rem;
    color: #1a6a8a;
    box-shadow: 0 2px 8px rgba(74,184,216,0.2);
    transition: 0.2s;
}

.info-btn:hover {
    background: linear-gradient(135deg, #4ab8d8, #38a0c0);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74,184,216,0.4);
}

/* Vor/Zurück Navigation */
.frame-nav {
    background: #fff;
    border: 2px solid #4ab8d8;
    border-radius: 10px;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.82rem;
    color: #1a6a8a;
    box-shadow: 0 2px 8px rgba(74,184,216,0.2);
    transition: 0.2s;
}

.frame-nav:hover {
    background: linear-gradient(135deg, #4ab8d8, #38a0c0);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74,184,216,0.4);
}

/* VIP Login-Status Badge */
.vip-status-badge {
    padding: 5px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    border: 2px solid #4ab8d8;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(74,184,216,0.2);
    display: inline-flex;       /* macht das Element zu einem flex container */
    align-items: center;        /* vertikale Zentrierung */
    justify-content: center;    /* horizontale Zentrierung */
    text-align: center;
}

.vip-status-badge.is-vip {
    background: linear-gradient(135deg, #4ab8d8, #38a0c0);
    color: #fff;
    border-color: transparent;
}

.vip-status-badge.is-guest {
    background: linear-gradient(135deg, #4ab8d8, #38a0c0);
    color: #fff;
}

/* Grid Zoom Control */
.grid-zoom-ctrl {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 2px solid #4ab8d8;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(74,184,216,0.2);
    padding: 3px 10px;
}

.grid-zoom-ctrl button {
    background: none;
    border: none;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    min-width: 30px;
    min-height: 30px;
    color: #1a6a8a;
    transition: color 0.15s;
}

.grid-zoom-ctrl button:hover {
    color: #4ab8d8;
}

.grid-zoom-ctrl button:disabled {
    opacity: 0.25;
    cursor: default;
}

#gridZoomLabel {
    font-size: 0.6rem;
    letter-spacing: 2px;
    min-width: 28px;
    text-align: center;
    color: #4ab8d8;
}


/* ============================================================
   3. FOTO GRID & BILDKACHELN
   ============================================================ */

.photo-grid {
    display: grid;
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
    position: relative;
    z-index: 1;
}

.photo-frame {
    background: #fff;
    padding: 8px 8px 22px 8px;
    box-shadow: 0 4px 16px rgba(74,184,216,0.15), 0 1px 4px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    margin-top: 22px;
    border-radius: 6px;
    border: 1px solid rgba(74,184,216,0.15);
}

/* Leichte Rotation wie Urlaubsfotos */
.photo-frame:nth-child(4n+1) { transform: rotate(-1.5deg); }
.photo-frame:nth-child(4n+2) { transform: rotate(1deg); }
.photo-frame:nth-child(4n+3) { transform: rotate(-0.8deg); }
.photo-frame:nth-child(4n+4) { transform: rotate(1.3deg); }

.photo-frame:hover {
    transform: rotate(0deg) scale(1.04) !important;
    box-shadow: 0 8px 28px rgba(74,184,216,0.3);
    z-index: 10;
}

.passepartout {
    background: #fff;
    padding: 0;
    display: block;
    border-radius: 3px;
    overflow: hidden;
}

.photo-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Muschel / Sonne als Dekoration statt Pin */
.photo-frame::before {
    content: '☀️';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    z-index: 2;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
}

/* Video Play-Button Overlay */
.photo-frame[data-video] {
    position: relative;
}

.photo-frame[data-video]::before {
    content: '▶';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    pointer-events: none;
    z-index: 10;
    opacity: 0.9;
}

/* Video Dauer Badge */
.video-duration-badge {
    position: absolute;
    bottom: 14px;
    right: 12px;
    background: linear-gradient(135deg, rgba(74,184,216,0.85), rgba(56,160,192,0.85));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    pointer-events: none;
    z-index: 10;
}

/* Private Bilder – Schloss-Badge */
.photo-frame--private {
    position: relative;
}

.photo-frame--private::after {
    content: '🔒';
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1rem;
    z-index: 10;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

/* Zuletzt angesehen – Info-Label */
.photo-frame__info-label {
    position: absolute;
    top: -28px;
    left: 0;
    right: 0;
    text-align: center;
    background: linear-gradient(135deg, #4ab8d8, #38a0c0);
    color: #fff;
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    border-radius: 4px 4px 0 0;
}

.photo-frame.last-viewed .photo-frame__info-label {
    opacity: 1;
}

/* Zuletzt angesehen – Rahmen */
.photo-frame.last-viewed {
    outline: 2px solid #4ab8d8;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(74,184,216,0.2), 0 6px 20px rgba(74,184,216,0.25);
    animation: lastViewedPulse 0.5s ease-out;
}

@keyframes lastViewedPulse {
    0%   { outline-width: 1px; box-shadow: 0 0 0 2px rgba(74,184,216,0.1); }
    100% { outline-width: 2px; box-shadow: 0 0 0 5px rgba(74,184,216,0.2); }
}


/* ============================================================
   4. LIGHTBOX – GRUNDSTRUKTUR
   ============================================================ */

.framed-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: #e8f4fd;
    background-image: none;
    z-index: 10000;
    flex-direction: column;
    overflow: hidden;
}

.framed-lightbox.is-open {
    display: flex;
}

/* Header mit Buttons */
.lb-header {
    height: 64px;
    min-height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 10100;
    border-bottom: 1px solid rgba(74,184,216,0.25);
    background: rgba(232,244,253,0.97);
}

/* Aktions-Buttons im Header */
.lb-op-btn {
    background: #fff;
    border: 2px solid #4ab8d8;
    color: #1a6a8a;
    padding: 6px 12px;
    cursor: pointer;
    margin-left: 7px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 6px rgba(74,184,216,0.15);
    border-radius: 8px;
    transition: 0.15s;
}

.lb-op-btn:hover {
    background: linear-gradient(135deg, #4ab8d8, #38a0c0);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 3px 10px rgba(74,184,216,0.4);
    transform: translateY(-1px);
}

/* Haupt-Bereich mit Bild */
.lb-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100vw;
    min-height: 0;
    background: linear-gradient(160deg, #d4edf9 0%, #e8f6f0 100%);
}

/* Viewer & Slide-Track */
.lb-viewer {
    width: 100%;
    height: 100%;
    position: relative;
}

.lb-track {
    display: flex;
    width: 300%;
    height: 100%;
    transform: translateX(-33.3333%);
    will-change: transform;
    align-items: stretch;
}

.lb-slide {
    width: 33.3333%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

/* Bild-Container */
.lb-img-wrap {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
}

/* Hauptbild */
.lb-image {
    max-width: calc(90vw - 20px);
    max-height: calc(90vh - 80px);
    object-fit: contain;
    display: block;
    width: auto;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* Vor/Zurück Navigations-Buttons */
.lb-nav {
    background: rgba(255,255,255,0.95);
    border: 2px solid #4ab8d8;
    font-size: 2.5rem;
    color: #1a6a8a;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10050;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    box-shadow: 0 3px 10px rgba(74,184,216,0.25);
}

.lb-nav:hover {
    background: linear-gradient(135deg, #4ab8d8, #38a0c0);
    color: #fff;
    border-color: transparent;
}

.lb-nav.prev { left: 16px; }
.lb-nav.next { right: 16px; }


/* ============================================================
   5. LIGHTBOX – THUMBNAIL LEISTE
   ============================================================ */

.lb-thumbnails-wrap {
    background: #fff;
    height: 106px;
    min-height: 106px;
    border-top: 1px solid rgba(74,184,216,0.25);
    z-index: 10200;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.lb-thumbnails-wrap.is-hidden {
    height: 0;
    min-height: 0;
    border-top: none;
    overflow: hidden;
}

.lb-thumbnails {
    display: flex;
    gap: 10px;
    padding: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}

.lb-thumb {
    height: 72px;
    width: 72px;
    object-fit: cover;
    opacity: 0.4;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: opacity 0.15s;
}

.lb-thumb.active {
    opacity: 1;
    border-color: #4ab8d8;
    box-shadow: 0 0 0 2px rgba(74,184,216,0.3);
}

.lb-thumb:hover {
    opacity: 0.75;
}

/* Sprung-Buttons Anfang/Ende */
.lb-thumb-jump {
    background: #fff;
    border: 2px solid #4ab8d8;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0 8px;
    height: 72px;
    flex-shrink: 0;
    box-shadow: none;
    border-radius: 8px;
    color: #1a6a8a;
    transition: 0.15s;
}

.lb-thumb-jump:hover {
    background: linear-gradient(135deg, #4ab8d8, #38a0c0);
    color: #fff;
    border-color: transparent;
    transform: none;
    box-shadow: none;
}

.lb-thumbnails-wrap.is-hidden .lb-thumb-jump {
    display: none;
}


/* ============================================================
   6. LIGHTBOX – LANDSCAPE MODUS (Thumbs rechts)
   ============================================================ */

.framed-lightbox.is-landscape .lb-main {
    width: calc(100vw - 106px);
}

.framed-lightbox.is-landscape .lb-thumbnails-wrap {
    position: fixed;
    right: 0;
    top: 64px;
    bottom: 0;
    width: 106px;
    height: auto;
    border-top: none;
    border-left: 1px solid rgba(74,184,216,0.25);
    flex-direction: column;
}

.framed-lightbox.is-landscape .lb-thumbnails-wrap.is-hidden {
    width: 0;
    border: none;
}

.framed-lightbox.is-landscape .lb-thumbnails {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    touch-action: pan-y;
    padding: 8px;
    gap: 8px;
}

.framed-lightbox.is-landscape .lb-thumb {
    width: 82px;
    height: 82px;
}

.framed-lightbox.is-landscape .lb-thumb-jump {
    width: 82px;
    height: auto;
    padding: 8px 0;
}

.framed-lightbox.is-landscape .lb-image {
    max-width: calc(100vw - 126px);
    max-height: calc(100vh - 84px);
}


/* ============================================================
   7. LIGHTBOX – ROTIERTER MODUS (Bild 90° gedreht)
   ============================================================ */

#magnetLightboxEl.is-rotated .lb-img-wrap {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

#magnetLightboxEl.is-rotated .lb-image {
    max-width: 80vh;
    max-height: 90vw;
}

#magnetLightboxEl.is-rotated .lb-thumb {
    transform: rotate(90deg);
}


/* ============================================================
   8. LIGHTBOX – VIDEO
   ============================================================ */

.lb-video {
    max-width: calc(90vw - 20px);
    max-height: calc(90vh - 80px);
    display: block;
    background: #000;
    border-radius: 4px;
}


/* ============================================================
   9. RESPONSIVE – MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {

    /* ── Gallery Header Layout ── */
    .gallery-header {
        display: grid;
        grid-template-columns: 80px 1fr 80px;
        grid-template-rows: auto auto;
        align-items: start;
        gap: 4px;
        margin: 0 auto 20px;
    }

    .gallery-header .nav-wrap:first-child {
        grid-row: 1;
        grid-column: 1;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-top: 4px;
    }

    .gallery-header .nav-wrap:last-child {
        grid-row: 1;
        grid-column: 3;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding-top: 4px;
    }

    .header-main {
        grid-row: 1 / 3;
        grid-column: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    /* ── Fav Button ── */
    .fav-btn {
        font-size: 22px;
        width: 34px;
        height: 34px;
        margin: 0;
        flex-shrink: 0;
    }

    /* ── Seitentitel ── */
    .header-main h1 {
        font-size: 1.3rem;
        margin: 0;
        text-align: center;
        word-break: break-word;
        hyphens: auto;
        padding: 0 4px;
    }

    /* ── Badge Zeile ── */
    .badge-row {
        justify-content: center;
        gap: 4px;
        flex-wrap: wrap;
        margin-top: 2px;
    }

    .badge,
    .info-btn,
    .vip-status-badge,
    #styleToggleBtn {
        font-size: 0.78rem;
        padding: 4px 10px;
    }

    .grid-zoom-ctrl {
        padding: 2px 6px;
    }

    .grid-zoom-ctrl button {
        font-size: 1rem;
        min-width: 24px;
        min-height: 24px;
    }

    #gridZoomLabel {
        font-size: 0.5rem;
        min-width: 18px;
    }

    /* ── Nav Buttons ── */
    .frame-nav {
        font-size: 0.72rem;
        padding: 6px 7px;
        white-space: normal;
        word-break: break-word;
        line-height: 1.2;
        max-width: 75px;
    }

    /* ── Foto Grid ── */
    .photo-grid { gap: 16px; }
    .photo-frame { margin-top: 18px; }
    .photo-frame__info-label {
        font-size: 0.65rem;
        padding: 3px 6px;
        top: -26px;
    }

    /* ── Lightbox ── */
    .lb-nav { display: none; }
    .lb-header { padding: 0 10px; height: 58px; min-height: 58px; }
    .lb-op-btn {
        padding: 7px 10px;
        min-width: 38px;
        font-size: 1rem;
        margin-left: 5px;
    }
    .lb-image { max-width: 98vw; max-height: 75vh; }
    .lb-img-wrap { padding: 0; }
    .lb-video { max-width: 98vw; max-height: 75vh; }

    #magnetLightboxEl.is-rotated .lb-video {
        max-width: 80vh;
        max-height: 90vw;
    }

    .framed-lightbox.is-landscape .lb-thumbnails-wrap {
        height: calc(100% - 58px) !important;
    }
}





/* ============================================================
   10. DARKMODE
   ============================================================ */

body.dark .gallery-wall {
    background: linear-gradient(160deg, #0d1a24 0%, #0a1820 30%, #0d1e18 60%, #1a1a0d 100%);
    border-top-color: #2a7a98;
}

body.dark .gallery-wall::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='rgba(42,122,152,0.08)' d='M0,60 C360,120 1080,0 1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

body.dark .header-main h1 {
    color: #7ad4f0;
}

body.dark .header-main h1::after {
    background: linear-gradient(90deg, #2a7a98, #38a888, #2a7a98);
}

body.dark .photo-frame {
    background: #0d1e2c;
    border-color: rgba(74,184,216,0.15);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

body.dark .passepartout {
    background: #0d1e2c;
}

body.dark .photo-frame img {
    opacity: 0.88;
}

body.dark .photo-frame.last-viewed {
    outline-color: #4ab8d8;
    box-shadow: 0 0 0 5px rgba(74,184,216,0.15), 0 6px 20px rgba(0,0,0,0.4);
}

body.dark .photo-frame__info-label {
    background: linear-gradient(135deg, #2a7a98, #1a6080);
}

body.dark .badge {
    background: linear-gradient(135deg, #2a7a98, #1a6080);
}

body.dark .info-btn {
    background: #0d1e2c;
    border-color: #2a7a98;
    color: #7ad4f0;
}

body.dark .info-btn:hover {
    background: linear-gradient(135deg, #2a7a98, #1a6080);
    color: #fff;
    border-color: transparent;
}

body.dark .frame-nav {
    background: #0d1e2c;
    border-color: #2a7a98;
    color: #7ad4f0;
}

body.dark .frame-nav:hover {
    background: linear-gradient(135deg, #2a7a98, #1a6080);
    color: #fff;
    border-color: transparent;
}

body.dark .grid-zoom-ctrl {
    background: #0d1e2c;
    border-color: #2a7a98;
}

body.dark .grid-zoom-ctrl button {
    color: #7ad4f0;
}

body.dark .vip-status-badge.is-guest {
    background: #0d1e2c;
    border-color: #2a7a98;
    color: #7ad4f0;
}

body.dark .vip-status-badge.is-vip {
    background: linear-gradient(135deg, #2a7a98, #1a6080);
    color: #fff;
    border-color: transparent;
}

body.dark .framed-lightbox {
    background: #0a1820;
}

body.dark .lb-header {
    background: rgba(10,24,32,0.97);
    border-bottom-color: rgba(74,184,216,0.15);
}

body.dark .lb-main {
    background: linear-gradient(160deg, #0d1a24 0%, #0d1e18 100%);
}

body.dark .lb-op-btn {
    background: #0d1e2c;
    border-color: #2a7a98;
    color: #7ad4f0;
}

body.dark .lb-op-btn:hover {
    background: linear-gradient(135deg, #2a7a98, #1a6080);
    color: #fff;
    border-color: transparent;
}

body.dark #magnetLbCounter {
    color: #7ad4f0;
}

body.dark .lb-nav {
    background: rgba(13,30,44,0.95);
    border-color: #2a7a98;
    color: #7ad4f0;
}

body.dark .lb-nav:hover {
    background: linear-gradient(135deg, #2a7a98, #1a6080);
    color: #fff;
    border-color: transparent;
}

body.dark .lb-thumbnails-wrap {
    background: #0d1e2c;
    border-top-color: rgba(74,184,216,0.15);
}

body.dark .lb-thumb {
    opacity: 0.4;
}

body.dark .lb-thumb.active {
    opacity: 1;
    border-color: #4ab8d8;
    box-shadow: 0 0 0 2px rgba(74,184,216,0.2);
}

body.dark .lb-thumb-jump {
    background: #0d1e2c;
    border-color: #2a7a98;
    color: #7ad4f0;
}

body.dark .lb-thumb-jump:hover {
    background: linear-gradient(135deg, #2a7a98, #1a6080);
    color: #fff;
    border-color: transparent;
}
