:root {
    color-scheme: light;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #241c2f;
    background: #fff7fb;
    font-synthesis: none;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at top left, rgba(255, 84, 149, 0.12), transparent 28rem),
        linear-gradient(180deg, #fff7fb 0%, #ffffff 18rem);
}

main {
    width: min(100% - 32px, 860px);
    margin: 0 auto;
    padding: 56px 0 80px;
}

article {
    padding: clamp(24px, 6vw, 64px);
    border: 1px solid #f0dce6;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(71, 35, 58, 0.1);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 24px;
    color: #b51657;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h2 {
    margin: 40px 0 14px;
    color: #35263f;
    font-size: clamp(1.3rem, 3vw, 1.65rem);
    line-height: 1.25;
}

h3 {
    margin: 28px 0 12px;
    color: #5f3e52;
    font-size: 1.08rem;
    line-height: 1.4;
}

p {
    margin-bottom: 14px;
    color: #514759;
    font-size: 1rem;
    line-height: 1.78;
}

a {
    color: #b51657;
    font-weight: 650;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

@media (max-width: 600px) {
    main {
        width: min(100% - 20px, 860px);
        padding: 20px 0 40px;
    }

    article {
        border-radius: 20px;
    }
}
