/* Informes estrategicos: layout support for report cards and article modules. */
.gc-report-landing-card,
.gc-report-stat-card,
.gc-report-infographic__card,
.gc-report-comparison__side {
    border: 1px solid rgba(148, 163, 184, .24);
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.gc-report-landing-card {
    overflow: hidden;
    border-radius: 18px;
}

.gc-report-landing-card__cover {
    min-height: 220px;
    padding: 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gc-report-landing-card__edition,
.gc-report-stat-card__label,
.gc-report-infographic__label,
.gc-report-infographic__detail {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gc-report-landing-card__title {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 900;
    line-height: 1.08;
}

.gc-report-landing-card__body {
    padding: 24px;
}

.gc-report-landing-card__excerpt,
.gc-report-section__lead {
    color: #475569;
    line-height: 1.65;
}

.gc-report-landing-card__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.gc-report-landing-card__stat-value,
.gc-report-stat-card__value,
.gc-report-infographic__value {
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 900;
    line-height: 1;
}

.gc-report-landing-card__stat-label {
    margin-top: 4px;
    color: #64748b;
    font-size: .8rem;
}

.gc-report-landing-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-weight: 800;
}

.gc-report-cover {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.gc-report-cover__accent-bar {
    height: 6px;
}

.gc-report-cover__pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(15, 23, 42, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, .05) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
}

.gc-report-cover__geometric {
    position: absolute;
    border-radius: 999px;
    opacity: .08;
    filter: blur(1px);
}

.gc-report-cover__geometric--1 {
    right: -80px;
    top: 90px;
    width: 220px;
    height: 220px;
}

.gc-report-cover__geometric--2 {
    left: -60px;
    bottom: -80px;
    width: 180px;
    height: 180px;
}

.gc-report-stat-card {
    border-radius: 16px;
    padding: 18px;
}

.gc-report-prologue__quote-mark {
    font-size: 4rem;
    line-height: .8;
    font-family: Georgia, serif;
}

.gc-report-prologue__text {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.8;
}

.gc-report-toc__item {
    display: grid;
    grid-template-columns: 10px 1fr;
    align-items: start;
    gap: 10px;
    border-radius: 10px;
    padding: 9px 10px;
    color: #475569;
    font-size: .9rem;
}

.gc-report-toc__item:hover {
    background: #f8fafc;
    color: #0f172a;
}

.gc-report-toc__number {
    width: 8px;
    height: 8px;
    margin-top: 7px;
    border-radius: 999px;
}

.gc-report-section__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.gc-report-section__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    flex: 0 0 auto;
}

.gc-report-section__icon svg {
    width: 22px;
    height: 22px;
}

.gc-report-section__title {
    color: #0f172a;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 900;
    line-height: 1.12;
}

.gc-report-infographic,
.gc-report-comparison {
    display: grid;
    gap: 16px;
}

.gc-report-infographic {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gc-report-infographic__card,
.gc-report-comparison__side {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 22px;
}

.gc-report-infographic__label {
    margin-top: 8px;
    color: #0f172a;
}

.gc-report-infographic__detail {
    margin-top: 8px;
    color: #64748b;
    letter-spacing: 0;
    text-transform: none;
}

.gc-report-comparison {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gc-report-comparison__header {
    margin: -22px -22px 16px;
    padding: 16px 22px;
    color: #fff;
    font-weight: 900;
}

.gc-report-comparison__item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid #e2e8f0;
    padding: 12px 0;
}

.gc-report-comparison__item-label {
    color: #475569;
}

.gc-report-comparison__item-value {
    color: #0f172a;
    font-weight: 800;
    text-align: right;
}

@media (max-width: 640px) {
    .gc-report-landing-card__body,
    .gc-report-landing-card__cover {
        padding: 20px;
    }

    .gc-report-section__header {
        align-items: flex-start;
    }
}
