/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* Remplazo de tailwind */
.mb-5 {
    margin-bottom: 1.25rem;
}

.mb-10 {
    margin-bottom: 2.5rem !important;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-x-4 {
    column-gap: 1rem;
}

.w-full {
    width: 100%;
}

.justify-center {
    justify-content: center;
}

.justify-start {
    justify-content: start;
}

.items-center {
    align-items: center;
}

.space-x-3 {
    column-gap: 0.75rem;
}

.p-5 {
    padding: 1.25rem;
}

.clear-padding {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 25px;
    padding-left: 30px;
}

@media (min-width: 578px) {
    .border {
        border-right: 2px solid #E1DADA !important;
        border-radius: 0px !important;
    }

    .space-x-3 {
        column-gap: 117px;
    }

}

@media (max-width: 578px) {
    .clear-padding {
        padding-top: 16px;
        padding-bottom: 16px;
        padding-right: 25px;
        padding-left: 16px;
    }
}

/* Estilos para el botón del dropdown */
.dropdown {
    position: relative !important;
    display: inline-block !important;
    width: auto;
    height: auto;
}

.dropdown-button {

    background-color: transparent;
    color: black;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 25px;
    font-size: 16px;
    font-weight: 400;
    font-family: Bitter;
    /* border: none; */
    cursor: pointer;
    /*  border-right: 1px solid #E1DADA; */
}

.clear-button {
    background-color: transparent;
    color: #9B103B;
    font-size: 16px;
    border: none;
    cursor: pointer;
    font-family: Bitter;
    width: auto;
    height: auto;
}


.dropdown-button:hover {
    background-color: transparent;
    color: black;
}



.dropdown-button:focus {
    outline: none;
    background-color: transparent;
    color: black;
}

.clear-button:focus {
    outline: none;
    background-color: transparent;
    color: #9B103B;
}

.clear-button:hover {
    background-color: transparent;
    color: #9B103B;
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    font-size: 16px;
    padding: 12px 16px;
    text-decoration: none !important;
    display: block;
    cursor: pointer;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.articles-container {
    margin: 0px !important;
}

.selected-filter {
    color: rgba(32, 31, 44, 0.8);
    font-style: italic;
    font-size: 14px;
}

.multiline-truncate {
    width: auto;
    height: 72px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: inherit;
}

/* Newspack */

.wpnbha article .entry-title {
    font-size: 1.2em;
}

.wpnbha .entry-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0.5em;
}

.wpnbha article .entry-meta {
    font-size: 0.8em;
}

.wpnbha article .avatar {
    height: 25px;
    width: 25px;
}

.wpnbha .post-thumbnail {
    margin: 0;
    margin-bottom: 0.25em;
}

.wpnbha .post-thumbnail img {
    height: auto;
    width: 100%;
}

.wpnbha .post-thumbnail figcaption {
    margin-bottom: 0.5em;
}

.wpnbha p {
    margin: 0.5em 0;
}

.wpnbha.ts-3 .entry-title {
    font-size: 1em;
}

.wpnbha.ts-3 article .newspack-post-subtitle,
.wpnbha.ts-3 article .entry-wrapper p,
.wpnbha.ts-3 article .entry-wrapper .more-link,
.wpnbha.ts-3 article .entry-meta {
    font-size: 0.8em;
}



/* animación loader */

.hidden {
    display: none;
}


.loader {
    width: 30px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #7c7c7c;
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}



