/* Container Layout */
.angie-eu-ai-act-container {
    width: 100%;
    margin: 0 auto;
}

.angie-eu-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.angie-eu-column-left {
    flex: 1;
    min-width: 300px;
}

.angie-eu-column-right {
    flex: 0 0 400px;
    max-width: 100%;
}

@media (max-width: 991px) {
    .angie-eu-content-wrapper {
        flex-direction: column;
    }
    
    .angie-eu-column-right {
        flex: 1;
        width: 100%;
    }
}

/* Left Column Styling */
.angie-eu-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background-color: #202C40; /* Fallback primary */
    border-radius: 4px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.angie-eu-headline {
    font-size: 32px;
    line-height: 1.3;
    color: #202C40;
    margin-bottom: 20px;
    font-weight: 700;
}

.angie-eu-body {
    font-size: 16px;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 30px;
}

/* Action Points List */
.angie-eu-action-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.angie-eu-action-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.angie-eu-check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: #EBF0F2; /* Fallback secondary */
    color: #202C40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    margin-top: 2px;
}

.angie-eu-action-text {
    font-size: 15px;
    color: #202C40;
    line-height: 1.5;
}


/* Right Column: Deadline Card */
.angie-eu-deadline-card {
    background-color: #F8F9FA;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.angie-eu-deadline-header {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.angie-eu-date {
    font-size: 36px;
    font-weight: 800;
    color: #202C40;
    line-height: 1;
    margin-bottom: 5px;
}

.angie-eu-deadline-label {
    font-size: 13px;
    text-transform: uppercase;
    color: #718096;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.angie-eu-deadline-subtext {
    font-size: 14px;
    color: #4A5568;
    margin-bottom: 25px;
    font-style: italic;
}

/* Stats Grid */
.angie-eu-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.angie-eu-stat-item {
    margin-bottom: 10px;
}

.angie-eu-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #202C40;
    line-height: 1.1;
    margin-bottom: 4px;
}

.angie-eu-stat-label {
    font-size: 12px;
    color: #718096;
    line-height: 1.3;
}


/* Sectors Section */
.angie-eu-sectors-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #202C40;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.angie-eu-sectors-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.angie-eu-sector-item {
    display: flex;
    align-items: flex-start;
}

.angie-eu-sector-icon {
    flex-shrink: 0;
    margin-right: 12px;
    color: #BBA364; /* Fallback accent */
    font-size: 16px;
    margin-top: 3px;
}

.angie-eu-sector-content {
    font-size: 14px;
    line-height: 1.4;
    color: #4A5568;
}

.angie-eu-sector-name {
    font-weight: 700;
    color: #202C40;
    margin-right: 4px;
}