/* ==========================================================================
   Conta.Tudo Podcast
   ========================================================================== */

/* ---------- Remove underline de todos os links ---------- */
.page-template-conta-tudo a,
.single-podcast a {
    text-decoration: none !important;
}

/* ---------- Reset body padding do tema ---------- */
body.page-template-conta-tudo,
body.page-template-conta-tudo.admin-bar,
body.single-podcast,
body.single-podcast.admin-bar {
    padding-top: 0 !important;
}

@media (min-width: 992px) {
    body.page-template-conta-tudo,
    body.single-podcast {
        padding-top: 0 !important;
    }
}

/* ---------- Variables ---------- */
:root {
    --ct-magenta: #D80073;
    --ct-purple: #55449D;
    --ct-pink-light: #FFE5F3;
    --ct-gray-light: #F5F5F5;
    --ct-gray-border: #FDE6F1;
    --ct-white: #FFFFFF;
    --ct-dark: #1A1A1A;
    --ct-font-family: var(--NunitoSans);
}

/* ---------- Header ---------- */
.mt-ct-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 12px;
    background: var(--ct-white);
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.mt-ct-header__logo img {
    height: 40px;
    width: auto;
}

.mt-ct-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.mt-ct-header__nav .menu {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.mt-ct-header__nav .menu li {
    position: relative;
}

.mt-ct-header__nav .menu li a {
    color: var(--ct-dark);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--ct-font-family);
}

.mt-ct-header__nav .menu li a:hover {
    color: var(--ct-magenta);
}

/* Dropdown */
.mt-ct-header__nav .menu li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--ct-white);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
    list-style: none;
}

.mt-ct-header__nav .menu li:hover .sub-menu {
    display: block;
}

.mt-ct-header__nav .menu li .sub-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 13px;
}

.mt-ct-header__btn {
    display: inline-block;
    background: var(--ct-magenta);
    color: var(--ct-white);
    padding: 6px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-family: var(--ct-font-family);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.mt-ct-header__btn:hover {
    background: #A01048;
    color: var(--ct-white);
}

.mt-ct-header__btn:disabled {
    background: #ccc;
    cursor: default;
}

/* Mobile header */
.mt-ct-header__mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mt-ct-header__btn--mobile-inline {
    display: none;
}

/* iOS tooltip — âncora no header (position: relative já definido) */
.mt-ct-pwa-ios-tip {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 12px;
    background: #1a1a1a;
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
    font-family: var(--ct-font-family);
    width: 240px;
    z-index: 500;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.mt-ct-pwa-ios-tip::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 24px;
    width: 12px;
    height: 12px;
    background: #1a1a1a;
    transform: rotate(45deg);
}

.mt-ct-pwa-ios-tip--visible {
    display: block;
}

.mt-ct-pwa-ios-tip p {
    margin: 0;
    color: #fff;
}

.mt-ct-pwa-ios-tip svg {
    vertical-align: middle;
    display: inline;
}

/* ---------- Hero Section ---------- */
.mt-ct-hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 650px;
    padding: 80px 24px 120px;
    position: relative;
    overflow: hidden;
}

.mt-ct-hero__container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.mt-ct-hero__content {
    max-width: 500px;
    color: var(--ct-white);
}

.mt-ct-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ct-purple);
    color: var(--ct-white);
    padding: 6px 16px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-family: var(--ct-font-family);
}

.mt-ct-hero__title {
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 16px;
    font-family: var(--ct-font-family);
    color: var(--ct-white);
}

.mt-ct-hero__title strong {
    font-weight: 700;
}

.mt-ct-hero__subtitle {
    font-size: 21px;
    line-height: 1.6;
    margin: 0 0 32px;
    font-family: var(--ct-font-family);
    color: var(--ct-white);
}

.mt-ct-hero__cta {
    display: inline-block;
    background: var(--ct-dark);
    color: var(--ct-white);
    padding: 14px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    font-family: var(--ct-font-family);
    transition: background 0.2s;
}

.mt-ct-hero__cta:hover {
    background: #333;
    color: var(--ct-white);
}

.mt-ct-hero__visual {
    position: relative;
    flex-shrink: 0;
}

.mt-ct-hero__image {
    max-width: 350px;
    height: auto;
}

.mt-ct-hero__decorative {
    position: absolute;
    top: 150px;
    right: 270px;
    width: 200px;
    height: auto;
    pointer-events: none;
}

/* ---------- Player Embed ---------- */
.mt-ct-player {
    max-width: 600px;
    margin: -80px auto 0;
    position: relative;
    z-index: 10;
    background: var(--ct-dark);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.mt-ct-player__label {
    text-align: center;
    color: var(--ct-white);
    padding: 24px 24px 8px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--ct-font-family);
}

.mt-ct-player__embed {
    padding: 0 24px 24px;
}

.mt-ct-player__embed iframe {
    width: 100%;
    border-radius: 8px;
}

/* ---------- Episodios Section ---------- */
.mt-ct-episodios {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px 60px;
}

.mt-ct-episodios__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.mt-ct-episodios__title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mt-ct-episodios__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: var(--ct-dark);
}

.mt-ct-episodios__filters {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.mt-ct-episodios__search {
    position: relative;
    margin-left: 45px;
}

.mt-ct-episodios__search-input {
    padding: 8px 16px 8px 40px;
    border: 2px solid #CCCCCC;
    border-radius: 12px;
    font-size: 14px;
    width: 220px;
    outline: none;
    transition: border-color 0.2s;
    color: #1A1A1A;
}

.mt-ct-episodios__search-input::placeholder {
    color: #1A1A1A;
}

.mt-ct-episodios__search-input:focus {
    border-color: var(--ct-magenta);
}

.mt-ct-episodios__search-icon {
    position: absolute;
    left: 14px;
    top: 55%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
    pointer-events: none;
}

.mt-ct-episodios__pill {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-family: var(--ct-font-family);
    color: var(--ct-magenta);
    text-decoration: none;
    transition: all 0.2s;
    background: var(--ct-pink-light);
}

.mt-ct-episodios__pill:hover {
    border-color: var(--ct-magenta);
    color: var(--ct-magenta);
}

.mt-ct-episodios__pill--active {
    background: var(--ct-magenta);
    color: var(--ct-white);
    border-color: var(--ct-magenta);
    font-weight: 700;
}

.mt-ct-episodios__pill--active:hover {
    color: var(--ct-white);
}

/* ---------- Card Episodio ---------- */
.mt-ct-card {
    display: flex;
    gap: 20px;
    padding: 16px;
    border: 1px solid var(--ct-gray-border);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: box-shadow 0.2s;
}

.mt-ct-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.mt-ct-card__thumbnail {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.mt-ct-card__thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.mt-ct-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mt-ct-card__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: #FDE6F1;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
}

.mt-ct-card__play-btn svg {
    margin-left: 2px;
}

.mt-ct-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mt-ct-card__tagline {
    display: inline-block;
    background: var(--ct-pink-light);
    color: var(--ct-magenta);
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    width: fit-content;
    font-family: var(--ct-font-family);
}

.mt-ct-card__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    font-family: var(--ct-font-family);
    color: var(--ct-dark);
}

.mt-ct-card__title a {
    color: inherit;
    text-decoration: none;
}

.mt-ct-card__title a:hover {
    color: var(--ct-magenta);
}

.mt-ct-card__excerpt {
    font-size: 13px;
    color: #4D4D4D;
    margin: 0 0 12px;
    line-height: 1.5;
    font-family: var(--ct-font-family);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
}

.mt-ct-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-family: var(--ct-font-family);
}

.mt-ct-card__meta-info {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--ct-dark);
}

.mt-ct-card__meta-info span {
    display: flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid var(--ct-dark);
}

.mt-ct-card__link {
    color: var(--ct-magenta);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.mt-ct-card__link:hover {
    text-decoration: underline;
}

/* ---------- Paginacao ---------- */
.mt-ct-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.mt-ct-pagination a,
.mt-ct-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--ct-gray-border);
    font-size: 14px;
    font-family: var(--ct-font-family);
    color: var(--ct-dark);
    text-decoration: none;
    transition: all 0.2s;
}

.mt-ct-pagination a:hover {
    border-color: var(--ct-magenta);
    color: var(--ct-magenta);
}

.mt-ct-pagination .current {
    background: var(--ct-magenta);
    color: var(--ct-white);
    border-color: var(--ct-magenta);
}

.mt-ct-pagination__dots {
    border: none !important;
    background: none;
    color: var(--ct-dark);
    font-weight: 600;
    pointer-events: none;
}

.mt-ct-pagination__next {
    margin-left: 8px;
}

/* ---------- Single: Episodio ---------- */
.mt-ct-single {
    background: linear-gradient(298.68deg, #D80073 -9.25%, #770E46 63.34%);
    padding: 40px 24px;
}

.mt-ct-single__heading {
    max-width: 1280px;
    margin: 0 auto 32px;
}

.mt-ct-single__content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 48px;
    align-items: start;
}

.mt-ct-single__left {
    position: relative;
    color: var(--ct-white);
}

.mt-ct-single__tagline {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: var(--ct-white);
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: var(--ct-font-family);
}

.mt-ct-single__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    font-family: var(--ct-font-family);
    color: var(--ct-white);
    line-height: 1.3;
}

.mt-ct-single__player {
    margin: 0 0 20px;
}

.mt-ct-single__player iframe {
    width: 100%;
    border-radius: 12px;
}

.mt-ct-single__below-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mt-ct-single__share-btn {
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--ct-white);
    font-size: 13px;
    font-family: var(--ct-font-family);
}

.mt-ct-single__share-copied {
    display: none;
}

.mt-ct-single__share-btn.copied .mt-ct-single__share-text {
    display: none;
}

.mt-ct-single__share-btn.copied .mt-ct-single__share-copied {
    display: inline;
}

.mt-ct-single__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--ct-white);
    font-family: var(--ct-font-family);
}

.mt-ct-single__meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid var(--ct-white);
    padding-bottom: 4px;
}

.mt-ct-single__right {
    font-family: var(--ct-font-family);
    padding-top: 8px;
    color: var(--ct-white);
}

.mt-ct-single__description {
    line-height: 1.8;
    color: var(--ct-white);
}

.mt-ct-single__platforms {
    margin-top: 32px;
}

.mt-ct-single__platforms h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--ct-white);
}

.mt-ct-single__platform-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--ct-white);
    border-radius: 8px;
    text-decoration: none;
    color: var(--ct-white);
    font-size: 14px;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: border-color 0.2s;
}

.mt-ct-single__platform-link:hover {
    border-color: var(--ct-white);
    color: var(--ct-magenta);
}

/* ---------- Relacionados ---------- */
.mt-ct-related {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
}

.mt-ct-related__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.mt-ct-related__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    font-family: var(--ct-font-family);
    color: var(--ct-dark);
}

.mt-ct-related__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 12px;
    color: var(--ct-white);
    text-decoration: none;
    background: var(--ct-dark);
    font-size: 14px;
    font-weight: 800;
    font-family: var(--ct-font-family);
    transition: all 0.2s;
}

.mt-ct-related__btn:hover {
    background: var(--ct-dark);
    color: var(--ct-white);
}

.mt-ct-related__btn--mobile {
    display: none;
}

.mt-ct-related__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card vertical para relacionados */
.mt-ct-card--vertical {
    flex-direction: column;
    max-width: 400px;
    gap: 12px;
}

.mt-ct-card--vertical .mt-ct-card__thumbnail {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    position: relative;
    border-radius: 12px;
}


/* ---------- Baixe o Aplicativo ---------- */
.mt-ct-download {
    background: #1A1A1A;
    overflow: hidden;
}

.mt-ct-download__container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 480px;
}

.mt-ct-download__image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 40px 0;
}

.mt-ct-download__image img {
    max-height: 440px;
    width: auto;
    height: 100%;
    display: block;
    object-fit: contain;
}

.mt-ct-download__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
}

.mt-ct-download__badge {
    display: inline-block;
    align-self: flex-start;
    border: 1px solid var(--ct-white);
    color: var(--ct-white);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-family: var(--ct-font-family);
}

.mt-ct-download__title {
    font-size: 46px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 16px;
    font-family: var(--ct-font-family);
}

.mt-ct-download__title strong {
    font-weight: 700;
}

.mt-ct-download__subtitle {
    font-size: 20px;
    color: var(--ct-white);
    line-height: 1.6;
    margin: 0 0 32px;
    font-family: var(--ct-font-family);
}

.mt-ct-download__btn-single {
    display: none;
}

.mt-ct-download__buttons {
    display: flex;
    gap: 16px;
}

@media (max-width: 768px) {
    .mt-ct-download__btn-single {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: #D80073;
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
        font-family: var(--ct-font-family);
        padding: 16px 32px;
        border-radius: 16px;
        text-decoration: none;
        transition: background 0.2s;
    }

    .mt-ct-download__btn-single:hover {
        background: #D80073;
        color: #ffffff;
        text-decoration: none;
    }

    .mt-ct-download__buttons {
        display: none;
    }
}

.mt-ct-download__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #D80073;
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.3;
    font-family: var(--ct-font-family);
    transition: opacity 0.2s;
}

.mt-ct-download__btn strong {
    font-size: 16px;
}

.mt-ct-download__btn:hover {
    opacity: 0.85;
    color: #fff;
}

/* ---------- Artigos para Leitura ---------- */
.mt-ct-artigos {
    background: #FCE4EC;
    padding: 60px 24px;
}

.mt-ct-artigos__container {
    max-width: 1280px;
    margin: 0 auto;
}

.mt-ct-artigos__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.mt-ct-artigos__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--ct-dark);
    margin: 0;
    font-family: var(--ct-font-family);
}

.mt-ct-artigos__select {
    padding: 4px 8px;
    border: 1px solid var(--ct-magenta);
    border-radius:8px;
    background: transparent;
    color: var(--ct-magenta);
    font-weight: 600;
    font-family: var(--ct-font-family);
    cursor: pointer;
    outline: none;
    appearance: auto;
}

.mt-ct-artigos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mt-ct-artigos__footer {
    text-align: right;
    margin-top: 32px;
}

.mt-ct-artigos__ver-mais {
    color: var(--ct-magenta);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    font-family: var(--ct-font-family);
}

.mt-ct-artigos__ver-mais:hover {
    text-decoration: underline;
    color: var(--ct-magenta);
}

/* ---------- Responsividade ---------- */

@media (max-width: 1024px) {
    .mt-ct-hero__decorative {
        right: 50px;
    }

    .mt-ct-card--vertical .mt-ct-card__meta-info {
        display: block;
    }

    .mt-ct-card--vertical .mt-ct-card__meta-info span {
        margin-bottom: 6px;
    }
}

@media (max-width: 768px) {
    .mt-ct-hero__decorative {
        right: 12px;
        width: 150px;
    }

    .mt-ct-hero__content {
        width: 50%;
    }

    .mt-ct-hero__title {
        font-size: 30px;
    }

    .mt-ct-hero__subtitle {
        font-size: 16px;
    }

    .mt-ct-hero__cta {
        padding: 10px 24px;
    }

    .mt-ct-episodios__title {
        font-size: 22px;
    }

    .mt-ct-artigos__title {
        font-size: 22px;
    }

    .mt-ct-related__title {
        font-size: 22px;
    }

    .mt-ct-single__title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .mt-ct-hero {
        background-image: url('../../images/podcast-banner-mobile.png') !important;
        background-position: center top;
    }

    .mt-ct-header__nav {
        display: none;
    }

    .mt-ct-header__mobile-toggle {
        display: block;
    }

    .mt-ct-header__btn--mobile-inline {
        display: inline-block;
    }

    .mt-ct-header__nav .mt-ct-header__pwa-btn {
        display: none;
    }

    .mt-ct-header__nav--open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 8px 0 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        z-index: 99;
        border-top: 1px solid #f0f0f0;
        animation: mt-ct-menu-slide 0.2s ease;
    }

    @keyframes mt-ct-menu-slide {
        from { opacity: 0; transform: translateY(-8px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    .mt-ct-header__nav--open .menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mt-ct-header__nav--open .menu li a {
        display: block;
        padding: 14px 24px;
        font-size: 15px;
        font-weight: 600;
        color: #1a1a1a;
        border-bottom: 1px solid #f5f5f5;
        transition: background 0.15s, color 0.15s;
    }

    .mt-ct-header__nav--open .menu li a:hover {
        background: #fce4f0;
        color: var(--ct-magenta);
    }

    .mt-ct-header__nav--open .mt-ct-header__btn {
        margin: 16px 24px 0;
        text-align: center;
    }

    .mt-ct-hero {
        padding: 20px 16px 0;
    }

    .mt-ct-hero__container {
        flex-direction: column;
        text-align: center;
    }

    .mt-ct-hero__content {
        width: 90%;
    }

    .mt-ct-hero__title {
        font-size: 32px;
    }

    .mt-ct-hero__subtitle {
        margin: 0;
    }

    .mt-ct-hero__decorative {
        position: relative;
        top: auto;
        right: 115px;
        width: 100px;
        margin: 24px auto 0;
    }

    .mt-ct-hero__cta {
        margin-top: 10px;
        padding: 12px 60px;
    }

    .mt-ct-player {
        margin: -40px 16px 0;
    }

    .mt-ct-player__label {
        font-size: 18px;
    }

    .mt-ct-episodios__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .mt-ct-episodios__filters {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .mt-ct-episodios__search-input {
        width: 100%;
    }

    .mt-ct-card {
        flex-direction: column;
    }

    .mt-ct-card__thumbnail {
        width: 100%;
        height: 200px;
    }

    .mt-ct-single {
        background: #A40B5C;
        padding: 20px 24px;
    }

    .mt-ct-single__content {
        grid-template-columns: 1fr;
    }

    .mt-ct-single__heading .mt-ct-single__title {
        font-size: 24px;
    }

    .mt-ct-related__grid {
        grid-template-columns: 1fr;
    }

    .mt-ct-related__header .mt-ct-related__btn {
        display: none;
    }

    .mt-ct-related__btn--mobile {
        display: block;
        margin-top: 24px;
        text-align: center;
        width: 100%;
    }

    .mt-ct-download__container {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .mt-ct-download__content {
        padding: 40px 24px 32px;
    }

    .mt-ct-download__title {
        font-size: 28px;
    }

    .mt-ct-download__subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .mt-ct-download__buttons {
        width: 100%;
        justify-content: center;
    }

    .mt-ct-download__btn {
        flex: 1;
        justify-content: center;
        padding: 12px 16px;
    }

    .mt-ct-download__image {
        padding: 0 40px;
    }

    .mt-ct-download__image img {
        max-height: 320px;
    }

    .mt-ct-artigos__grid {
        grid-template-columns: 1fr;
    }
}
