/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 17 2026 | 04:53:46 */
/* =========================================================
   DIÓCESIS DE PASTO
   Buscador de parroquias
   ========================================================= */

:root {
    --dp-orange: #f58220;
    --dp-dark: #2f3035;
    --dp-gray: #737373;
    --dp-light-gray: #f6f6f6;
    --dp-border: #e7e7e7;
}


/* =========================================================
   CONTENEDOR
   ========================================================= */

.dp-parish-search {
    width: 100%;
    max-width: 820px;

    margin: 45px auto 60px;

    box-sizing: border-box;
}


/* =========================================================
   CAMPO DE BÚSQUEDA
   ========================================================= */

.dp-parish-search__box {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    height: 58px;

    background: #fff;

    border: 1px solid var(--dp-border);
    border-radius: 6px;

    box-shadow: 0 4px 18px rgba(0, 0, 0, .04);

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


/* Estado activo */

.dp-parish-search__box:focus-within {
    border-color: var(--dp-orange);

    box-shadow:
        0 0 0 3px rgba(245, 130, 32, .08),
        0 5px 20px rgba(0, 0, 0, .05);
}


/* Icono */

.dp-parish-search__icon {
    flex: 0 0 auto;

    width: 21px;
    height: 21px;

    margin-left: 20px;

    fill: none;
    stroke: #9a9a9a;
    stroke-width: 1.7;
}


/* Input */

.dp-parish-search__input {
    flex: 1;

    height: 100%;

    padding: 0 15px;

    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;

    box-shadow: none !important;

    color: var(--dp-dark);

    font-family: inherit;
    font-size: 15px;

    box-sizing: border-box;
}

.dp-parish-search__input::placeholder {
    color: #a4a4a4;
}


/* Botón limpiar */

.dp-parish-search__clear {
    display: none;

    width: 42px;
    height: 42px;

    margin-right: 7px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: transparent;

    color: #999;

    font-family: Arial, sans-serif;
    font-size: 25px;
    line-height: 1;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease;
}

.dp-parish-search__clear:hover {
    background: #f5f5f5;
    color: var(--dp-orange);
}

.dp-parish-search__clear.is-visible {
    display: block;
}


/* Texto inferior */

.dp-parish-search__help {
    margin: 9px 0 0;

    color: #999;

    font-size: 12px;
    text-align: left;
}


/* =========================================================
   RESULTADOS
   ========================================================= */

.dp-parish-search__results {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dp-parish-search__results.is-visible {
    display: grid;
}

.dp-parish-search__status {
    grid-column: 1 / -1;

    margin-bottom: -4px;

    color: #999;
    font-size: 12px;
}

/* =========================================================
   RESULTADOS MÁS COMPACTOS
   ========================================================= */

.dp-parish-search__results {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

/* Tarjeta */
.dp-parish-card {
    width: 100%;
}

/* Imagen */
.dp-parish-card__image {
    aspect-ratio: 3 / 1;
}

/* Área de información */
.dp-parish-card__body {
    padding: 11px 36px 12px 14px;
}

/* Línea naranja */
.dp-parish-card__body::before {
    width: 28px;
    margin-bottom: 7px;
}

/* Nombre */
.dp-parish-card__title {
    font-size: 14px !important;
}

/* Vicaría */
.dp-parish-card__meta {
    font-size: 11px;
}

/* Flecha */
.dp-parish-card__arrow {
    right: 13px;
    bottom: 13px;
    font-size: 17px;
}

/* =========================================================
   TARJETA DE PARROQUIA
   ========================================================= */

.dp-parish-card {
    position: relative;

    display: block;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--dp-border);
    border-radius: 8px;

    box-shadow: 0 4px 14px rgba(0, 0, 0, .055);

    text-decoration: none !important;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.dp-parish-card:hover {
    transform: translateY(-3px);

    border-color: rgba(245, 130, 32, .35);

    box-shadow: 0 9px 25px rgba(0, 0, 0, .10);

    text-decoration: none !important;
}


/* Imagen */

.dp-parish-card__image {
    position: relative;

    width: 100%;
    aspect-ratio: 3 / 1;

    overflow: hidden;

    background: #f5f5f5;
}

.dp-parish-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform .35s ease;
}

.dp-parish-card:hover .dp-parish-card__image img {
    transform: scale(1.025);
}


/* Información */

.dp-parish-card__body {
    position: relative;

    padding: 15px 42px 16px 17px;
}


/* pequeña línea naranja */

.dp-parish-card__body::before {
    content: "";

    display: block;

    width: 34px;
    height: 2px;

    margin-bottom: 10px;

    background: var(--dp-orange);
}


/* Título */

.dp-parish-card__title {
    margin: 0 0 4px !important;

    color: var(--dp-dark) !important;

    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;

    hyphens: none !important;
    word-break: normal !important;
}


/* Vicaría / ubicación */

.dp-parish-card__meta {
    margin: 0;

    color: #8a8a8a;

    font-size: 12px;
    line-height: 1.4;
}


/* Flecha */

.dp-parish-card__arrow {
    position: absolute;

    right: 16px;
    bottom: 18px;

    color: var(--dp-orange);

    font-size: 20px;

    transition: transform .2s ease;
}

.dp-parish-card:hover .dp-parish-card__arrow {
    transform: translateX(3px);
}


/* =========================================================
   SIN RESULTADOS
   ========================================================= */

.dp-parish-search__empty {
    grid-column: 1 / -1;

    padding: 38px 25px;

    background: var(--dp-light-gray);

    border-radius: 8px;

    color: #777;

    text-align: center;
}

.dp-parish-search__empty strong {
    display: block;

    margin-bottom: 5px;

    color: var(--dp-dark);

    font-size: 16px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .dp-parish-search {
        max-width: 680px;
        padding: 0 20px;
    }

}


@media (max-width: 650px) {

    .dp-parish-search {
        margin-top: 30px;
    }

    .dp-parish-search__results {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .dp-parish-search__box {
        height: 54px;
    }

    .dp-parish-card__title {
        font-size: 15px !important;
    }

}