@font-face {
    font-family: 'airbnb';
    src: url('/fonts/AirbnbCereal_W_Lt.otf') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'airbnb';
    src: url('/fonts/AirbnbCereal_W_Md.otf') format('woff2');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: "airbnb", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #ffffff;
}

h5 {
    color: #333333;
    font: "airbnb";
    font-weight: 400;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

p {
    color: #333333;
    font: "airbnb";
    font-weight: 300;
    color: 333333;
}

.cover-content p {
    width: 50%;
    font: "airbnb", "Segoe UI", Roboto, sans-serif;
    font-weight: 300;
}

.comment p {
    font: "airbnb", "Segoe UI", Roboto, sans-serif;
    font-weight: 300;
    border: 1px solid #533527;
    text-align: center;
    padding: 1rem;
    width: fit-content;
    margin: 2rem auto;
}

.cover-img img {
    width: 100%;
    height: 100vh;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.cover-content {
    position: absolute;
    left: 5%;
    top: 60%;
}

.card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.content {
    flex: 1;
}

.title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.title .lock-icon {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

.description {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

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