.single-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 20px;
}
.single-content {
    flex: 1;
}
.breadcrumbs {
    font-size: 14px;
    margin-bottom: 15px;
    color: #666;
}
.breadcrumbs a {
    text-decoration: none;
    color: var(--primary-color);
}
.breadcrumbs span {
    color: #333;
    font-weight: bold;
}
.single-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1;
}
.single-excerpt {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}
.single-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
    pointer-events: none;
    user-select: none;
}
.single-content-body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}
.single-content-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    pointer-events: none;
    user-select: none;
}
header img {
    max-width: none;
    width: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 20px;
}
table th {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    border-bottom: 2px solid var(--primary-color);
}
table td {
    padding: 12px 15px;
    border-bottom: 2px solid var(--primary-color);
    border-top: 2px solid var(--primary-color);
    font-size: 0.95rem;
    color: #333;
}

table tr {
    background-color: #004aad29;
}
@media (max-width: 768px) {
    table {
        font-size: 0.85rem;
    }
    table th,
    table td {
        padding: 10px;
    }
}
.single-sidebar {
    width: auto;
}
.goback-wrapper {
    margin: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.goback-wrapper a {
    color: var(--text-color);
    font-family: Inter, serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    display: block;
    width: max-content;
    padding: 0.75rem 2.25rem;
    border-radius: 48px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--primary-color);
    cursor: pointer;
    text-align: center;
}
.goback-wrapper a:hover {
    color: var(--primary-color);
}
.related-posts {
    margin-top: 30px;
}
.related-posts .current-post-title {
    font-weight: bold;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
}
.related-posts .current-post-title a {
    color: var(--primary-color);
    text-decoration: none;
}
.related-posts ul {
    list-style-type: none;
    padding-left: 0;
}
.related-posts ul li {
    font-size: 1rem;
    margin-bottom: 10px;
}
.related-posts .active-post a {
    font-weight: bold;
    color: var(--primary-color);
}
.related-posts ul li a {
    color: #333;
    text-decoration: none;
}
.related-posts ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
@media (max-width: 768px) {
    .single-container {
        flex-direction: column;
        padding: 10px;
    }
    .single-sidebar {
        margin-top: 20px;
    }
    .goback-wrapper {
        margin-top: 20px;
    }
}
.single-content-body a {
    color: var(--primary-color);
    text-decoration: none;
}
.single-content-body a:hover {
    text-decoration: underline;
}
.single-content-body li::marker {
    color: var(--primary-color);
}