/* ==============================
   CEP VENUE – CLEAN FINAL
============================== */

.ce-venue-page {
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

/* ==============================
   HERO
============================== */
.ce-venue-hero {
    position: relative;
    height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 40px 60px;
}

.ce-venue-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.ce-venue-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.ce-venue-hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-shadow: 0 4px 12px rgba(0,0,0,0.8);
}

/* ==============================
   CONTENT GRID
============================== */
.ce-venue-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 40px;
}

/* ==============================
   LEFT COLUMN
============================== */
.ce-venue-left {
    background: rgba(255,255,255,0.04);
    border-radius: 18px;
    padding: 25px;
}

.ce-venue-left img {
    width: 100%;
    border-radius: 12px;
}

/* ==============================
   VENUE IMAGE – SQUARE FIX
============================== */
.ce-venue-image {
    position: relative;
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 24px;
}

.ce-venue-image::before {
    content: "";
    display: block;
    padding-top: 100%; /* cuadrado perfecto */
}

.ce-venue-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ==============================
   DETAILS
============================== */
.ce-venue-details {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.ce-venue-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-left: 4px solid #cab359;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    font-size: 13px;
    color: #f5f5f5; /* texto visible */
}

.ce-venue-details strong {
    color: #fff;
    font-weight: 600;
}

.ce-venue-details a {
    color: #cab359;
    text-decoration: underline;
    text-decoration-color: rgba(202,179,89,.45);
}

.ce-venue-details a:hover {
    color: #fff;
}

/* SVG icons stay gold */
.ce-icon-svg path,
.ce-venue-details li .ce-icon {
    color: #cab359;
    fill: #cab359;
}

/* ==============================
   RIGHT COLUMN / FORM
============================== */
.ce-venue-right {
    background: rgba(0,0,0,0.75);
    border-radius: 18px;
    padding: 25px;
}

.ce-venue-right h2 {
    color: #cab359;
}

.ce-venue-right input,
.ce-venue-right textarea,
.ce-venue-right button {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

/* ==============================
   RELATED ARTICLES GRID
============================== */
.venue-articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.venue-article-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #cab359;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform .3s ease, box-shadow .3s ease;
}

.venue-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.venue-article-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.venue-article-card h3 {
    font-size: 18px;
    padding: 16px 20px 24px;
}

.venue-article-card h3 a {
    color: #111;
    text-decoration: none;
}

.venue-article-card h3 a:hover {
    color: #cab359;
}

/* ==============================
   RESPONSIVE – MOBILE & SMALL SCREENS
============================== */
@media (max-width: 768px) {
    .ce-venue-hero {
        height: auto;
        padding: 25px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .ce-venue-hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .ce-venue-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
    }

    .ce-venue-left,
    .ce-venue-right {
        width: 100%;
    }

    .ce-venue-image,
    .venue-article-card img {
        aspect-ratio: 1 / 1;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Venue details adjust */
    .ce-venue-details li {
        font-size: 9px;
        line-height: 1.2;
        gap: 6px;
        white-space: normal; /* allow wrapping */
        overflow: visible;
    }

    .ce-venue-details li .ce-icon {
        font-size: 14px;
    }

    .ce-venue-details li a {
        color: #cab359;
    }

    /* Articles grid collapse */
    .venue-articles-grid {
        grid-template-columns: 1fr !important;
    }

    .venue-article-card h3 {
        font-size: 16px;
        padding: 10px 12px;
    }

    /* Form fields full width */
    .ce-venue-right input,
    .ce-venue-right textarea,
    .ce-venue-right button {
        font-size: 14px;
    }
}

/* ==============================
   DESKTOP – ARTICLES GRID
============================== */
@media (min-width: 1024px) {
    .venue-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
