.grid__cards {
    max-width: 1412px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
}

.grid__nosotras {
    max-width: 1412px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: start;
}

a {
    text-decoration: none;
    color: inherit;
}

.subtitle {
    font-family: 'Voces', 'Open Sans', arial, sans-serif;
    color: #888;
}

/* img {
    width: 100%;
    border-radius: 0.5rem;
    padding: 0.25rem;
    transition: transform 0.2s cubic-bezier(0.51, 0.29, 1, 1);
} */

section article {
    background-color: #fff;
    margin-top: 25px;
    margin-bottom: 15px;
    border-radius: 0.5rem;
    padding: 0 0;
    padding-bottom: 0.25rem;
    /* cursor: pointer; */
    transition: box-shadow 0.3s ease;
}

.text-box {
    margin: 0 0.4rem;
}

.text-box-nosotras {
    margin: 12px 0.4rem;
}

section article:hover {
    box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.3);
}

.post {
    width: 90%;
    max-width: 600px;
}

.post:hover .projcard-img {
    transform: scale(1.05) /* rotate(1deg); */
}

.post:hover .projcard-bar {
    width: 70px;
}

section article h2,
section article p {
    margin: 1rem;
}

footer a:hover {
    color: cornflowerblue;
}

.input {
    display: none;
}

.projcard-bar {
    left: 13px;
    width: 60px;
    height: 5px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: #424242;
    transition: width 0.2s ease;
    position: relative;
}

.projcard {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 40px;
    border-radius: 10px;
    background-color: #fff;
    border: 2px solid #ddd;
    font-size: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 21px -12px rgba(0, 0, 0, .66);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.projcard-blue .projcard-bar {
    background-color: #2b2b2b;
}

.h2-titulo {
    position: relative;
    top: 10px;
}

.h2-titulo-nosotras {
    display: inline;
    position: relative;
    margin-right: 0.5rem;
}

.h2yWS-nosotras {
    margin-top: 1.5rem;
}

.img-container {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    position: relative;
    /* top: 8px; */
    width: 100%;
    height: 100px;
    /* margin: 8px; */
    /* border-radius: 0.5rem; */
    overflow: hidden;
}

.img-container__nosotras {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    position: relative;
    /* top: 8px; */
    width: 100%;
    height: auto;
    /* margin: 8px; */
    /* border-radius: 0.5rem; */
    overflow: hidden;
}

@media screen and (min-width: 1023px) {
.img-container__nosotras {
    height: 350px;
  }
}

@media screen and (max-width: 1350px) {
    .grid__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1000px) {
    .grid__cards {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid__nosotras{
        grid-template-columns: repeat(1, 1fr);
    }

}


/* --------- FAQs ----------- */

.faqs {
    background: var(--color-bg1);
}

section.faqs {
    padding-top: 1rem;
}

.faqs__container {
    display: grid;
    grid-template-columns: 1fr;
    /* gap: 1rem; */
}

.faq {
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    height: fit-content;
    background: white;
    cursor: pointer;
    justify-content: center;
}

.faq h4 {
    font-size: 1rem;
    line-height: 2.2;
    color: #390c5a;
    text-align: center;
}

.faq__icon {
    align-self: flex-start;
    /* font-size: 1.3rem; */
    font-weight: bolder;
}

.faq p {
    margin-top: 0.8rem;
    display: none;
}

.faq.open p {
    display: block;
}