/* ===========================
   GLOBAL VARIABLES
=========================== */
:root {
    --gold: #cab359;
    --black: #000;
    --white: #fff;
    --dark: #111;
    --grey: #f3f3f3;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--white);
    color: var(--dark);
}

/* ===========================
   HERO DESTINATION
=========================== */
.ce-destination-hero {
    padding: 120px 30px;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.ce-destination-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.ce-destination-hero .ce-label {
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

.ce-destination-hero h1 {
    font-size: 56px;
    margin: 0 0 12px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--gold);
}

.ce-destination-hero p.ce-excerpt {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
    background: rgba(0,0,0,.55);
    padding: 12px;
    border-radius: 8px;
}

/* ===========================
   DESTINATION CONTENT
=========================== */
.ce-destination-wrapper {
    padding: 60px 40px;
}

.ce-destination-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.ce-destination-article {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark);
}

/* ===========================
   VENUES GRID
=========================== */
.cep-venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.cep-venue-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gold);
    box-shadow: 0 18px 50px rgba(0,0,0,0.12);
    transition: transform .4s ease, box-shadow .4s ease;
}

.cep-venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 70px rgba(0,0,0,0.18);
}

.cep-venue-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.cep-venue-card h3 {
    font-size: 22px;
    margin: 12px 16px;
}

.cep-venue-card h3 a {
    color: var(--dark);
    text-decoration: none;
}

.cep-venue-card h3 a:hover {
    color: var(--gold);
}

/* ===========================
   RELATED ARTICLES
=========================== */
.ce-destination-articles {
    padding: 100px 40px;
    background: var(--grey);
}

.ce-destination-articles h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 60px;
}

.ce-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.ce-article-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--gold);
    box-shadow: 0 18px 50px rgba(0,0,0,0.12);
    transition: transform .4s ease, box-shadow .4s ease;
}

.ce-article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 70px rgba(0,0,0,0.18);
}

/* Imagen uniforme para todos los posts */
.ce-article-card img,
.ce-article-thumb-img {
    width: 100%;
    height: 220px; /* altura fija */
    object-fit: cover; /* recorta centrado */
    display: block;
}

.ce-article-card h3 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.15;
    margin: 16px;
}

.ce-article-card h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: color .3s ease;
}

.ce-article-card h3 a:hover {
    color: var(--gold);
}

.ce-article-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin: 0 16px 16px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 980px) {
    .ce-destination-content {
        grid-template-columns: 1fr;
    }
    .ce-destination-wrapper,
    .ce-destination-articles {
        padding: 40px 20px;
    }
    .ce-destination-hero {
        padding: 90px 20px;
    }
    .ce-destination-hero h1 {
        font-size: 40px;
    }
    .ce-destination-articles h2 {
        font-size: 32px;
    }
}
