.meta div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.meta img.icon {
    width: 1rem;
    height: auto;
}  

.city-image {
    width: 100%;
    height: auto;
    margin: 1rem 0;
}

.toc {
    background-color: var(--light-color);
    padding: 1rem;
    border-radius: 20px;
    margin: 2rem 0;
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-color);
}

.reading-time svg {
    color: var(--brand-color);
}

.reading-time span {
    font-size: 0.9rem;
}

/* Table of Contents styles */
.toc {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.toc h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.table-of-contents {
    margin-top: 1rem;
}

.table-of-contents ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.table-of-contents li {
    margin: 0.5rem 0;
}

.table-of-contents .toc-level-h2 {
    font-weight: 600;
}

.table-of-contents .toc-level-h2 ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.table-of-contents .toc-level-h3 {
    font-weight: normal;
    font-size: 0.95em;
}

.table-of-contents a {
    color: #333;
    text-decoration: underline;
    transition: color 0.2s;
}

.table-of-contents a:hover {
    color: var(--brand-color);
}

/* Indent levels */
.toc-level-2 {
    margin-left: 0;
}

.toc-level-3 {
    margin-left: 1.5rem;
    font-size: 0.95em;
}

