@font-face {
    font-family: 'Ubuntu';
    src: url('/static/fonts/Ubuntu-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('/static/fonts/Ubuntu-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('/static/fonts/Ubuntu-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    letter-spacing: -0.2px;
}

.custom-nav {
    border-bottom: 1px solid #e5e5e5;
    background-color: #ffffff;
}

.brand-name {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a1a1a;
    text-decoration: none;
}

.post-item {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
}

.post-item:last-child {
    border-bottom: none;
}

.post-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
    color: #666666;
    letter-spacing: 1px;
}

.read-more-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.read-more-link:hover {
    opacity: 0.6;
    color: #1a1a1a;
}

.sidebar-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.sidebar-text {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
}