.docs-home {
    padding: 2rem 1rem;
}

.docs-home h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 12px rgba(0, 150, 255, 0.18);
}

.docs-home .lead {
    color: var(--re-text-gray);
    max-width: 650px;
    margin-bottom: 2rem;
}

.home-section {
    margin-top: 2.5rem;
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
}

.home-card {
    display: block;
    padding: 1.2rem 1.4rem;
    background: var(--re-bg-dark);
    border-radius: 10px;
    text-decoration: none;
    color: var(--re-text-light);

    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;

    border: 1px solid rgba(0, 150, 255, 0.12);
    box-shadow: 0 0 6px rgba(0, 150, 255, 0.08);
}

.home-card h3 {
    margin: 0 0 0.4rem 0;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.home-card p {
    margin: 0;
    color: var(--re-text-gray);
    font-size: 0.95rem;
    line-height: 1.45;
}

.home-card:hover {
    background: #23272e;
    box-shadow: 0 0 12px rgba(0, 150, 255, 0.18);
    transform: translateY(-2px);
}

.docs-home code,
.home-section code,
p code,
li code {
    font-size: 1rem;
    border-radius: 4px;
}
