/* Tag Cloud Styles */
.tag-cloud {
    background-color: #fdf9f4;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.tag-cloud h3 {
    margin-bottom: 20px;
    color: #483452;
}

.tag-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tag-buttons a {
    margin: 5px;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tag-buttons a:hover {
    background-color: #f8c4a8;
    color: white;
    transform: translateY(-2px);
}

/* Story Tags Styles */
.story-tags {
    margin-top: 10px;
    margin-bottom: 15px;
}

.story-tags i {
    color: #000000;
    margin-right: 5px;
}

.story-tags a {
    display: inline-block;
    padding: 3px 8px;
    margin: 2px;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.story-tags a:hover {
    background-color: #f8c4a8;
    color: white;
}

/* Article Tags Container */
.tags-container {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tags-container a {
    margin: 5px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tags-container a:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   New Kansas Font
   ========================================================================== */
@font-face {
    font-family: 'New Kansas';
    src: url('../../fonts/New Kansas Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'New Kansas';
    src: url('../../fonts/New Kansas Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'New Kansas';
    src: url('../../fonts/New Kansas SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'New Kansas';
    src: url('../../fonts/New Kansas Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'New Kansas';
    src: url('../../fonts/New Kansas Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'New Kansas', serif;
}