﻿.energy-produced {
    background: var(--neutral-white);
}

/* 24px to the outer border */
.ep-body {
    height: 100%;
    padding: 24px;
    box-sizing: border-box;
    margin-bottom: 24px;
}

/* Grid: row1=title, row2=chart; col2=summary spanning both */
.ep-grid {
    height: 100%;
    grid-template-columns: 1fr 310px;
    grid-template-rows: auto 1fr;
    column-gap: 24px; /* chart ↔ summary */
    row-gap: 24px; /* title ↔ chart */
    align-items: start;
}

/* Title row */
.ep-header {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ep-title {
    font-family: 'Inter', var(--font-main);
    font-weight: 500;
    font-size: var(--fs-16);
    line-height: 24px;
    letter-spacing: -0.03em;
    color: var(--neutral-navy);
    margin-right: 4px;
}

.ep-icon {
    flex: 0 0 16px;
}

/* Annual Summary — top aligned with title (spans both rows) */

/* 16px from title to card border (top/left/right) */
.annual-summary__top {
    grid-column: 2;
    grid-row: 1 / span 2;
    height: 477px;
    background: var(--neutral-bg-pure);
    border: 1px solid var(--neutral-gray-border);
    border-radius: var(--radius-8);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    
}

.annual-summary__title {
    font-family: 'Inter', var(--font-main);
    font-weight: 600;
    font-size: var(--fs-16);
    line-height: 24px;
    color: var(--neutral-navy);
    margin-top: 16px;
    margin-left: 16px;
    margin-bottom: 24px;
}

/* 24px gap title → first card; 16px sides/bottom */
.annual-summary__cards {
    flex: 1;
    padding: 0 16px 16px 16px;
    display: flex;
    flex-direction: column;
   
}
