.ae-homo-hub {
    margin: 40px auto;
    max-width: 1180px;
}

.ae-homo-intro {
    background: #f7f9fc;
    border: 1px solid #e5e9f2;
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 28px;
}

.ae-homo-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1d4ed8;
    background: #eaf1ff;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.ae-homo-intro h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.ae-homo-filters {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
}

.ae-homo-filters input,
.ae-homo-filters select {
    width: 100%;
    border: 1px solid #d7dce5;
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 1rem;
    background: #fff;
}

.ae-homo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ae-homo-card {
    background: #fff;
    border: 1px solid #e5e9f2;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.ae-homo-card h3 {
    font-size: 1.15rem;
    margin: 12px 0;
}

.ae-homo-sector {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #065f46;
    background: #dff8ec;
    padding: 5px 10px;
    border-radius: 999px;
}

.ae-homo-btn {
    display: inline-block;
    margin-top: 12px;
    background: #1d4ed8;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 10px;
}

.ae-homo-btn:hover {
    color: #fff;
    opacity: 0.9;
}

.ae-homo-soon {
    display: inline-block;
    margin-top: 12px;
    background: #fff7ed;
    color: #9a3412;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 10px;
}

.ae-homo-hidden {
    display: none !important;
}

@media (max-width: 900px) {
    .ae-homo-filters {
        grid-template-columns: 1fr;
    }

    .ae-homo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ae-homo-grid {
        grid-template-columns: 1fr;
    }

    .ae-homo-intro {
        padding: 22px;
    }
}