* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", "PingFang SC", "Hiragino Sans GB", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 233, 196, 0.9), transparent 32%),
        radial-gradient(circle at bottom right, rgba(182, 226, 255, 0.9), transparent 28%),
        linear-gradient(135deg, #f7f1e7 0%, #eef5ff 100%);
    color: #1d2433;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.home-shell {
    width: 100%;
    max-width: 980px;
    display: grid;
    gap: 24px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 18px 60px rgba(37, 53, 87, 0.12);
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #7a6a55;
    margin-bottom: 12px;
}

h1 {
    font-size: 32px;
    font-weight: 700;
}

.hero-copy {
    margin-top: 10px;
    font-size: 16px;
    color: #5f6675;
}

.entry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.entry-card {
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(83, 104, 138, 0.12);
    border-radius: 22px;
    padding: 26px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.entry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(37, 53, 87, 0.12);
    border-color: rgba(83, 104, 138, 0.24);
}

.entry-tag {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1e4d2;
    color: #7d5d2f;
    font-size: 12px;
    margin-bottom: 18px;
}

.entry-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.entry-card p {
    color: #5f6675;
    line-height: 1.6;
}

@media (max-width: 720px) {
    .entry-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        padding: 24px;
        border-radius: 20px;
    }

    h1 {
        font-size: 28px;
    }
}
