﻿/*
 * Gallery, blog and construction video sections
 * Extracted from lamer-public.css lines 4248-4697.
 */
.map-pin {
    left: 49%;
    top: 52%;
    z-index: 3;
}

.map-nearby {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 86px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.map-nearby span {
    padding: 9px 11px;
    color: #07100e;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(15,23,42,.08);
    font-size: 12px;
    font-weight: 900;
}

.apartment-map-visual {
    grid-template-columns: minmax(0, 1fr) 150px;
    background:
        linear-gradient(90deg, #f3ead9 0 73%, transparent 73%),
        linear-gradient(135deg, #f8f1e5, #e3dac9);
}

.map-land {
    min-height: 560px;
}

.map-coast {
    min-height: 560px;
}

.map-city {
    position: absolute;
    z-index: 2;
    color: rgba(7,16,14,.72);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.map-city-navodari {
    top: 34px;
    left: 32px;
}

.map-city-mamaia {
    bottom: 116px;
    left: 34px;
}

.map-city-constanta {
    bottom: 38px;
    left: 32px;
}

.map-road-main {
    left: 12%;
    right: 10%;
    top: 18%;
    height: 34px;
    transform: rotate(74deg);
    transform-origin: left center;
    border-radius: 999px;
}

.map-road-name {
    left: 35%;
    top: 45%;
    transform: rotate(-16deg);
}

.map-context-note {
    position: absolute;
    left: 39%;
    top: 30%;
    z-index: 2;
    padding: 8px 12px;
    color: #8f7436;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(183,154,88,.22);
    box-shadow: 0 12px 28px rgba(15,23,42,.08);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.map-pin {
    left: 58%;
    top: 39%;
}

.map-nearby {
    left: 24px;
    right: 24px;
    bottom: 24px;
}

.map-coast strong {
    max-width: 98px;
}

.blog-layout,
.blog-article-layout {
    width: min(1160px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 36px;
    align-items: start;
}
.blog-featured,
.blog-card,
.blog-sidebar .sidebar-block {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.blog-featured {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
    gap: 28px;
    padding: 18px;
    margin-bottom: 24px;
}
.blog-featured-media,
.blog-card-media {
    display: block;
    overflow: hidden;
    background: #ddd;
}
.blog-featured-media img,
.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.blog-featured-media { min-height: 320px; }
.blog-card-media { height: 210px; }
.blog-featured:hover img,
.blog-card:hover img { transform: scale(1.04); }
.blog-featured h2 {
    font-family: "Roboto", system-ui, sans-serif;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.05;
    margin: 14px 0;
}
.blog-featured p,
.blog-card p {
    color: var(--muted);
    line-height: 1.6;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.blog-card-body { padding: 22px; }
.blog-card h3 {
    font-size: 23px;
    line-height: 1.2;
    margin: 10px 0 12px;
}
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
.blog-meta.light { color: rgba(255,255,255,.68); margin-bottom: 18px; }
.blog-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 92px;
}
.sidebar-block { padding: 24px; }
.sidebar-block h3 { margin: 0 0 18px; font-size: 22px; }
.related-posts-block {
    padding: 18px;
}
.related-posts-block h3 {
    margin-bottom: 14px;
    font-size: 20px;
}
.related-posts-list {
    display: grid;
    gap: 12px;
}
.related-post-card {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    color: inherit;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 8px;
    background: #fff;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.related-post-card:hover {
    transform: translateY(-2px);
    border-color: rgba(183,154,88,.32);
    box-shadow: 0 14px 34px rgba(8,17,15,.08);
}
.related-post-card img {
    width: 86px;
    height: 72px;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}
.related-post-card span {
    min-width: 0;
    display: grid;
    gap: 5px;
}
.related-post-card small {
    color: #8f7436;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.related-post-card strong {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.25;
}
.blog-article-cta {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 16px;
    padding: 26px;
    color: #fff;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(7,16,14,.94), rgba(7,16,14,.82)),
        url("/images/blog/apartamente-mamaia-nord-investitie.webp") center/cover no-repeat;
    box-shadow: 0 24px 70px rgba(8,17,15,.18);
}
.blog-article-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 12%, rgba(183,154,88,.36), transparent 34%);
    pointer-events: none;
}
.blog-article-cta > * {
    position: relative;
    z-index: 1;
}
.blog-article-cta span {
    color: #d7be72;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.blog-article-cta h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: 0;
}
.blog-article-cta p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.58;
}
.blog-article-cta-actions {
    display: grid;
    gap: 9px;
}
.blog-article-cta-actions a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
}
.blog-article-cta-actions a:first-child {
    color: #07100e;
    background: linear-gradient(135deg, #d7be72, #b79a58);
}
.blog-article-cta-actions a:last-child {
    color: #fff;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.09);
    backdrop-filter: blur(10px);
}
.blog-article-cta-contact {
    display: grid;
    gap: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.16);
}
.blog-article-cta-contact a {
    width: fit-content;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 800;
}
.blog-article-cta .social-links {
    margin-top: 0;
    padding-top: 2px;
}
.blog-article-cta .social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.1);
}
.blog-article-cta .social-links svg {
    width: 17px;
    height: 17px;
}
.sidebar-post {
    display: grid;
    gap: 6px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.sidebar-post:last-child { border-bottom: 0; }
.sidebar-post span { color: var(--muted); font-size: 13px; }
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag-list a {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 800;
}
.tag-list a:hover {
    background: var(--deep);
    color: #fff;
}
.blog-article-cover {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    margin-bottom: 24px;
}
.article-tags { margin-bottom: 24px; }
.blog-copy { width: min(850px, 100%); }
.empty-state {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px solid var(--line);
    padding: 34px;
    color: var(--muted);
}
.public-pagination { margin-top: 28px; }

.gallery-page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5, 9, 8, .88), rgba(5, 9, 8, .56) 48%, rgba(5, 9, 8, .2)),
        var(--gallery-hero-image) center/cover no-repeat,
        linear-gradient(135deg, #07100e, #13231f);
}
.gallery-page-hero .page-hero-inner {
    position: relative;
    z-index: 1;
}
.gallery-page-hero h1 {
    max-width: 850px;
    font-size: clamp(48px, 6vw, 86px);
}
.gallery-page-hero p {
    max-width: 720px;
}
.gallery-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}
.gallery-hero-points span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.1);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    backdrop-filter: blur(12px);
}
.gallery-page-section {
    padding-top: clamp(48px, 6vw, 78px);
}
.gallery-page-head {
    width: min(1160px, 100%);
    margin: 0 auto 24px;
}
.gallery-page-head h2 {
    max-width: 760px;
    margin: 0;
    font-family: "Roboto", system-ui, sans-serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.04;
    color: var(--ink);
}
.gallery-page-head p {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}
.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
    align-items: stretch;
}
.gallery-grid .gallery-item:nth-child(7n + 1) {
    grid-column: span 2;
    height: 440px;
}
.gallery-grid .gallery-item:nth-child(7n + 4) {
    height: 390px;
}
.gallery-slider-section {
    overflow: hidden;
    background: #eef4ff;
    color: var(--ink);
}
.gallery-slider-card {
    width: min(1160px, 100%);
    margin: 0 auto;
    padding: 28px 0 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15,23,42,.06);
    border-radius: 8px;
    box-shadow: 0 18px 54px rgba(15,23,42,.08);
}
.gallery-slider-head {
    margin: 0 28px 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}
.gallery-slider-head span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.gallery-slider-head h2 {
    margin: 0;
    color: var(--ink);
    font-family: "Roboto", system-ui, sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.04;
}
.gallery-slider-head p {
    max-width: 640px;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}
.gallery-slider-head a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, #b79a58, #8f7436);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .22s ease, background .22s ease;
}
.gallery-slider-head a:hover {
    transform: translateY(-2px);
    background: var(--ink);
}
.lamer-template-gallery {
    width: 100%;
    margin: 0;
    position: relative;
}
.lamer-template-gallery .tns-outer {
    overflow: visible;
}
.lamer-template-gallery .tns-inner {
    overflow: visible;
}
.lamer-template-gallery .tns-ovh {
    overflow: visible;
}
.lamer-gallery-slide {
    position: relative;
    height: clamp(330px, 36vw, 470px);
    overflow: hidden;
    border-radius: 8px;
    background: #d8d8d8;
    box-shadow: none;
    isolation: isolate;
}
.lamer-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.02) contrast(1.02);
    transform: scale(1.01);
    transition: transform .7s ease, filter .35s ease;
}
.lamer-gallery-slide:hover img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.04);
}

.construction-video-section {
    position: relative;
    min-height: clamp(620px, 78vh, 860px);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background: var(--deep);
    isolation: isolate;
}
.construction-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -2;
    filter: saturate(1.02) contrast(1.04);
}
.construction-video-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(8,17,15,.12), rgba(8,17,15,.46) 48%, rgba(8,17,15,.92)),
        linear-gradient(90deg, rgba(8,17,15,.9), rgba(8,17,15,.42) 52%, rgba(8,17,15,.18));
}
.construction-video-inner {
    width: min(1220px, 100%);
    margin: 0 auto;
    padding: clamp(64px, 9vw, 120px) min(5vw, 70px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: clamp(32px, 7vw, 90px);
    align-items: end;
}
.construction-video-copy {
    max-width: 760px;
}
.construction-video-copy > span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .09em;
}
.construction-video-copy h2 {
    margin: 0;
    max-width: 760px;
    color: #fff;
    font-family: "Roboto", system-ui, sans-serif;
    font-size: clamp(42px, 6.4vw, 96px);
    line-height: .94;
    letter-spacing: 0;
}
.construction-video-copy p {
    max-width: 690px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.82);
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.65;
}
.construction-video-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}
.construction-video-actions .btn-outline {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.48);
    color: #fff;
    backdrop-filter: blur(14px);
}
.construction-video-proof {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
}
.construction-video-proof article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    min-height: 104px;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255,255,255,.16);
}
.construction-video-proof article:last-child {
    border-bottom: 0;
}
.construction-video-proof strong {
    min-width: 82px;
    color: var(--accent);
    font-size: 42px;
    line-height: 1;
}
.construction-video-proof span {
    color: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
}
