
ul, ol {
    padding: 0 2rem;
}

.section-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section {
    display: flex;
    width: 75%;
    height: 70%;
}

.featured-resource-section {
    margin-top: 6rem;
    height: 450px;
    justify-content: space-between;
}

.featured-img-container {
    width: 40%;
}

.featured-text-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 60%;
    height: 75%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.featured-small-title {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    /* identical to box height */
    color: #000000;
}

.featured-paragraph {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150.5%;
    /* or 27px */

    letter-spacing: -0.019em;
    color: var(--clr-text-gray-2);
}

.learn-more-container {
    width: 100%;
    display: flex;
}

.more-text-container {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    /* identical to box height */
    
    color: #FFB82F;
    
}

.more-text {
    margin-right: 1rem;
}

.section-title-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
}

.our-guides-section {
   min-height: 613px;
   flex-direction: column;
   padding-bottom: 8rem;

}

.guides-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.guide-item {
    height: 320px;
    max-height: 90%;
    min-width: 367.34px;
    width: 100%;
    display: flex;
    background: var(--clr-white);
    box-shadow: 0px 7px 10px rgba(196, 207, 230, 0.2);
    border-radius: 10px;
    margin: 0.25rem;
}

.guide-icon-wrapper {
    padding: 3rem 1.5rem;
    background-color: var(--clr-primary-4);
    border-radius: 10px 0 0 10px;
}

.guide-text-container {
    width: 100%;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.guide-title-container, .guide-paragraph-container {
    width: 100%;
}

.guide-title, .guide-paragraph {
    display: -webkit-box;
    max-width: 300px;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.guide-title {
    -webkit-line-clamp: 2;
}

.guide-paragraph {
    -webkit-line-clamp: 3;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    /* or 24px */
    
    letter-spacing: -0.019em;

    color: var(--clr-text-gray-2);
}

.view-more-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.view-more-btn {
    width: 216px;
    height: 50px;
}

.view-more-btn:hover {
    color: #ffffff;
    background-color: #f89a02;
}

.faq-section, .recommended-section {
    min-height: 615px;
    padding-bottom: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faqs-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.padding-title {
    padding-top: 3rem;
}

.faq-item {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--clr-primary-4);
    box-shadow: 0px 7px 10px rgba(196, 207, 230, 0.11);
    border-radius: 5px 5px 0 0;
    cursor: pointer;
}

.faq-question-container {
    flex: 1;
}

.faq-question, .faq-answer {
    display: -webkit-box;
    max-width:100%;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    font-style: normal;
}

.faq-question {
    -webkit-line-clamp: 1;
    font-size: 18px;
    line-height: 150%;
    /* or 27px */
    color: var(--clr-text-gray-1);
}

.faq-answer {
    margin-top: .5rem;
    -webkit-line-clamp: 3;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.019em;
    color: var(--clr-text-gray-2);
}

.faq-more-container {
    margin-bottom: .5rem;
    display: flex;
    justify-content: flex-end;
}

.faq-more-link {
    text-decoration: none;
    font-size: .875rem;
    color: #FFB82F;
}

.faq-more-link:hover {
    color: #f89a02;
}

.active{
    background-color: #b7d1f7;
}

.faq-expand-wrapper {
    margin-left: 1rem;
}

.active .faq-expand-wrapper img {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.faq-expand-wrapper img {
    transition-duration: 250ms;
    transition-property: transform;
}


.accordion {
  outline: none;
  transition: 0.4s;
}

.panel {
    padding: 0 1rem;
    margin-bottom: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 250ms ease-out;
    border: 2px solid #D3E6FC;
    border-top: none;
    border-bottom: none;
}

.panel-border {
    border-bottom: 2px solid #D3E6FC; 
}

.search-result-section {
    margin-top: 4rem;
    min-height: 615px;
    flex-direction: column;
}

.result-text-container {
    margin-bottom: 4rem;
}

.result-text {
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    /* identical to box height */
    color: var(--clr-text-gray-1);
}

.recommended-container {
    width: 100%;
    margin-top: 2rem;
}

.admin-btns-container {
    margin: 2rem;
    width: 75%;
    height: 100px;
    display: flex;
    align-items: center;
}

.back-container {
    height: 100%;
    flex: 1;
    display: flex;
    align-items: center;
}

.back-btn-container {
    display: flex;
    align-items: center;
    height: 100%;
    width: 10%;
}

.actions-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 30%;
}

.edit-btn-container, .delete-btn-container {
    display: flex;
    align-items: center;
    height: 100%;
    width: 30%;
}

.admin-btn {
    width: 100%;
    height: 50%;
}

.btn-outline{
    background-color: var(--clr-white);
    color: var(--clr-accent-1);
    border: 1px solid var(--clr-accent-1);
}

.delete-btn {
    background-color: var(--clr-red);
}

.article-section {
    min-height: 615px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.empty-text-container {
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
