/* ===== EU Project Subpage Styles ===== */

/* Hero */
.ue-hero {
    padding: 0 0 40px;
}
.ue-banner-full {
    width: 100%;
    background: #fff;
    padding: 28px 0;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 36px;
}
.ue-hero-banner {
    max-width: 860px;
    width: 90%;
    height: auto;
    display: block;
}
.ue-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 20px;
}
.ue-hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    max-width: 640px;
    line-height: 1.4;
}

/* Content area */
.ue-content {
    background: #f6f8fa;
    padding-bottom: 60px;
}
.ue-content-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Cards */
.ue-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 40px;
    box-shadow: 0 2px 16px rgba(0, 162, 184, 0.08);
    border-left: 4px solid #00b9d2;
}
.ue-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #00A2B8;
    margin-top: 0;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.ue-card-text {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 12px;
}
.ue-card-text:last-child {
    margin-bottom: 0;
}

/* Task list */
.ue-task-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ue-task-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #4a5568;
    line-height: 1.6;
    padding: 12px 16px;
    background: #f8fcfd;
    border-radius: 8px;
}
.ue-task-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 28px;
    background: linear-gradient(65deg, #00A2B8 -25%, #00CFEB 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Markets */
.ue-markets {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}
.ue-market-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e6f7fb 0%, #f0faf5 100%);
    border: 1px solid #00b9d230;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    color: #2d3748;
}
.ue-market-flag {
    font-size: 1.6rem;
}

/* Financials */
.ue-financials {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.ue-financial-item {
    flex: 1;
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 2px 16px rgba(0, 162, 184, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ue-financial-item--highlight {
    border: 2px solid #00b9d2;
    background: linear-gradient(135deg, #e6f7fb 0%, #f0faf5 100%);
}
.ue-financial-label {
    font-size: 0.85rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.ue-financial-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #00A2B8;
    letter-spacing: -0.01em;
}

/* Hashtags */
.ue-hashtags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 8px;
}
.ue-hashtag {
    background: linear-gradient(65deg, #00A2B8 -25%, #00F9D2 100%);
    color: #fff;
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

/* Responsive */
@media (max-width: 640px) {
    .ue-card {
        padding: 24px 20px;
    }
    .ue-financials {
        flex-direction: column;
    }
    .ue-markets {
        flex-direction: column;
    }
    .ue-financial-value {
        font-size: 1.3rem;
    }
}
