:root {
    --black: #09090B;
    --white: #fff;

    --primary: #F59E0B;
    --secondary: #06B6D4;
    --border: #27272A;

    --success: #22C55E;
    --error: #EF4444;

    --warning-50: #fffaeb;
    --warning-500: #f79009;
    --warning-600: #dc6803;
    --warning-700: #b54708;
    --warning-900: #7a2e0e;

    --gray-50: #f9fafb;
    --gray-100: #f2f4f7;
    --gray-200: #e4e7ec;
    --gray-300: #d0d5dd;
    --gray-400: #98a2b3;
    --gray-500: #667085;
    --gray-600: #475467;
    --gray-700: #344054;
    --gray-800: #1d2939;
    --gray-900: #0b0b0c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--white);
    background-color: var(--black);
}

ul {
    list-style: none;
}
a {
    display: inline;
    text-decoration: none;
    color: var(--accent);
}
img {
    display: block;
    max-width: 100%;
}
button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}
h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
}
h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
}
h3 {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 4.6rem;
    padding: 1rem 2rem;
    border: 0;
    border-radius: 2.4rem;
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.btn-primary {
    color: var(--white);
    background: var(--brand-500);
}
.btn-primary:hover {
    color: var(--white);
    background: var(--brand-600);
}
.btn-secondary {
    color: var(--gray-200);
    background: #303030;
}
.btn-secondary:hover {
    color: var(--white);
    background: #3a3a3a;
}

@media (max-width:365px) {
    html {
        font-size: 55%;
    }
}

/* Content */
.main-container {
    padding: 4rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.main-content {
    width: 100%;
    max-width: 115rem;
    padding: 0 2rem;
}
.main-grid {
    display: grid;
    gap: 4rem 2rem;
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.gap-40 {
    gap: 4rem;
}
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(1, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.article-title {
    text-align: left;
    margin-bottom: 4rem;
}
.article-title h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
}
.article-title p {
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--gray-400);
}

.section-title {
    text-align: left;
    margin-bottom: 2rem;
}
.section-title h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
}
.article-title p {
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--gray-400);
}