/* Hero section */
.hero {
    padding: 4rem;
    border-radius: 1rem;
}

.hero h1 {
    font-size: 3rem;
    padding: 1rem 1rem;
}

.hero h1 strong {
    color: #FF9500;
}

.hero p {
    font-size: 1.2rem;
    margin: 1rem;
    line-height: 1.6;
}

.hero .grid {
    gap: 1rem;
    margin: 0rem 1rem;
}

/* Card styling */
.hero article {
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 1rem;
}

.hero article header {
    background: none;
    border-bottom: 1px solid #f0f0f0;
}

.hero article ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero article li {
    list-style: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hero article li:last-child {
    border-bottom: none;
}

.hero article li div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero article li span {
    font-weight: 500;
}

.hero article li mark {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Status badge colors */
.hero article li mark.great-fit {
    background: #029764;
    color: white;
}

.hero article li mark.potential-fit {
    background: #7569DA;
    color: white;
}

.hero article li mark.not-a-fit {
    background: #D93526;
    color: white;
}
