:root {
    --bg: #fff;
    --text: #000;
    --muted: #555;
    --line: #d8d8d8;
    --space: clamp(20px, 4vw, 56px);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
    color: var(--text);
    font-family: Montserrat, Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.5;
}

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

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px var(--space);
}

.logo,
.site-footer {
    font-weight: 700;
    letter-spacing: -0.06em;
}

.logo {
    font-size: 48px;
    line-height: 1;
}

.socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.socials a {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
}

.socials img {
    width: 44px;
    height: 44px;
    display: block;
}

.site-main {
    padding: 20px var(--space) 64px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 28px;
}

.entry-card {
    min-width: 0;
}

.entry-image {
    display: grid;
    width: 100%;
    aspect-ratio: 1;
    place-items: center;
    overflow: hidden;
    background: #fff;
}

.entry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.entry-image span {
    padding: 20px;
    text-align: center;
    font-weight: 700;
}

.entry-card h2 {
    margin: 14px 0 0;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.landing {
    max-width: 860px;
    margin: 0 auto;
}

.landing h1 {
    margin: 0 0 28px;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.landing-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.back-home {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
}

.back-home img {
    display: block;
    width: 44px;
    height: 44px;
}

.landing img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 32px;
}

.landing-content {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.7;
}

.landing-content p {
    margin: 0 0 22px;
}

.site-footer {
    padding: 36px var(--space);
    text-align: center;
    font-size: 24px;
}

@media (max-width: 900px) {
    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .site-header {
        padding-top: 22px;
    }

    .logo {
        font-size: 48px;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}
