/* Articles page specific styling */

/* Remove sticky header */
header {
    margin-bottom: 2rem;
    padding: 2rem 0 1rem;
    border-bottom: 1px solid #222;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.breadcrumb a {
    color: #888;
    border-bottom: none;
}

.breadcrumb a:hover {
    color: #fff;
}

/* Scrollable articles section */
.articles-list {
    height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
    scrollbar-width: thin;
    scrollbar-color: #333 #111;
}

/* Custom scrollbar styling */
.articles-list::-webkit-scrollbar {
    width: 8px;
}

.articles-list::-webkit-scrollbar-track {
    background: #111;
    border-radius: 4px;
}

.articles-list::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.articles-list::-webkit-scrollbar-thumb:hover {
    background: #444;
}

.article-preview {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #222;
    position: relative;
    transition: transform 0.2s ease;
    padding-left: 1rem;
}

.article-preview:hover {
    transform: translateX(5px);
}

.article-preview:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.article-preview h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    border-bottom: none;
}

.article-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background-color: #151515;
    border-radius: 3px;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    border-bottom: none;
    position: relative;
    padding: 0.5rem 1.5rem 0.5rem 0;
}

.read-more::after {
    content: "→";
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
} 