.course-coordinators .accordion-body {
    line-height: 2rem;
}
.coordinator-body-with-image {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.coordinator-body-with-image__img {
    max-width: 400px;
    width: 100%;
    flex-shrink: 0;
}
.coordinator-body-with-image__text {
    flex: 1;
    line-height: 2rem;
}
@media (max-width: 767px) {
    .coordinator-body-with-image {
        flex-direction: column;
    }
    .coordinator-body-with-image__img {
        max-width: 100%;
    }
}

/* Arquivo de cursos (/cursos/) */
.course-archive-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}
.course-archive-filter {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    max-width: 100%;
}
.course-archive-filter__label {
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}
.course-archive-filter__buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
}
@media (min-width: 992px) {
    .course-archive-filter__buttons {
        flex-wrap: wrap;
        overflow-x: visible;
        padding-bottom: 0;
    }
}
.course-archive-filter__btn {
    border: 1px solid #005688;
    background: transparent;
    color: #005688;
    border-radius: 20px;
    padding: 4px 16px;
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color .2s ease, color .2s ease;
}
.course-archive-filter__btn.is-active,
.course-archive-filter__btn:hover {
    background-color: #005688;
    color: #fff;
}
.course-archive-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
    transition: height .3s ease;
}
.course-card {
    width: 25%;
    padding: 12px;
    box-sizing: border-box;
    opacity: 1;
    transform: scale(1);
    transition: opacity .25s ease, transform .25s ease;
}
.course-card.is-leaving {
    opacity: 0;
    transform: scale(.92);
}
.course-card.is-hidden {
    display: none;
}
.course-card__link {
    display: block;
    height: 100%;
    border: 1px solid #e5e5e5;
    border-top: 4px solid #005688;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s ease, transform .2s ease;
      background: #005688;
}
.course-card__link:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    transform: translateY(-4px);
}
.course-card__image {
    height: 40px;
    overflow: hidden;
    background-color: #f1f1f1;
}
.course-card__image img,
.course-card__image picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}
.course-card__body {
    padding: 16px;
}
.course-card__title {
    font-size: 18px;
    margin-bottom: 8px;
    color: #f9ff00;
    text-transform: uppercase;
    font-weight: 900;
}
.course-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.course-card__tag {
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 12px;
    background: #f1f1f1;
    color: #333;
}
.course-card__tag--modalidade {
    background: #0391c9;
    color: #fff;
}
.course-archive-empty {
    text-align: center;
    padding: 40px 0;
}
@media (max-width: 991px) {
    .course-card {
        width: 50%;
    }
}
@media (max-width: 575px) {
    .course-card {
        width: 100%;
    }
}
.course-archive{
  transition: all 0.3s;
}
.post-type-archive-curso .page-highlight{
  background-size: auto;
  height:250px;
  padding-bottom:20px;