.ejes-container {
    width: 100%;
}

.ejes-header {
    text-align: center;
    margin-bottom: 40px;
}

.ejes-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cda34f; /* default goldish */
    margin: 0 0 10px 0;
}

.ejes-title {
    font-size: 42px;
    font-weight: 400;
    color: #1a3c34; /* default dark green */
    margin: 0 0 15px 0;
    font-family: serif;
}

.ejes-divider {
    width: 60px;
    height: 3px;
    background-color: #cda34f;
    margin: 0 auto;
}

.ejes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .ejes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.ejes-card {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 5px solid #ccc; /* fallback, overridden by dynamic controls */
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

.ejes-card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.ejes-card-number {
    font-size: 48px;
    font-weight: 300;
    color: #d8e2dc;
    line-height: 1;
    margin-bottom: 15px;
    font-family: serif;
}

.ejes-card-icon {
    font-size: 45px;
    color: #3b5f54;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ejes-card-icon svg {
    width: 45px;
    height: 45px;
    fill: #3b5f54;
}

.ejes-card-right {
    flex: 1;
}

.ejes-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a3c34;
    margin: 0 0 10px 0;
    font-family: serif;
    line-height: 1.3;
}

.ejes-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}
