.share {
    margin: 0;
    padding: 30px 0;
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    gap: 20px
}

@media screen and (max-width: 767px) {
    .share {
        gap: 10px
    }
}

.share__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    color: #0c1724;
    transition: all .3s ease
}

.share__link svg {
    display: block
}

.share__link:hover {
    color: #fa9d24
}

.resource-search {
    position: relative;
    padding: 100px 0
}

@media screen and (max-width: 1024px) {
    .resource-search {
        padding: 80px 0
    }
}

@media screen and (max-width: 767px) {
    .resource-search {
        padding: 50px 0
    }
}

.resource-search__inner {
    max-width: 800px;
    margin: 0 auto
}

.resource-search__form-text {
    margin: 0 0 50px;
    font-size: 18px;
    line-height: 1.6;
    opacity: .9
}

@media screen and (max-width: 1024px) {
    .resource-search__form-text {
        margin: 0 0 30px;
        font-size: 16px
    }
}

.resource-search__form-group {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 30px;
    background-color: #f7f7f7;
    border-radius: 3px;
    overflow: hidden
}

@media screen and (max-width: 1024px) {
    .resource-search__form-group {
        padding: 10px 20px
    }
}

@media screen and (max-width: 767px) {
    .resource-search__form-group {
        padding: 10px
    }
}

.resource-search__form-icon {
    margin-right: 9px;
    color: #fa9d24
}

.resource-search__form-icon svg {
    display: block;
    width: 18px;
    height: 18px
}

.resource-search__form-input {
    display: block;
    width: 100%;
    padding: 12px 0;
    color: #0c1724;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    font-size: 18px;
    font-weight: normal;
    line-height: 26px
}

@media screen and (max-width: 1024px) {
    .resource-search__form-input {
        padding: 6px 0;
        font-size: 16px
    }
}

.resource-search__form-input:focus {
    outline: 0
}

.resource-search__submit {
    white-space: nowrap
}

@media screen and (max-width: 1024px) {
    .resource-search__submit {
        padding: 9px 30px
    }
}

.resource-search__row {
    margin: 100px 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    gap: 30px;
    max-width: 900px;
    margin: 100px auto;
}

@media screen and (max-width: 1024px) {
    .resource-search__row {
        margin-top: 80px;
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (max-width: 767px) {
    .resource-search__row {
        margin-top: 50px
    }
}

.resource-search__box-image {
    margin: 0 0 30px
}

@media screen and (max-width: 1024px) {
    .resource-search__box-image {
        margin: 0 0 15px
    }
}

.resource-search__box-image img {
    display: block;
    max-width: 100%
}

@media screen and (max-width: 1024px) {
    .resource-search__box-image img {
        margin: 0 auto
    }
}

.resource-search__box-title {
    display: block;
    color: #0c1724;
    font-size: 26px;
    font-weight: bold;
    transition: all .3s ease
}

@media screen and (max-width: 1024px) {
    .resource-search__box-title {
        font-size: 20px;
        text-align: center
    }
}

@media screen and (max-width: 767px) {
    .resource-search__box-title {
        font-size: 13px
    }
}

.resource-search__box-title svg {
    position: relative;
    display: inline-block;
    top: 0;
    margin-left: 8px;
    color: #fa9d24;
    transition: all .3s ease
}

@media screen and (max-width: 767px) {
    .resource-search__box-title svg {
        width: 15px;
        height: 15px;
        margin-left: 3px
    }
}

.resource-search__box-title:hover {
    color: #fa9d24
}

.resource-search__box-title:hover svg {
    transform: translateX(8px)
}

.resource-search__more {
    display: flex;
    justify-content: center;
    margin: 50px 0 0
}

.resource-highlights {
    position: relative;
    padding: 100px 0;
    overflow: hidden
}

@media screen and (max-width: 1024px) {
    .resource-highlights {
        padding: 80px 0
    }
}

@media screen and (max-width: 767px) {
    .resource-highlights {
        padding: 50px 0
    }
}

.resource-highlights__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3%;
    gap: 3%
}

@media screen and (max-width: 1024px) {
    .resource-highlights__row {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (max-width: 767px) {
    .resource-highlights__row {
        grid-gap: 20px;
        gap: 20px;
        grid-template-columns: repeat(1, 1fr)
    }
}

.resource-highlights__title {
    margin: 0 0 30px;
    font-size: 40px;
    font-weight: bold
}

@media screen and (max-width: 1024px) {
    .resource-highlights__title {
        font-size: 32px
    }
}

.highlights-card {
    position: relative;
    display: block;
    padding-bottom: 60px;
    background-color: #fff;
    box-shadow: 10px 10px 15px rgba(171, 171, 171, .2);
    border-radius: 15px
}

@media screen and (max-width: 767px) {
    .highlights-card {
        padding-bottom: 40px
    }
}

@media screen and (min-width: 1025px) {
    .highlights-card:hover .highlights-card__content {
        transform: translateY(-30px)
    }
}

@media screen and (min-width: 1025px) {
    .highlights-card:hover .highlights-card__summary {
        opacity: .9
    }
}

.highlights-card:hover .highlights-card__title {
    color: #fa9d24
}

.highlights-card__image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 30px;
    background-color: #f4f9ff
}

@media screen and (max-width: 767px) {
    .highlights-card__image {
        padding: 20px
    }
}

.highlights-card__image img {
    display: block;
    height: 182px;
    -o-object-fit: contain;
    object-fit: contain
}

.highlights-card__content {
    min-height: 250px;
    padding: 29px 24px;
    background-color: #fff;
    transform: translateY(0);
    transition: all .3s ease
}

@media screen and (max-width: 767px) {
    .highlights-card__content {
        padding: 25px 20px;
        min-height: 50px
    }
}

.highlights-card__date {
    color: gray;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase
}

.highlights-card__title {
    /* margin: 0;
    padding: 15px 0;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    transition: all .3s ease */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 90px;
    font-size: 24px;
    font-weight: bold;
    /* font-weight: normal; */
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis
}

@media screen and (max-width: 1024px) {
    .highlights-card__title {
        font-size: 20px
    }
}

@media screen and (max-width: 767px) {
    .highlights-card__title {
        padding: 10px 0;
        font-size: 16px
    }
}

.highlights-card__summary {
    /* font-size: 16px;
    line-height: 1.6;
    opacity: .9;
    transition: all .3s ease */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 90px;
    font-size: 18px;
    font-weight: normal;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis
}

@media screen and (min-width: 1025px) {
    .highlights-card__summary {
        opacity: 0
    }
}

@media screen and (max-width: 767px) {
    .highlights-card__summary {
        font-size: 14px;
        height: auto;
        /* font-size: 16px; */
        line-height: 22px
    }
}

.highlights-card__tags {
    /*position: absolute;*/
    left: 20px;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center
}

@media screen and (max-width: 767px) {
    .highlights-card__tags {
        bottom: 20px
    }
}

.resource-tags {
    display: flex;
    flex-flow: row wrap;
    gap: 10px
}

.resource-tags span {
    display: inline-block;
    padding: 6px 12px;
    color: #667fbc;
    border: 2px solid #ebebf7;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    /*text-transform: uppercase*/
}

@media screen and (max-width: 767px) {
    .resource-tags span {
        font-size: 10px;
        padding: 4px 10px
    }
}

.resources__title {
    margin: 0 0 30px;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2
}

@media screen and (max-width: 1024px) {
    .resources__title {
        margin: 0 0 20px;
        font-size: 32px
    }
}

@media screen and (max-width: 767px) {
    .resources__title {
        font-size: 26px
    }
}

.resources__grid-top {
    display: flex;
    justify-content: flex-end;
    color: gray;
    margin: 0 0 15px;
    padding: 6px 0;
    font-size: 12px;
    font-weight: bold;
    line-height: 18px;
    text-transform: uppercase
}

.resources__item {
    margin-top: 30px
}

@media screen and (max-width: 767px) {
    .resources__item {
        margin-top: 20px
    }
}

.resources__item:first-child {
    margin-top: 0
}

.resources__grid-bottom {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0 0;
    padding: 0 15px
}

.resources__grid-bottom>div {
    padding: 0 15px
}

.resource-card {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    background-color: #fff;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, .2);
    border-radius: 10px;
    overflow: hidden
}

.resource-card__image {
    width: 160px
}

@media screen and (max-width: 767px) {
    .resource-card__image {
        width: 100%
    }
}

.resource-card__content {
    width: calc(100% - 160px);
    padding: 20px
}

@media screen and (max-width: 767px) {
    .resource-card__content {
        width: 100%
    }
}

.resource-card__picture {
    /*display: block;*/
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.resource-card__picture img {
    display: block;
    width: 100%
}

.resource-card__date {
    color: gray;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase
}

@media screen and (max-width: 767px) {
    .resource-card__date {
        font-size: 11px
    }
}

.resource-card__title {
    margin: 0;
    padding: 10px 0;
    font-size: 24px;
    font-weight: bold
}

@media screen and (max-width: 767px) {
    .resource-card__title {
        padding: 10px 0;
        font-size: 16px
    }
}

.resource-card__title a {
    position: relative;
    display: inline-block;
    color: #0c1724;
    transition: all .3s ease
}

.resource-card__title a::after {
    content: "";
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fa9d24;
    transition: all .3s ease
}

.resource-card__title a:hover {
    color: #fa9d24
}

.resource-card__title a:hover::after {
    width: 100%
}

@media screen and (max-width: 1024px) {
    .resource-card__summary {
        font-size: 14px
    }
}

.resource-card .resource-tags {
    margin-top: 15px
}

.pagination-perpage {
    display: flex;
    align-items: center
}

@media screen and (max-width: 767px) {
    .pagination-perpage {
        width: 100%;
        justify-content: center;
        margin-bottom: 20px
    }
}

.pagination-perpage__select {
    cursor: pointer;
    width: 70px;
    height: 34px;
    padding: 3px 5px 4px;
    border: 2px solid rgba(250, 157, 36, .5);
    border-radius: 5px;
    font-size: 13px;
    line-height: 18px;
    font-weight: bold
}

.pagination-perpage__text {
    margin-left: 10px;
    color: gray;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .5px
}

.pagination-text {
    padding: 5px 0;
    color: gray;
    font-size: 12px;
    font-weight: bold;
    line-height: 18px;
    letter-spacing: .5px
}

@media screen and (max-width: 767px) {
    .pagination-text {
        width: 100%;
        margin-top: 20px;
        text-align: center
    }
}

.resource-detail {
    padding: 80px 0
}

@media screen and (max-width: 767px) {
    .resource-detail {
        padding: 50px 0
    }
}

.resource-detail+.resource-highlights {
    background-color: #f7f7f7
}

.resource-detail__wrap {
    display: flex;
    flex-flow: row wrap
}

.resource-detail__media {
    width: 100%
}

@media screen and (min-width: 768px) {
    .resource-detail__media {
        width: 30%
    }
}

@media screen and (min-width: 1025px) {
    .resource-detail__media {
        width: 25%
    }
}

.resource-detail__content {
    width: 100%;
    padding-left: 0;
    padding-top: 20px
}

@media screen and (min-width: 768px) {
    .resource-detail__content {
        width: 70%;
        padding-left: 5%;
        padding-top: 30px
    }
}

@media screen and (min-width: 1025px) {
    .resource-detail__content {
        width: 75%;
        padding-left: 8%
    }
}

.resource-detail__picture {
    position: relative;
    display: block;
    box-shadow: 3px 3px 7px rgba(11, 11, 11, .5)
}

.resource-detail__picture img {
    display: block;
    width: 100%
}

.resource-detail__heading {
    margin: 0 0 15px;
    color: #ababab;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase
}

@media screen and (max-width: 1024px) {
    .resource-detail__heading {
        font-size: 16px
    }
}

.resource-information {
    margin: 30px 0 0;
    padding: 20px 0 0;
    border-top: 2px solid #ebebeb
}

@media screen and (max-width: 767px) {
    .resource-information {
        margin: 20px 0 0;
        padding: 15px 0 0
    }
}

.resource-information__text {
    margin: 0 0 15px;
    color: #0c1724;
    font-size: 18px;
    line-height: 1.3
}

@media screen and (max-width: 1024px) {
    .resource-information__text {
        font-size: 16px
    }
}

@media screen and (max-width: 767px) {
    .resource-information__text {
        font-size: 14px
    }
}

.resource-types {
    display: flex;
    flex-flow: row wrap;
    gap: 15px;
    margin: 0 0 50px
}

@media screen and (max-width: 767px) {
    .resource-types {
        margin: 0 0 30px
    }
}

.resource-types span {
    display: flex;
    padding: 10px 30px;
    color: var(--type-color, #fff);
    background-color: var(--type-bg, #fa9d24);
    border-radius: 50px;
    font-size: 20px;
    font-weight: normal;
    line-height: 30px;
    text-transform: uppercase
}

@media screen and (max-width: 767px) {
    .resource-types span {
        padding: 6px 30px;
        font-size: 16px
    }
}

.resource-description {
    padding: 20px 0;
    border-top: 2px solid #ebebeb;
    font-size: 18px
}

@media screen and (max-width: 1024px) {
    .resource-description {
        font-size: 16px
    }
}

@media screen and (max-width: 767px) {
    .resource-description {
        font-size: 14px
    }
}

.resource-description p {
    margin: 0 0 16px
}

.resource-description p:last-child {
    margin: 0
}

.resource-collapse {
    margin-top: 30px
}

@media screen and (max-width: 767px) {
    .resource-collapse {
        margin-top: 20px
    }
}

.resource-collapse__item {
    margin-top: 20px;
    border-bottom: 2px solid #ebebeb
}

.resource-collapse__item.open>.resource-collapse__content {
    display: block
}

.resource-collapse__item.open>.resource-collapse__toggle {
    color: #0c1724
}

.resource-collapse__item.open>.resource-collapse__toggle::before {
    background-color: #0c1724
}

.resource-collapse__item.open>.resource-collapse__toggle::after {
    display: none
}

.resource-collapse__content {
    display: none
}

.resource-collapse__toggle {
    cursor: pointer;
    position: relative;
    padding: 10px 0;
    padding-left: 30px;
    color: #fa9d24;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase
}

@media screen and (max-width: 767px) {
    .resource-collapse__toggle {
        padding-left: 24px;
        font-size: 14px
    }
}

.resource-collapse__toggle::before,
.resource-collapse__toggle::after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 14px;
    height: 2px;
    margin-top: -2px;
    background-color: #fa9d24
}

@media screen and (max-width: 767px) {

    .resource-collapse__toggle::before,
    .resource-collapse__toggle::after {
        width: 12px;
        margin-top: -1px
    }
}

.resource-collapse__toggle::after {
    left: 6px;
    width: 2px;
    height: 14px;
    margin-top: -8px
}

@media screen and (max-width: 767px) {
    .resource-collapse__toggle::after {
        left: 5px;
        height: 12px;
        margin-top: -6px
    }
}

.resource-collapse__list {
    margin: 0;
    padding: 5px 0 20px;
    list-style: none
}

.resource-collapse__list li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 0
}

.resource-collapse__list li svg {
    position: relative;
    top: -1px;
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 20px;
    color: #fa9d24
}

@media screen and (max-width: 767px) {
    .resource-collapse__list li svg {
        margin-right: 15px
    }
}

.resource-collapse__link {
    position: relative;
    display: inline-block;
    color: #fa9d24;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none
}

@media screen and (max-width: 767px) {
    .resource-collapse__link {
        font-size: 16px
    }
}

.resource-collapse__link::after {
    content: "";
    pointer-events: none;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 0;
    height: 2px;
    background-color: #fa9d24;
    transition: all .3s ease
}

.resource-collapse__link:hover::after {
    width: 100%
}