body.home-page {
    min-height: 100vh;
    margin: 0;
    background: #eef3fb;
    color: #0f172a;
    font-family: Arial, Helvetica, sans-serif;
}

.home-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.home-card {
    width: min(100%, 1280px);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    text-align: center;
}

.home-card .lead {
    max-width: 760px;
    line-height: 1.7;
}

.week-tile {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid #dbe3ef;
    border-radius: 16px;
    background: #ffffff;
    color: #020617;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.week-tile:hover {
    transform: translateY(-3px);
    border-color: #2f6fed;
    box-shadow: 0 16px 30px rgba(47, 111, 237, 0.12);
}

.week-tile strong {
    font-size: 1.15rem;
}

.week-tile span {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .home-shell {
        align-items: flex-start;
        padding: 1rem;
    }

    .home-card {
        border-radius: 16px;
    }
}
