.home-hero {
    padding: 3rem 0 3rem 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 2.5rem;
}

.home-hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.home-hero-sub {
    color: #666;
    font-size: 0.97rem;
    margin: 0 0 1.75rem 0;
}

.home-hero-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.home-hero-btn {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    background: #222;
    color: #fff;
    border: 1.5px solid #222;
}

.home-hero-btn:hover {
    background: #000;
    border-color: #000;
}

.home-hero-btn--outline {
    background: transparent;
    color: #333;
    border-color: #ccc;
}

.home-hero-btn--outline:hover {
    border-color: #333;
    color: #000;
}

.home-sections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.home-section-card {
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    padding: 1.5rem;
    background: #fff;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-section-card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    border-color: #bbb;
}

.home-section-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: #f4f4f4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    margin-top: 0.1rem;
}

.home-section-body {
    flex: 1;
}

.home-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.35rem 0;
}

.home-section-title a {
    text-decoration: none;
    color: inherit;
}

.home-section-title a:hover {
    text-decoration: underline;
}

.home-section-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.55;
    margin: 0 0 0.85rem 0;
}

.home-section-link {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border-bottom: 2px solid #333;
    padding-bottom: 1px;
    transition: color 0.15s, border-color 0.15s;
}

.home-section-link:hover {
    color: #000;
    border-color: #000;
}

.home-featured-header {
    margin-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.75rem;
}

.home-featured-header h2 {
    margin-bottom: 0.2rem;
}

.home-featured-sub {
    font-size: 0.82rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

.home-featured-card {
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    padding: 1.5rem;
    background: #fff;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-featured-card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    border-color: #bbb;
}

.home-featured-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.home-featured-card p {
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 0.35rem 0;
    line-height: 1.55;
}

.home-featured-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .home-hero-title {
        font-size: 1.5rem;
    }

    .home-sections {
        grid-template-columns: 1fr;
    }
}