/* projects public sayfasına özel stiller. */
.ge-cta-band--short {
    padding-block: 64px;
}

.ge-gallery-section {
    background: var(--ge-bg);
}

.ge-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.ge-gallery-card {
    border: 1px solid var(--ge-line);
    border-radius: var(--ge-radius);
    overflow: hidden;
    background: var(--ge-white);
    box-shadow: var(--ge-shadow-sm);
}

.ge-gallery-card--wide {
    grid-column: 1 / -1;
}

.ge-gallery-card__button {
    position: relative;
    width: 100%;
    height: 340px;
    display: block;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: var(--ge-navy-900);
    cursor: zoom-in;
}

.ge-gallery-card__button:focus-visible {
    outline: 3px solid rgba(166, 72, 73, 0.48);
    outline-offset: 3px;
}

.ge-gallery-card--wide .ge-gallery-card__button {
    height: 500px;
}

.ge-gallery-card__button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.ge-gallery-card__button:hover img {
    transform: scale(1.035);
}

.ge-gallery-card__zoom {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(32, 17, 19, 0.8);
    color: var(--ge-white);
    backdrop-filter: blur(10px);
}

.ge-gallery-card__body {
    padding: 25px 28px 28px;
}

.ge-gallery-card__body > span {
    color: var(--ge-navy-700);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ge-gallery-card__body h2 {
    margin: 7px 0 8px;
    font-size: 24px;
}

.ge-gallery-card__body p {
    margin-bottom: 12px;
    color: var(--ge-muted);
    font-size: 14px;
}

.ge-gallery-card__body small {
    color: #96868a;
    font-size: 10px;
    font-weight: 740;
}

.ge-proof-section__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 90px;
}

@media (max-width: 1024px) {
    .ge-proof-section__grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }
}

.ge-proof-section__grid > div:first-child > p:not(.ge-kicker) {
    margin: 24px 0 28px;
    color: var(--ge-muted);
}

.ge-proof-card {
    padding: 42px;
    border-radius: var(--ge-radius-lg);
    background: var(--ge-navy-900);
    color: var(--ge-white);
    box-shadow: var(--ge-shadow-lg);
}

.ge-proof-card__score {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--ge-line-dark);
}

.ge-proof-card__score > strong {
    font-size: 67px;
    letter-spacing: -0.06em;
    line-height: 1;
}

.ge-proof-card__stars {
    display: block;
    color: var(--ge-brand-red-light);
    letter-spacing: 0.08em;
}

.ge-proof-card__score p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.ge-proof-card ul {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.ge-proof-card li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: rgba(255, 255, 255, 0.82);
}

.ge-proof-card li .ge-icon {
    margin-top: 4px;
    color: var(--ge-brand-red-light);
}

.ge-lightbox {
    width: min(1080px, calc(100% - 32px));
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: var(--ge-radius);
    overflow: visible;
    background: transparent;
}

.ge-lightbox::backdrop {
    background: rgba(20, 10, 12, 0.9);
    backdrop-filter: blur(8px);
}

.ge-lightbox__inner {
    position: relative;
    overflow: hidden;
    border-radius: var(--ge-radius);
    background: var(--ge-navy-950);
    color: var(--ge-white);
    box-shadow: var(--ge-shadow-lg);
}

.ge-lightbox__inner > img {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    background: #160b0d;
}

.ge-lightbox__close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    background: rgba(32, 17, 19, 0.84);
    color: var(--ge-white);
    cursor: pointer;
}

.ge-lightbox__caption {
    padding: 24px 28px 27px;
}

.ge-lightbox__caption h2 {
    margin-bottom: 5px;
    color: var(--ge-white);
    font-size: 24px;
}

.ge-lightbox__caption p {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.65);
}

.ge-lightbox__caption small {
    color: var(--ge-yellow);
    font-weight: 750;
}
@media (max-width: 768px) {
.ge-gallery-grid {
        grid-template-columns: 1fr;
    }

    .ge-gallery-card--wide {
        grid-column: auto;
    }

    .ge-gallery-card__button,
    .ge-gallery-card--wide .ge-gallery-card__button {
        height: 290px;
    }

    .ge-gallery-card__body {
        padding: 22px;
    }

    .ge-proof-card {
        padding: 28px 22px;
    }

    .ge-proof-card__score > strong {
        font-size: 54px;
    }
}
