/* ====================================================
   CATÁLOGO DE LIÇÕES — /licoes-da-ebd
   Extends explorar-licoes.css
   ==================================================== */

/* Hero stats */
.ebd360-licoes-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 28px;
}
.ebd360-licoes-hero-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
}
.ebd360-licoes-hero-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--ebd-accent, #C5A059);
    line-height: 1.2;
}
.ebd360-licoes-hero-stat span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #94a3b8;
    margin-top: 4px;
}

/* Search autocomplete */
.ebd360-licoes-search-wrap {
    position: relative;
    flex: 1;
}
.ebd360-licoes-autocomplete {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(15, 29, 51, 0.12);
    z-index: 200;
    max-height: 320px;
    overflow-y: auto;
}
.ebd360-licoes-ac-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--ebd-primary);
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}
.ebd360-licoes-ac-item:hover {
    background: #F8FAFC;
}
.ebd360-licoes-ac-badge {
    background: rgba(197, 160, 89, 0.12);
    color: #A08040;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Filter chips + results count */
.ebd360-licoes-filter-chips {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.ebd360-licoes-filter-chips::-webkit-scrollbar {
    display: none;
}
.ebd360-licoes-chip {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.ebd360-licoes-chip.active,
.ebd360-licoes-chip:hover {
    border-color: var(--ebd-accent, #C5A059);
    color: #A08040;
    background: rgba(197, 160, 89, 0.08);
}
.ebd360-licoes-results-count {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin: 12px 0 0;
}

/* View toggle (3 modes) */
.ebd360-view-toggle {
    display: flex;
    gap: 4px;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 10px;
    flex-shrink: 0;
}
.ebd360-view-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.ebd360-view-toggle-btn.active {
    background: #fff;
    color: var(--ebd-primary);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.ebd360-view-toggle-btn .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

/* Grid: 2 colunas na área principal (com sidebar) */
.ebd360-licoes-catalog .ebd360-explorar-content .ebd360-licoes-grid,
.ebd360-licoes-catalog .ebd360-explorar-content .ebd360-explorar-grid.ebd360-licoes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

/* Seções full-width abaixo do grid + sidebar */
.ebd360-licoes-sections {
    max-width: 1240px;
    margin: 0 auto;
    padding: 8px 24px 56px;
}
.ebd360-licoes-sections .ebd360-licoes-section:first-child {
    margin-top: 16px;
}

/* List layout */
.ebd360-licoes-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

/* Premium lesson card */
.ebd-lic-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.ebd-lic-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06);
}
.ebd-lic-card__media {
    display: block;
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #0F1D33;
}
.ebd-lic-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ebd-lic-card:hover .ebd-lic-card__media img {
    transform: scale(1.06);
}
.ebd-lic-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(197, 160, 89, 0.5);
}
.ebd-lic-card__placeholder .dashicons {
    font-size: 36px;
    width: 36px;
    height: 36px;
}
.ebd-lic-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--ebd-accent, #C5A059);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ebd-lic-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.ebd-lic-card__meta-top {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.ebd-lic-card__trimestre,
.ebd-lic-card__ano {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
}
.ebd-lic-card__author {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}
.ebd-lic-card__author a {
    color: inherit;
    text-decoration: none;
}
.ebd-lic-card__author a:hover {
    color: var(--ebd-accent);
}
.ebd-lic-card__author .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}
.ebd-lic-card__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}
.ebd-lic-card__title a {
    color: var(--ebd-primary);
    text-decoration: none;
}
.ebd-lic-card__title a:hover {
    color: var(--ebd-accent);
}
.ebd-lic-card__excerpt {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.ebd-lic-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
}
.ebd-lic-card__details span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.ebd-lic-card__details .dashicons {
    font-size: 13px;
    width: 13px;
    height: 13px;
}
.ebd-lic-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}
.ebd-lic-card__actions-primary {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.ebd-lic-card__actions-secondary {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-left: auto;
}
.ebd-lic-card__actions .ebd-btn.is-unavailable {
    opacity: 0.5;
}
.ebd-lic-card__fav,
.ebd-lic-card__share-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.2s;
    margin-left: 0;
    flex-shrink: 0;
}
.ebd-lic-card__fav.is-active {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}
.ebd-lic-card__share {
    position: relative;
}
.ebd-lic-share-menu {
    position: absolute;
    bottom: calc(100% + 6px);
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.2s;
    z-index: 50;
}
.ebd-lic-share-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ebd-lic-share-menu a,
.ebd-lic-share-menu button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
}
.ebd-lic-share-menu a:hover,
.ebd-lic-share-menu button:hover {
    background: #F8FAFC;
    color: var(--ebd-primary);
}

/* List card variant */
.ebd-lic-card--list {
    flex-direction: row;
}
.ebd-lic-card--list .ebd-lic-card__media {
    width: 220px;
    min-width: 220px;
    aspect-ratio: auto;
    min-height: 160px;
}
.ebd-lic-card--list .ebd-lic-card__body {
    padding: 20px 24px;
}

/* Loading skeleton */
.ebd360-licoes-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.ebd-lic-skeleton-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}
.ebd-lic-skeleton-card__media {
    aspect-ratio: 16/10;
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: ebd-lic-shimmer 1.4s infinite;
}
.ebd-lic-skeleton-card__body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ebd-lic-skeleton-line {
    display: block;
    height: 10px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: ebd-lic-shimmer 1.4s infinite;
}
.ebd-lic-skeleton-line--sm { width: 40%; }
.ebd-lic-skeleton-line--md { width: 55%; }
.ebd-lic-skeleton-line--lg { width: 85%; height: 14px; }
.ebd-lic-skeleton-line--full { width: 100%; }
@keyframes ebd-lic-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Loading */
.ebd360-licoes-loading,
#ebd360-catalog-ajax-target.is-loading {
    opacity: 0.65;
    pointer-events: none;
}
.ebd360-licoes-loading {
    text-align: center;
    padding: 48px 24px;
    color: #64748b;
}
.ebd360-licoes-loading .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    animation: ebd-lic-spin 1s linear infinite;
}
@keyframes ebd-lic-spin {
    to { transform: rotate(360deg); }
}

/* Sections below results */
.ebd360-licoes-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}
.ebd360-licoes-section h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--ebd-primary);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ebd360-licoes-section h2 .dashicons {
    color: var(--ebd-accent);
}
.ebd360-licoes-section__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.ebd360-licoes-section__head h2 {
    margin: 0;
}

/* Trimestres carousel */
.ebd360-licoes-carousel-nav {
    display: flex;
    gap: 6px;
}
.ebd360-licoes-carousel-nav button {
    width: 36px;
    height: 36px;
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ebd-primary);
    transition: all 0.2s;
}
.ebd360-licoes-carousel-nav button:hover {
    border-color: var(--ebd-accent);
    color: var(--ebd-accent);
}
.ebd360-licoes-trimestres-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.ebd360-licoes-trimestres-track::-webkit-scrollbar {
    display: none;
}
.ebd360-licoes-trimestres-track .ebd-cmt-trimestre-card--horizontal {
    flex: 0 0 min(540px, 88vw);
    scroll-snap-align: start;
    min-width: 0;
}

/* Trimestre card — padrão comentarista (escopo catálogo) */
.ebd360-licoes-catalog {
    --ebd-cmt-navy: #0f172a;
    --ebd-cmt-navy-soft: #1A2634;
    --ebd-cmt-gold: #C5A059;
    --ebd-cmt-glass: rgba(255, 255, 255, 0.92);
    --ebd-cmt-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --ebd-cmt-shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.08);
}
.ebd360-licoes-catalog .ebd-cmt-glass {
    background: var(--ebd-cmt-glass);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--ebd-cmt-shadow);
}
.ebd360-licoes-catalog .ebd-cmt-trimestre-card--horizontal {
    display: flex;
    flex-direction: row;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}
.ebd360-licoes-catalog .ebd-cmt-trimestre-card--horizontal:hover {
    transform: translateY(-2px);
    box-shadow: var(--ebd-cmt-shadow-lg);
}
.ebd360-licoes-catalog .ebd-cmt-trimestre-card--horizontal .ebd-cmt-trimestre-card__media {
    width: 180px;
    min-height: 170px;
    flex-shrink: 0;
    background: var(--ebd-cmt-navy-soft);
}
.ebd360-licoes-catalog .ebd-cmt-trimestre-card--horizontal .ebd-cmt-trimestre-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ebd360-licoes-catalog .ebd-cmt-trimestre-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 170px;
    font-size: 40px;
    width: 40px;
    color: rgba(255, 255, 255, 0.15);
    margin: auto;
}
.ebd360-licoes-catalog .ebd-cmt-trimestre-card__body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}
.ebd360-licoes-catalog .ebd-cmt-trimestre-card__year {
    font-size: 10px;
    font-weight: 800;
    color: var(--ebd-cmt-gold);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.ebd360-licoes-catalog .ebd-cmt-trimestre-card__body h3 {
    margin: 0;
    font-size: 17px;
    font-family: 'Merriweather', Georgia, serif;
    color: var(--ebd-cmt-navy);
}
.ebd360-licoes-catalog .ebd-cmt-trimestre-card__tema,
.ebd360-licoes-catalog .ebd-cmt-trimestre-card__desc {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ebd360-licoes-catalog .ebd-cmt-trimestre-card__tema {
    font-weight: 600;
    color: var(--ebd-cmt-navy);
}
.ebd360-licoes-catalog .ebd-cmt-trimestre-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.ebd360-licoes-catalog .ebd-cmt-trimestre-card__count {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
}

/* Comentaristas grid — Design System */
.ebd360-licoes-com-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ebd360-licoes-com-card {
    text-align: center;
    padding: 24px 16px !important;
    align-items: center;
}
.ebd360-licoes-com-card .ebd-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 8px auto 12px;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.ebd360-licoes-com-card__ph {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 8px auto 12px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    font-size: 32px;
    color: #cbd5e1;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.ebd360-licoes-com-card__meta {
    font-size: 12px;
    color: #64748b;
    margin: 0 0 14px;
    font-weight: 600;
}
.ebd360-licoes-com-card .ebd-h4 {
    margin-bottom: 4px;
}

/* Sidebar — Trimestre Atual premium compacto */
.ebd360-explorar-sidebar .ebd360-quarter-featured-card--sidebar {
    flex-direction: column;
    padding: 22px 18px;
    margin-bottom: 0;
    gap: 14px;
    border-radius: 16px;
}
.ebd360-explorar-sidebar .ebd360-quarter-featured-card--sidebar .ebd360-quarter-tag {
    margin-bottom: 0;
    align-self: flex-start;
}
.ebd360-explorar-sidebar .ebd360-quarter-featured-card--sidebar .ebd360-quarter-featured-title {
    font-size: 15px;
    margin-bottom: 8px;
}
.ebd360-explorar-sidebar .ebd360-quarter-featured-card--sidebar .ebd360-quarter-featured-desc {
    font-size: 12px;
    margin-bottom: 10px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ebd360-explorar-sidebar .ebd360-quarter-featured-card--sidebar .ebd360-quarter-featured-meta {
    margin-bottom: 14px;
    font-size: 11px;
}
.ebd360-explorar-sidebar .ebd360-quarter-featured-thumb--sidebar {
    width: 100%;
    height: 110px;
    margin: 0;
    border-radius: 10px;
}
.ebd360-explorar-sidebar .ebd360-quarter-featured-card--sidebar .ebd360-quarter-featured-btn {
    width: 100%;
    text-align: center;
    align-self: stretch;
}

/* Themes pills */
.ebd360-licoes-themes-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ebd360-licoes-theme-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ebd-primary);
    cursor: pointer;
    transition: all 0.2s;
}
.ebd360-licoes-theme-pill span {
    background: #f1f5f9;
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 10px;
}
.ebd360-licoes-theme-pill:hover,
.ebd360-licoes-theme-pill.is-active {
    border-color: var(--ebd-accent, #C5A059);
    background: rgba(197, 160, 89, 0.08);
    color: #A08040;
}

/* Themes grid (legado) */
.ebd360-licoes-themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.ebd360-licoes-theme-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ebd360-licoes-theme-card:hover {
    border-color: var(--ebd-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(197, 160, 89, 0.12);
}
.ebd360-licoes-theme-card strong {
    font-size: 14px;
    color: var(--ebd-primary);
}
.ebd360-licoes-theme-card span {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
}

/* Bible books chips */
.ebd360-licoes-books-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ebd360-licoes-book-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
}
.ebd360-licoes-book-chip span {
    background: #f1f5f9;
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 10px;
}
.ebd360-licoes-book-chip:hover {
    border-color: var(--ebd-accent);
    color: var(--ebd-primary);
}

/* Sidebar highlight (legado) */
.ebd360-licoes-sidebar-highlight {
    background: linear-gradient(135deg, #0F1D33, #1a2f4d);
    color: #fff;
    border: none !important;
}
.ebd360-licoes-sidebar-highlight h4 {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}
.ebd360-licoes-sidebar-highlight .muted {
    color: #94a3b8;
    font-size: 13px;
}

/* Toast */
.ebd-lic-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ebd-primary, #0F1D33);
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ebd360-licoes-scroll-sentinel {
    height: 1px;
}

/* Responsive */
@media (max-width: 1200px) {
    .ebd360-licoes-com-grid,
    .ebd360-licoes-themes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .ebd360-licoes-hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .ebd360-licoes-catalog .ebd360-licoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .ebd360-licoes-com-grid,
    .ebd360-licoes-themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ebd360-licoes-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .ebd360-licoes-catalog .ebd360-licoes-grid,
    .ebd360-licoes-skeleton-grid {
        grid-template-columns: 1fr;
    }
    .ebd-lic-card--list {
        flex-direction: column;
    }
    .ebd-lic-card--list .ebd-lic-card__media {
        width: 100%;
        min-width: 0;
    }
    .ebd360-view-toggle-btn span:not(.dashicons) {
        display: none;
    }
    .ebd360-licoes-catalog .ebd-cmt-trimestre-card--horizontal {
        flex-direction: column;
    }
    .ebd360-licoes-catalog .ebd-cmt-trimestre-card--horizontal .ebd-cmt-trimestre-card__media {
        width: 100%;
        min-height: 140px;
    }
}

@media (max-width: 600px) {
    .ebd360-licoes-com-grid,
    .ebd360-licoes-themes-grid {
        grid-template-columns: 1fr;
    }
    .ebd360-licoes-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .ebd360-explorar-search-row {
        flex-direction: column;
    }
    .ebd360-view-toggle {
        width: 100%;
        justify-content: center;
    }
    .ebd-lic-card__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .ebd-lic-card__actions-secondary {
        margin-left: 0;
        justify-content: flex-end;
    }
}
