:root {
    font-family: "Poppins", "Inter", "Nunito", system-ui, sans-serif;
    --cream: #fff8f1;
    --rose: #ffdfe6;
    --lavender: #ede7ff;
    --text: #2b2437;
    --muted: #5a5166;
    --cta: #ff8ba7;
}

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

body {
    background: linear-gradient(135deg, var(--rose), var(--lavender));
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
}

img {
    max-width: 100%;
    border-radius: 26px;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tag {
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(43, 36, 55, 0.7);
}

h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.3rem);
    line-height: 1.2;
}

p {
    color: var(--muted);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.card {
    padding: 2rem;
    border-radius: 26px;
    background: white;
    box-shadow: 0 20px 40px rgba(31, 28, 45, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    width: fit-content;
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.7rem;
    background: var(--cta);
    color: white;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.back-link {
    font-weight: 600;
    display: inline-flex;
    gap: 0.4rem;
}
