body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin: 0;
}

* {
    box-sizing: border-box;
}

:root {
    --font-body: "Inter", system-ui, sans-serif;
    --color-text: #737373;
    --color-text-button: #242424;
    --color-background: #f4f4f4;
    --color-card: white;
    --line-height: 1.6rem;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 10vh;
    padding-bottom: 10vh;
    gap: 4rem;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-background);
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 736px;
    gap: 2rem;
}

.grid {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

.header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
}

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

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 0;
    border-radius: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1rem;
    right: -1rem;
    border-radius: 0.5rem;
    background: transparent;
    z-index: -1;

}

.card:hover::before {
    background-color: #ededed;
}

h1 {
    font-size: 3rem;
    line-height: 4rem;
    font-weight: 700;
}

p {
    max-width: 100%;
    font-size: 1rem;
    line-height: var(--line-height);
    font-weight: 400;
}

.p-title {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--color-text-button);
}

.p-title img {
    width: 1rem;
    height: 1rem;
    border-radius: 0px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8rem;
    font-size: 0.8rem;
    line-height: 1rem;
    background-color: #dfdfdf;
    color: var(--color-text-button);
    margin-top: 0.25rem;
}

.tag img {
    width: 1rem;
    height: 1rem;
    border-radius: 0px;
}

.text-button {
    display: inline-flex;
    color: var(--color-text-button);
    border: none;
    font-size: 1rem;
    line-height: var(--line-height);
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
}

.text-button:hover {
    text-decoration: underline;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.hero-img {
    width: 4rem;
}

.card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

@media (max-width: 700px) {
    .grid {
        flex-direction: column;
        gap: 0;
    }

    .column {
        width: 100%;
    }
}