html {
    scroll-behavior: smooth;
}

.scroll-indicator.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        pointer-events: none;
    }
}

footer {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #ccc;
    font-size: 0.9rem;
    color: #666;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.brand-title {
    font-family: "Asset", cursive;
    font-size: clamp(2rem, 12vw, 8rem);
    font-weight: 700;
    letter-spacing: -2px;
    border-radius: 20px;
    max-width: 90vw;
}

@media (max-width: 50em),
(hover: none) and (pointer: coarse) {
    .brand-title {
        font-size: clamp(1.5rem, 8vw, 4rem);
    }
}

.hero-nav {
    margin-top: 20px;
}

.hero-nav a {
    text-decoration: none;
    color: inherit;
    margin: 0 15px;
    font-size: 1.8rem;
}

@media (max-width: 50em),
(hover: none) and (pointer: coarse) {
    .hero-nav a {
        font-size: 1.2rem;
        margin: 0 10px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Article List */
.article-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: none;
}

.article-preview {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 500px;
    text-decoration: none;
    color: inherit;
    padding: 20px;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.article-preview:hover {
    background-color: #f5f5f5;
}

.article-preview-image {
    width: 120px;
    height: 120px;
    background-color: #a0644e;
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.article-preview-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.article-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: #a0644e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.article-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.article-meta {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

.section-header {
    color: #a0644e;
    font-weight: 400;
    width: 100%;
    max-width: 500px;
    padding: 20px 0;
    margin-top: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-header::before,
.section-header::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: #a0644e;
}

.article-item {
    padding: 15px 0;
    font-size: 1.1rem;
}