/* ==========================================================================
   sectors.css — Dedicated Stylesheet for sectors.html (Sectors)
   ========================================================================== */

/* ============ SECTORS GRID SECTION ============ */
.sectors-section {
    background: var(--bg-light);
    padding: 64px 0;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* --- Sector Card Container --- */
.sector-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sector-card:hover {
    box-shadow: 0 20px 40px rgba(45,106,79,0.08);
    transform: translateY(-4px);
}

/* --- Sector Card Header Row --- */
.sector-card__row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.sector-card__info {
    text-align: right;
    flex: 1;
}

.sector-card__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: var(--text-dark);
}

/* --- Tags & Icons --- */
.sector-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    justify-content: flex-end;
}

.sector-card__tag {
    background: var(--bg-light);
    color: var(--green-800);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 9999px;
}

.sector-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* --- Card Description --- */
.sector-card__desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 22.75px;
    margin-top: 20px;
    text-align: right;
}
