@import url('https://fonts.googleapis.com/css2?family=Ivyora+Display:wght@400;700&display=swap');

body {
    font-family: "ivyora-display", sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
    background-color: #1a1a1a;
    color: #e0e0e0;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
}

.top-headline {
    font-size: 24px;
    margin-bottom: 20px;
    color: #e0e0e0;
    font-weight: 600;
}

.sub-headline {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #e0e0e0;
}

img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

p {
    margin-bottom: 20px;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #333;
    transition: background-color 0.2s, transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    z-index: 1000;
}

.back-button:hover {
    transform: scale(1.05);
    border-color: #60a5fa;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}


.article-category {
    color: #00d9ff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    border-left: 3px solid #00d9ff;
    padding-left: 10px;
}