@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700;800;900&display=swap');

:root {
    --primary-blue: #091a33;
    --primary-blue-light: #122c52;
    --primary-yellow: #ffc72c;
    --primary-yellow-hover: #e0a900;
    --accent-green: #00843d;
    --accent-green-light: rgba(0, 132, 61, 0.06);
    --bg-light: #ffffff;
    --bg-card-ciro: #f0f4f8;
    --bg-card-renan: #0b111e;
    --text-dark: #1e293b;
    --text-light: #f8fafc;
    --text-muted: #64748b;
    --text-muted-dark: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 25px -5px rgba(12, 35, 64, 0.1), 0 8px 10px -6px rgba(12, 35, 64, 0.05);
    --shadow-xl: 0 20px 35px -5px rgba(12, 35, 64, 0.15), 0 12px 15px -8px rgba(12, 35, 64, 0.1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 6px; /* Space for the flag ribbon */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

/* Flag Ribbon */
.flag-ribbon {
    display: flex;
    height: 6px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.ribbon-green { flex: 1; background-color: var(--accent-green); }
.ribbon-yellow { flex: 1; background-color: var(--primary-yellow); }
.ribbon-blue { flex: 1; background-color: #002244; }

/* Header & Hero Grid */
header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #02070f 100%);
    color: var(--text-light);
    position: relative;
    padding: 4.5rem 1rem 8.5rem 1rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 199, 44, 0.15) 0%, transparent 55%),
                radial-gradient(circle at 15% 80%, rgba(0, 132, 61, 0.12) 0%, transparent 55%);
    pointer-events: none;
    z-index: 1;
}

header::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
    z-index: 1;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.logo-brand {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-brand span {
    color: var(--primary-yellow);
}

.badge-pnd {
    background: rgba(255, 255, 255, 0.07);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
}

/* Hero Split Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
}

.hero-subtitle {
    color: var(--primary-yellow);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: 2.85rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    font-weight: 900;
}

.hero-title span {
    background: linear-gradient(120deg, var(--primary-yellow) 0%, #ffdf7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: #e2e8f0;
    font-weight: 300;
    line-height: 1.7;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(0, 132, 61, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.hero-image {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl), 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.1);
    background: #061122;
    z-index: 2;
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.hero-image:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
}

/* Main Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.main-content {
    margin-top: -5rem;
    position: relative;
    z-index: 10;
    padding-bottom: 6rem;
}

/* Legado Section Header */
.section-intro {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--primary-yellow);
    margin-bottom: 4rem;
    text-align: left;
}

.section-intro h2 {
    color: var(--primary-blue);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
}

.section-intro p {
    color: var(--text-muted);
    max-width: 900px;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Proposal Grid */
.proposal-grid {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

/* Card Styling with top border flag motif */
.proposal-card {
    background: linear-gradient(180deg, #f5f8fa 0%, #ffffff 100%);
    border-radius: 24px;
    border: 1px solid rgba(12, 35, 64, 0.08);
    box-shadow: 0 10px 30px -10px rgba(12, 35, 64, 0.05);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-normal);
}

.proposal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-green) 0%, var(--primary-yellow) 50%, var(--primary-blue) 100%);
    z-index: 5;
}

.proposal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(12, 35, 64, 0.12);
    border-color: rgba(12, 35, 64, 0.15);
}

/* Card Header (Ciro Section) */
.card-header-ciro {
    padding: 3rem;
    position: relative;
}

.card-index {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-blue-light);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.card-index-num {
    font-size: 3.25rem;
    font-weight: 900;
    color: var(--accent-green);
    line-height: 0.8;
    letter-spacing: -2px;
    border-right: 2px solid rgba(12, 35, 64, 0.12);
    padding-right: 1.25rem;
    display: inline-block;
}

.card-title-ciro {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.75px;
}

.card-desc-ciro {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Achievements & Details List */
.realization-box {
    background: #ffffff;
    border-left: 4px solid var(--accent-green);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2.25rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}

.card-image-box {
    width: 100%;
    margin-bottom: 2.25rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(12, 35, 64, 0.08);
}

.card-topic-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
}

.card-topic-image:hover {
    transform: scale(1.02);
}

.realization-box h4 {
    color: var(--accent-green);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.realization-box p {
    color: #164e31;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.ciro-directives {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--border-color);
}

.directives-title {
    color: var(--primary-blue-light);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.directives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 2.5rem;
}

.directive-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.directive-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--primary-blue);
    line-height: 1;
    background: var(--primary-yellow);
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(255, 199, 44, 0.2);
}

.directive-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Card Button Reveal Action */
.action-area {
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--border-color);
    padding: 1.75rem 3rem;
    background: rgba(12, 35, 64, 0.02);
}

.reveal-btn {
    background: var(--primary-blue);
    color: var(--text-light);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(12, 35, 64, 0.2);
}

.reveal-btn:hover {
    background: var(--primary-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 35, 64, 0.3);
}

.reveal-btn svg {
    transition: transform var(--transition-normal);
}

/* Revealed State Button Styling */
.proposal-card.revealed .reveal-btn {
    background: var(--primary-yellow);
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(255, 199, 44, 0.25);
}

.proposal-card.revealed .reveal-btn:hover {
    background: var(--primary-yellow-hover);
}

.proposal-card.revealed .reveal-btn svg {
    transform: rotate(180deg);
}

/* Revealed Section (Renan Santos) */
.card-reveal-renan {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
    background: linear-gradient(135deg, #0a101d 0%, #04070d 100%);
    color: var(--text-light);
    border-left: 4px solid var(--primary-yellow);
}

.proposal-card.revealed .card-reveal-renan {
    max-height: 3000px;
    opacity: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.reveal-inner {
    padding: 3.5rem 3rem;
    background-image: radial-gradient(circle at top right, rgba(255, 199, 44, 0.04) 0%, transparent 50%),
                      linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100% 100%, 25px 25px, 25px 25px;
}

.renan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.25rem;
}

.renan-badge {
    background: rgba(255, 199, 44, 0.08);
    color: var(--primary-yellow);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    border: 1px solid rgba(255, 199, 44, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.renan-candidate {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text-muted-dark);
    font-weight: 700;
}

.renan-candidate span {
    color: var(--text-light);
}

.renan-title {
    font-size: 2.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.75px;
    line-height: 1.2;
}

.renan-desc {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
}

/* Solution Grid for Renan's proposal details */
.solution-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.75rem;
    border-radius: 16px;
    transition: background var(--transition-fast);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.highlight-item h5 {
    color: var(--primary-yellow);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-item p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
}

/* Rationale box explaining why this proposal builds on Ciro's */
.rational-box {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 199, 44, 0.12);
    border-left: 4px solid var(--primary-yellow);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    margin-top: 2rem;
}

.rational-box::before {
    content: "💡 Evolução do Projeto";
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--accent-green);
    color: var(--text-light);
    padding: 0.2rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rational-box p {
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.7;
}

.rational-box strong {
    color: var(--primary-yellow);
}

/* Call to Action Section (Conclusion) */
.conclusion-section {
    margin-top: 6rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #032111 100%);
    color: var(--text-light);
    border-radius: 28px;
    padding: 6rem 4rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.conclusion-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 199, 44, 0.05) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.conclusion-subtitle {
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.conclusion-title {
    font-size: 2.5rem;
    margin-bottom: 1.75rem;
    letter-spacing: -1px;
}

/* Integrated Verdict Dashboard */
.verdict-dashboard {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4.5rem;
    margin: 3.5rem auto 4.5rem auto;
    max-width: 1000px;
    text-align: left;
    align-items: flex-start;
}

.verdict-main {
    display: flex;
    flex-direction: column;
}

.verdict-header-row {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.verdict-divider {
    border: none;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
}

.verdict-gauge {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.gauge-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.gauge-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 8;
}

.gauge-fill {
    fill: none;
    stroke: url(#gauge-gradient);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gauge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.gauge-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 1;
}

.gauge-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted-dark);
    margin-top: 0.2rem;
}

.verdict-candidate-info {
    flex-grow: 1;
}

.verdict-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-yellow);
    font-weight: 700;
    margin-bottom: 0.25rem;
    display: block;
}

.verdict-candidate {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
}

.candidate-party {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-muted-dark);
}

.verdict-summary {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.verdict-highlights-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-top: 1.5rem;
}

/* Styling for conclusion-text is handled globally below */

.verdict-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.breakdown-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}

.breakdown-item {
    display: grid;
    grid-template-columns: 170px 1fr 45px;
    align-items: center;
    gap: 1.25rem;
}

.breakdown-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
}

.breakdown-bar-container {
    height: 7px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.breakdown-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.breakdown-percentage {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-align: right;
}

.conclusion-text {
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.75;
    text-align: left;
}

.cta-button-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 1.15rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(255, 199, 44, 0.35);
}

.cta-btn-primary:hover {
    background: var(--primary-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 199, 44, 0.45);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    padding: 1.15rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-fast);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #02070e;
    color: #475569;
    padding: 4rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    color: #64748b;
}

.footer-disclaimer {
    font-size: 0.8rem;
    max-width: 750px;
    margin: 0 auto;
    color: #334155;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-image-container {
        order: -1; /* Display Ciro image first on tablets/mobiles */
    }
    
    .directives-grid, .solution-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .verdict-dashboard {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin: 2.5rem auto 3.5rem auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem;
    }

    header {
        padding: 2rem 1rem 6rem 1rem;
    }
    
    .nav-container {
        margin-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .main-content {
        margin-top: -4rem;
    }
    
    .section-intro {
        padding: 1.75rem 1rem;
        margin-bottom: 2.5rem;
    }
    
    .card-header-ciro {
        padding: 1.75rem 1rem;
    }
    
    .reveal-inner {
        padding: 2rem 1rem;
    }
    
    .action-area {
        padding: 1.25rem 1rem;
    }
    
    .renan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .renan-title {
        font-size: 1.75rem;
    }
    
    .conclusion-section {
        padding: 3rem 1rem;
    }
    
    .conclusion-title {
        font-size: 2rem;
    }
    
    .cta-button-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-btn-primary, .cta-btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .card-topic-image {
        height: 180px;
    }
    
    .verdict-header-row {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .verdict-highlights-text {
        text-align: center;
        margin-top: 1.25rem;
    }
    
    .verdict-divider {
        margin: 0 auto 2.5rem auto;
    }
    
    .verdict-candidate {
        font-size: 1.5rem;
    }
    
    .conclusion-text {
        text-align: center;
    }
    
    .breakdown-item {
        grid-template-columns: 1fr auto;
        gap: 0.25rem;
    }
    
    .breakdown-bar-container {
        grid-column: 1 / span 2;
        margin-top: 0.25rem;
        margin-bottom: 0.5rem;
    }
}
