.site {
    max-width: var(--max-width);
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.15));
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
}

@media only screen and (max-width: 720px) {
    .site {
        border-radius: 0px;
        padding: 20px;
    }
}

header {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

@media only screen and (max-width: 720px) {
    header {
        gap: 0px;
    }
}

.brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand img {
    height: 92px;
    width: auto
}

.title h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: 1px;
    font-weight: 800;
    text-transform: uppercase
}

.title p {
    margin: 0;
    font-size: 15px;
    color: var(--muted);
    font-weight: 600
}

.logo-hero img {
    width: 112px;
}

@media only screen and (max-width: 720px) {
    .logo-hero img {
        display: none;
    }
}

main {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap)
}

.row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}