/**
 * MetSul Theme - Home Page Styles
 * Estilos da página inicial: hero, grid de notícias, widgets, seções,
 * meteorologistas, categorias e regionais.
 *
 * @package MetSul
 * @since 1.0.0
 */

/* ===========================================
   HERO (Full Width / Container) - Desktop
   =========================================== */
.ms-hero {
    position: relative;
    height: 63vh;
    min-height: 400px;
    max-height: 600px;
    background: #f8f9fa;
    overflow: hidden;
    padding: 50px 190px;
}

/* Wrapper interno (usado para variante container) */
.ms-hero__inner {
    width: 100%;
    height: 100%;
}

/* Variante container: hero alinhado ao container da home */
.ms-hero--container .ms-hero__inner {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.ms-hero--container .ms-hero__image,
.ms-hero--container .ms-hero__overlay {
    left: 0;
    right: 0;
}

.ms-hero--container .ms-hero__link {
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.ms-hero--container .ms-hero__image {
    border-radius: 12px;
}

.ms-hero--container .ms-hero__overlay {
    border-radius: 0 0 12px 12px;
}

/* Container: padding lateral menor (já está dentro do fluxo) */
.ms-hero--container {
    padding-left: 20px;
    padding-right: 20px;
}

.ms-hero__link {
    display: block;
    width: 100%;
    height: 100%;
}

.ms-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #222;
}

.ms-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.5s ease;
}

.ms-hero:hover .ms-hero__image img {
    transform: scale(1.05);
}

.ms-hero__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 0;
    background: none;
    color: #fff;
}

.ms-hero__content {
    max-width: 70%;
    padding-left: 90px;
}

.ms-hero__category {
    display: inline-block;
    background: none;
    padding: 0 0 3px 0;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--ms-orange-cta);
    text-decoration: none;
}

.ms-hero__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    margin-top: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ms-hero__readmore {
    display: inline-block;
    background: var(--ms-orange-cta);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ms-hero__readmore:hover {
    background: #e57200;
    transform: translateY(-2px);
}

.ms-hero__meta {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 600;
}

.ms-hero__author {
    margin-right: 15px;
}

/* ===========================================
   ADVERTISING SLOTS (CLS Prevention)
   =========================================== */
.ms-ad-section {
    padding-top: 30px;
    padding-bottom: 30px;
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ms-ad-placeholder {
    position: relative;
    background: #e6e6e6;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.ms-ad-placeholder::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0,
            rgba(255, 255, 255, 0.2) 20%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.ms-ad-placeholder::before {
    content: attr(data-label);
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ms-ad-placeholder__text {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
}

/* Top Banner Slot */
.ms-ad-section--top .ms-ad-placeholder {
    width: 100%;
    max-width: 970px;
    min-height: 250px;
}

.ms-ad-section--middle {
    margin: 40px 0;
    background: #fcfcfc;
}

.ms-ad-section--middle .ms-ad-placeholder {
    min-height: 90px;
    max-width: 970px;
}

.ms-ad-section--inter {
    margin: 20px 0;
    background: #fcfcfc;
    padding: 20px 0;
}

.ms-ad-section--inter .ms-ad-placeholder {
    min-height: 90px;
    max-width: 970px;
    border: 1px solid #eee;
}

/* ===========================================
   HOME WIDGETS (Previsão e Login)
   =========================================== */
.ms-home-widgets {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #fff;
}

.ms-home-widgets__inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

/* Login Card */
.ms-login-card {
    background: var(--ms-blue-dark);
    color: #fff;
    border-radius: 8px;
    padding: 30px;
}

.ms-login-card__title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.ms-login-form__field {
    margin-bottom: 15px;
}

.ms-login-form input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-main);
}

.ms-login-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.ms-login-form__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.ms-btn--login-submit {
    width: 100%;
    background: var(--ms-orange-cta);
    color: #fff;
    border: none;
    text-align: center;
    font-weight: 700;
}

.ms-btn--login-submit:hover {
    background: #e57200;
}

.ms-lost-password {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-decoration: none;
}

.ms-lost-password:hover {
    text-decoration: underline;
}

.ms-user-logged {
    text-align: center;
}

.ms-btn--logout {
    display: inline-block;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===========================================
   LAYOUT PRINCIPAL (Conteúdo + Sidebar)
   =========================================== */
.ms-main-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Card Grande (Post #2) - alinhado com estética da previsão */
.ms-card-large {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    margin-bottom: 20px;
    aspect-ratio: 16 / 9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s ease;
}
.ms-card-large:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.ms-card-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.3s;
}

.ms-card-large:hover img {
    transform: scale(1.02);
}

.ms-card-large__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
}

.ms-card-large__title {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

/* Grid Pequeno (Posts #3 e #4) */
.ms-news-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ms-card-small {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}
.ms-card-small:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.ms-card-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.ms-card-small__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
}

.ms-card-small__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* ===========================================
   SIDEBAR WIDGETS (Home)
   =========================================== */
.ms-sidebar-widget {
    margin-bottom: 40px;
}

.ms-sidebar-widget__header {
    background: var(--ms-blue-dark);
    color: #fff;
    padding: 12px 15px;
    font-weight: 800;
    font-size: 14px;
    border-radius: 4px 4px 0 0;
    text-transform: uppercase;
}

.ms-sidebar-widget__header-alt {
    color: var(--ms-blue-dark);
    font-size: 20px;
    font-weight: 800;
    border-bottom: 2px solid var(--ms-blue-dark);
    padding-bottom: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ms-sidebar-widget__content {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
}

/* Mais Lidas List (Home Sidebar) */
.ms-popular-list .ms-popular-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.ms-popular-rank {
    background: var(--ms-blue-dark);
    color: #fff;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.ms-popular-title {
    text-decoration: none;
    color: var(--ms-text);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
}

.ms-popular-title:hover {
    color: var(--ms-blue-nav);
}

.ms-sidebar-ad-placeholder {
    text-align: center;
}

.ms-sidebar-ad-placeholder p {
    font-size: 11px;
    color: #666;
    margin-bottom: 10px;
}

.ms-sidebar-ad-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ms-sidebar-ad-links a {
    display: block;
    padding: 8px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    color: var(--ms-blue-nav);
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
}

/* ===========================================
   SEÇÃO METEOROLOGISTAS - Card destacado
   =========================================== */
.ms-section-meteorologistas {
    padding-top: 60px;
    padding-bottom: 60px;
    border-top: 1px solid #eee;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.ms-meteorologistas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ms-colunista-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 59, 115, 0.08);
    border: 1px solid rgba(0, 59, 115, 0.08);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.ms-colunista-item:hover {
    box-shadow: 0 8px 32px rgba(0, 59, 115, 0.12);
    transform: translateY(-2px);
}

.ms-colunista-avatar {
    flex-shrink: 0;
}
.ms-colunista-avatar img {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--ms-blue-dark);
}

.ms-colunista-content {
    flex: 1;
}

.ms-colunista-name {
    display: block;
    color: var(--ms-blue-dark);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.ms-colunista-role {
    display: block;
    color: var(--ms-orange-cta);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.ms-colunista-title {
    color: var(--ms-text);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

.ms-colunista-title:hover {
    color: var(--ms-blue-nav);
}

/* ===========================================
   SEÇÃO LABELS
   =========================================== */
.ms-section-label {
    color: var(--ms-blue-nav);
    font-size: 24px;
    font-weight: 800;
    border-top: 4px solid var(--ms-blue-nav);
    padding-top: 10px;
    margin-bottom: 30px;
    display: inline-block;
    text-transform: uppercase;
}

.ms-section-label-large {
    color: var(--ms-blue-nav);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* ===========================================
   SEÇÃO VEJA TAMBÉM
   =========================================== */
.ms-section-veja-tambem {
    padding-bottom: 60px;
}

.ms-veja-tambem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ms-veja-item__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.ms-veja-item__thumbnail {
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
    background: #eee;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.ms-veja-item__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ms-veja-item:hover .ms-veja-item__thumbnail img {
    transform: scale(1.05);
}

.ms-veja-item__category {
    display: inline-block;
    color: var(--ms-blue-nav);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 15px;
}

.ms-veja-item__title {
    font-size: 16px;
    margin: 10px 0;
    font-weight: 700;
    line-height: 1.4;
    color: var(--ms-text);
    transition: color 0.2s;
}

.ms-veja-item:hover .ms-veja-item__title {
    color: var(--ms-blue-nav);
}

.ms-veja-item__date {
    font-size: 12px;
    color: var(--ms-text-light);
}

/* ===========================================
   SEÇÃO CATEGORIAS
   =========================================== */
.ms-cat-block {
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.ms-cat-top-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.ms-card-mini-hero {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
}

.ms-card-mini-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.3s;
}

.ms-card-mini-hero:hover img {
    transform: scale(1.02);
}

.ms-card-mini-hero__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
}

.ms-card-mini-hero__title {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.ms-cat-list-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ms-cat-list-item__link {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    align-items: center;
}

.ms-cat-list-item__thumb {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.ms-cat-list-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ms-cat-list-item__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--ms-text);
    transition: color 0.2s;
}

.ms-cat-list-item:hover .ms-cat-list-item__title {
    color: var(--ms-blue-nav);
}

.ms-cat-ad-slot {
    margin-top: 15px;
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.ms-cat-ad-slot .ms-ad-placeholder {
    min-height: 150px;
    background: #f9f9f9;
    border: 1px dashed #ddd;
}

.ms-cat-grid-bottom {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ms-cat-grid-item a {
    text-decoration: none;
    color: inherit;
}

.ms-cat-grid-item__thumb {
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.ms-cat-grid-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ms-cat-grid-item__title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.ms-cat-grid-item:hover .ms-cat-grid-item__title {
    color: var(--ms-blue-nav);
}

/* ===========================================
   SEÇÃO REGIONAL
   =========================================== */
.ms-regional-section {
    padding: 60px 0;
    border-top: 1px solid #eee;
    background: #fff;
}

.ms-regional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.ms-regional-cat-title {
    color: var(--ms-blue-nav);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--ms-blue-nav);
    padding-bottom: 10px;
}

.ms-regional-featured {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #000;
    margin-bottom: 20px;
}

.ms-regional-featured__thumb {
    width: 100%;
    height: 100%;
}

.ms-regional-featured__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.3s;
}

.ms-regional-featured:hover .ms-regional-featured__thumb img {
    transform: scale(1.05);
}

.ms-regional-featured__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
}

.ms-regional-label-inner {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #ddd;
}

.ms-regional-featured__title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.ms-regional-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ms-regional-list-item__link {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
}

.ms-regional-list-item__thumb {
    width: 100px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.ms-regional-list-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ms-regional-label-small {
    display: block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ms-blue-nav);
    margin-bottom: 5px;
}

.ms-regional-list-item__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--ms-text);
    transition: color 0.2s;
}

.ms-regional-list-item:hover .ms-regional-list-item__title {
    color: var(--ms-blue-nav);
}

/* ===========================================
   RESPONSIVO - HOME
   =========================================== */
@media (max-width: 1200px) {
    /* Tablet: reduz padding lateral do hero full */
    .ms-hero {
        padding-left: 40px;
        padding-right: 40px;
    }

    .ms-hero--container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    .ms-ad-section--top .ms-ad-placeholder {
        min-height: 90px;
    }

    .ms-home-widgets__inner {
        grid-template-columns: 1fr;
    }

    .ms-main-layout {
        grid-template-columns: 1fr;
    }

    .ms-meteorologistas-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ms-veja-tambem-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ms-regional-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Hero tablet */
    .ms-hero {
        padding: 30px 24px;
        height: 55vh;
        min-height: 350px;
    }

    .ms-hero--container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ms-hero--container .ms-hero__inner {
        padding: 0;
    }

    .ms-hero__content {
        max-width: 90%;
        padding-left: 24px;
    }

    .ms-hero__title {
        font-size: 32px;
    }

    .ms-hero__overlay {
        padding: 40px 0 30px;
    }
}

@media (max-width: 768px) {
    .ms-ad-section--top .ms-ad-placeholder {
        min-height: 250px;
        max-width: 300px;
    }

    /* Hero mobile */
    .ms-hero {
        padding: 20px 16px;
        height: 50vh;
        min-height: 280px;
        max-height: 450px;
    }

    .ms-hero--container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .ms-hero--container .ms-hero__inner {
        padding: 0;
    }

    .ms-hero__content {
        max-width: 100%;
        padding-left: 16px;
    }

    .ms-hero__title {
        font-size: 24px;
    }

    .ms-hero__overlay {
        padding: 24px 0 20px;
    }

    .ms-hero__readmore {
        padding: 6px 16px;
        font-size: 12px;
    }

    .ms-hero__meta {
        font-size: 12px;
    }

    .ms-news-grid-small {
        grid-template-columns: 1fr;
    }

    .ms-card-large__title {
        font-size: 22px;
    }

    .ms-veja-tambem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ms-veja-item:first-child {
        grid-column: span 2;
    }

    .ms-veja-item:first-child .ms-veja-item__title {
        font-size: 20px;
    }

    .ms-colunista-item {
        flex-direction: column;
        text-align: center;
    }

    .ms-colunista-avatar {
        margin: 0 auto;
    }
    .ms-colunista-avatar img {
        width: 100px;
        height: 100px;
    }

    .ms-cat-top-row {
        grid-template-columns: 1fr;
    }

    .ms-cat-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .ms-card-mini-hero__title {
        font-size: 18px;
    }

    .ms-cat-ad-slot {
        display: none;
    }

    .ms-regional-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ms-regional-cat-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    /* Hero mobile pequeno */
    .ms-hero {
        padding: 16px 12px;
        height: 45vh;
        min-height: 240px;
        max-height: 380px;
    }

    .ms-hero--container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .ms-hero__content {
        padding-left: 12px;
    }

    .ms-hero__title {
        font-size: 20px;
    }

    .ms-hero__overlay {
        padding: 20px 0 16px;
    }

    .ms-hero__category {
        font-size: 10px;
    }
}
