/**
 * Estilos de las landing pages de proyectos (/proyecto/{slug} y /EN/project/{slug}).
 *
 * Estructura propia (NO reutiliza el detalle [propiedad] ni el listado
 * [propiedades]). Usa los tokens --remax-* del style-guide con fallbacks para
 * no depender de que la guia este cargada en el front.
 *
 * @package RealEstateTheme
 */

.mt-proyecto {
    --pl-blue: var(--remax-blue, #003DA5);
    --pl-blue-dark: var(--remax-blue-dark, #002764);
    --pl-red: var(--remax-red, #E11B22);
    --pl-ink: var(--text-dark, #0f172a);
    --pl-gray: var(--text-gray, #475569);
    --pl-bg-light: var(--bg-light, #F8F9FA);
    --pl-border: var(--border-color, #e5e7eb);
    --pl-radius: var(--border-radius-xl, 16px);
    --pl-shadow: var(--shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.1));
    --pl-font: var(--font-family, 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);

    font-family: var(--pl-font);
    color: var(--pl-ink);
    line-height: 1.6;
}

.mt-proyecto * {
    box-sizing: border-box;
}

.mt-proyecto__wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

.mt-proyecto section {
    margin: 0 auto;
}

.mt-proyecto__section {
    padding: 80px 0;
    border-bottom: 1px solid var(--pl-border);
}

.mt-proyecto__section:last-child {
    border-bottom: 0;
}

.mt-proyecto__title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: var(--pl-blue-dark);
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.mt-proyecto__lead {
    font-size: 18px;
    color: var(--pl-gray);
    max-width: 820px;
    margin: 0 0 20px;
    line-height: 1.7;
}

/* ============================================
   Hero + Video
   ============================================ */
.mt-proyecto-hero {
    background: linear-gradient(135deg, var(--pl-blue-dark) 0%, var(--pl-blue) 100%);
    color: #fff;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.mt-proyecto-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.mt-proyecto-hero__wrap {
    position: relative;
    z-index: 1;
}

.mt-proyecto-hero__video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--pl-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-bottom: 40px;
    background: #000;
    border: 4px solid rgba(255,255,255,0.1);
}

.mt-proyecto-hero__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.mt-proyecto-hero__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #cfe0ff;
    margin-bottom: 8px;
}

.mt-proyecto-hero__title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.mt-proyecto-hero__loc {
    font-size: 20px;
    color: #e6eefc;
    margin: 0 0 24px;
    font-weight: 500;
}

.mt-proyecto-hero__loc svg {
    vertical-align: -3px;
    margin-right: 6px;
}

.mt-proyecto-hero__price {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 24px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.mt-proyecto-hero__price small {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #cfe0ff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mt-proyecto-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.mt-proyecto-hero__badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.mt-proyecto-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pl-red);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 18px;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(225, 27, 34, 0.3);
}

.mt-proyecto-hero__cta:hover {
    background: #c4161d;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 16px rgba(225, 27, 34, 0.4);
}

/* ============================================
   Quick facts
   ============================================ */
.mt-proyecto-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.mt-proyecto-fact {
    background: #fff;
    border: 1px solid var(--pl-border);
    border-radius: var(--border-radius-xl, 16px);
    padding: 24px;
    text-align: center;
    box-shadow: var(--pl-shadow);
    transition: transform 0.3s ease;
}

.mt-proyecto-fact:hover {
    transform: translateY(-4px);
}

.mt-proyecto-fact__num {
    font-size: 28px;
    font-weight: 800;
    color: var(--pl-blue);
    line-height: 1.2;
    margin-bottom: 4px;
}

.mt-proyecto-fact__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--pl-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   Galeria
   ============================================ */
.mt-proyecto-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
}

.mt-proyecto-gallery__grid figure {
    margin: 0;
    border-radius: var(--border-radius-lg, 12px);
    overflow: hidden;
    background: var(--pl-bg-light);
}

.mt-proyecto-gallery__grid figure:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.mt-proyecto-gallery__grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.mt-proyecto-gallery__item {
    cursor: pointer;
}

.mt-proyecto-gallery__grid figure:hover img {
    transform: scale(1.05);
}

/* Modal de Galeria */
.mt-proyecto-gallery-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}
.mt-proyecto-gallery-modal.is-open {
    display: flex;
}
.mt-proyecto-gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}
.mt-proyecto-gallery__wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.mt-proyecto-gallery__view {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.mt-proyecto-gallery__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}
.mt-proyecto-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 60px;
    line-height: 1;
    padding: 0 20px 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
    z-index: 2;
}
.mt-proyecto-gallery__nav:hover {
    background: rgba(255,255,255,0.3);
}
.mt-proyecto-gallery__nav.prev { left: 20px; }
.mt-proyecto-gallery__nav.next { right: 20px; }

.mt-proyecto-gallery__view {
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
}

.mt-proyecto-gallery__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    background: rgba(0, 0, 0, 0.45);
    padding: 6px 14px;
    border-radius: 999px;
    pointer-events: none;
}


/* ============================================
   Amenidades
   ============================================ */
.mt-proyecto-amenities {
    background: var(--pl-bg-light);
}

.mt-proyecto-amenities__group {
    margin-bottom: 32px;
    background: #fff;
    padding: 32px;
    border-radius: var(--pl-radius);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.04));
    border: 1px solid var(--pl-border);
}

.mt-proyecto-amenities__group h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--pl-blue-dark);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--pl-bg-light);
}

.mt-proyecto-amenities__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px 24px;
}

.mt-proyecto-amenities__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--pl-ink);
    line-height: 1.4;
}

.mt-proyecto-amenities__list li::before {
    content: "";
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--pl-blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* ============================================
   Ubicacion
   ============================================ */
.mt-proyecto-location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.mt-proyecto-location__map-img {
    width: 100%;
    height: auto;
    border-radius: var(--pl-radius);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.06));
    display: block;
}

.mt-proyecto-location__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.mt-proyecto-location__links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--pl-border);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pl-blue);
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mt-proyecto-location__links a:hover {
    border-color: var(--pl-blue);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.06));
}

/* ============================================
   Partners (Constructora/Fiduciaria)
   ============================================ */
.mt-proyecto-partners {
    background: var(--pl-bg-light);
}

.mt-proyecto-partners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.mt-proyecto-partner {
    background: #fff;
    padding: 32px;
    border-radius: var(--pl-radius);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.04));
    border: 1px solid var(--pl-border);
}

.mt-proyecto-partner h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--pl-blue-dark);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mt-proyecto-partner h3::before {
    content: "";
    display: block;
    width: 24px;
    height: 4px;
    background: var(--pl-red);
    border-radius: 2px;
}

.mt-proyecto-partner__logo {
    max-height: 60px;
    max-width: 200px;
    margin-bottom: 24px;
    display: block;
    object-fit: contain;
}

.mt-proyecto-partner p {
    font-size: 16px;
    color: var(--pl-gray);
    margin: 0;
    line-height: 1.6;
}

.mt-proyecto-partner strong {
    color: var(--pl-ink);
    font-weight: 600;
}

/* ============================================
   FAQ (Accordion)
   ============================================ */
.mt-proyecto-faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.mt-proyecto-faq__item {
    background: #fff;
    border: 1px solid var(--pl-border);
    border-radius: var(--pl-radius);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.mt-proyecto-faq__item:hover {
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.06));
}

.mt-proyecto-faq__item summary {
    font-size: 18px;
    font-weight: 700;
    color: var(--pl-blue-dark);
    padding: 24px;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 48px;
}

.mt-proyecto-faq__item summary::-webkit-details-marker {
    display: none;
}

.mt-proyecto-faq__item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--pl-blue);
    font-weight: 400;
}

.mt-proyecto-faq__item[open] summary::after {
    content: "−";
}

.mt-proyecto-faq__answer {
    padding: 0 24px 24px;
}

.mt-proyecto-faq__answer p {
    font-size: 16px;
    color: var(--pl-gray);
    margin: 0 0 16px;
    line-height: 1.6;
}

.mt-proyecto-faq__answer p:last-child {
    margin: 0;
}

.mt-proyecto-faq__answer strong {
    color: var(--pl-ink);
}

/* ============================================
   Testimonios
   ============================================ */
.mt-proyecto-testimonials {
    background: #fff;
}

.mt-proyecto-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.mt-proyecto-testimonial {
    background: var(--pl-bg-light);
    padding: 32px;
    border-radius: var(--pl-radius);
    border: 1px solid var(--pl-border);
    position: relative;
}

.mt-proyecto-testimonial::before {
    content: "“";
    font-size: 80px;
    font-weight: 800;
    color: var(--pl-border);
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 20px;
}

.mt-proyecto-testimonial p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--pl-gray);
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.mt-proyecto-testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mt-proyecto-testimonial__author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pl-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.mt-proyecto-testimonial__author-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--pl-ink);
}

.mt-proyecto-testimonial__author-info span {
    font-size: 14px;
    color: var(--pl-gray);
}

/* ============================================
   Contacto
   ============================================ */
.mt-proyecto-contact {
    background: linear-gradient(135deg, var(--pl-blue-dark) 0%, var(--pl-blue) 100%);
    color: #fff;
    padding: 80px 0;
}

.mt-proyecto-contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.mt-proyecto-contact__info h3 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 16px;
    color: #fff;
}

.mt-proyecto-contact__info p {
    font-size: 18px;
    color: #cfe0ff;
    margin: 0 0 32px;
    line-height: 1.6;
}

.mt-proyecto-contact__team {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mt-proyecto-contact__agent {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mt-proyecto-contact__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    color: var(--pl-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    overflow: hidden;
    flex-shrink: 0;
}

.mt-proyecto-contact__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.mt-proyecto-contact__agent h4 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.mt-proyecto-contact__agent span {
    font-size: 14px;
    color: #cfe0ff;
}

.mt-proyecto-contact__office {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mt-proyecto-contact__office h4 {
    font-size: 18px;
    margin: 0 0 12px;
    color: #fff;
}

.mt-proyecto-contact__office p {
    font-size: 16px;
    color: #e6eefc;
    margin: 0;
    line-height: 1.8;
}

.mt-proyecto-contact__form-container {
    background: #fff;
    padding: 40px;
    border-radius: var(--pl-radius);
    box-shadow: var(--pl-shadow);
    color: var(--pl-ink);
}

.mt-proyecto-contact__form-container .wa-simple-contact-wrapper {
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.mt-proyecto-contact__form-container .wa-simple-contact-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--pl-blue-dark);
    text-align: center;
}

.mt-proyecto-contact__form-container .wa-simple-contact-subtitle {
    font-size: 16px;
    color: var(--pl-gray);
    text-align: center;
    margin-bottom: 30px;
}

.mt-proyecto-contact__form-container .wa-contact-field-group {
    margin-bottom: 20px;
}

.mt-proyecto-contact__form-container label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--pl-ink);
}

.mt-proyecto-contact__form-container input[type="text"],
.mt-proyecto-contact__form-container input[type="email"],
.mt-proyecto-contact__form-container input[type="tel"],
.mt-proyecto-contact__form-container select,
.mt-proyecto-contact__form-container textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--pl-border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.mt-proyecto-contact__form-container input:focus,
.mt-proyecto-contact__form-container select:focus,
.mt-proyecto-contact__form-container textarea:focus {
    border-color: var(--pl-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 61, 165, 0.1);
}

.mt-proyecto-contact__form-container .wa-contact-phone-group {
    display: flex;
    gap: 12px;
}

.mt-proyecto-contact__form-container .wa-contact-phone-group select {
    width: 35%;
}

.mt-proyecto-contact__form-container .wa-contact-phone-group input {
    width: 65%;
}

.mt-proyecto-contact__form-container .wa-contact-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: var(--pl-red) !important;
    color: #fff;
    margin-top: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(225, 27, 34, 0.3);
}

.mt-proyecto-contact__form-container .wa-contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(225, 27, 34, 0.4);
}

.mt-proyecto-contact__form-container .wa-contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Estados de feedback del formulario (Form Builder del plugin) */
.mt-proyecto-contact__form-container .wa-contact-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    font-size: 15px;
    color: var(--pl-gray);
}

.mt-proyecto-contact__form-container .wa-contact-loading p {
    margin: 0;
}

.mt-proyecto-contact__form-container .wa-contact-spinner {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(0, 61, 165, 0.15);
    border-top-color: var(--pl-blue);
    border-radius: 50%;
    animation: mt-proyecto-spin 0.8s linear infinite;
}

@keyframes mt-proyecto-spin {
    to { transform: rotate(360deg); }
}

.mt-proyecto-contact__form-container .wa-contact-success {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.3);
    color: #15803d;
    font-size: 15px;
    line-height: 1.5;
}

.mt-proyecto-contact__form-container .wa-contact-error {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(225, 27, 34, 0.08);
    border: 1px solid rgba(225, 27, 34, 0.3);
    color: var(--pl-red);
    font-size: 15px;
    line-height: 1.5;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .mt-proyecto-location__grid,
    .mt-proyecto-contact__layout {
        grid-template-columns: 1fr;
    }

    .mt-proyecto-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .mt-proyecto-gallery__grid figure:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .mt-proyecto-gallery__grid {
        grid-template-columns: 1fr;
    }

    .mt-proyecto-gallery__grid figure:first-child {
        grid-column: span 1;
    }
}
