body {
    margin: 0;
    font-family: var(--font-titels), sans-serif;
    background-color: var(--backsingle-color);
    color: hsl(282.46deg 8% 15%);
}

.content-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
}

.main-content {
    width: 75%;
    background: #fff;
    border-radius: 15px;
}

.sidebar {
    width: 25%;
    background: #fff;
    padding: 10px;
    border-right: 1px solid #ececec;
}

.post-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.post-author {
    font-size: 17px;
    color: #777;
    margin-bottom: 15px;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    margin-bottom: 30px;
}

.post-text {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 992px) {
    .content-container {
        flex-direction: column;
        margin-top: 32px;
        display: flex;
        align-items: center;
    }

    .sidebar {
        width: 100%;
        order: 2;
        border: none;
    }

    .main-content {
        width: 100%;
        order: 1;
    }
}

.post-tags {
    margin-top: 15px;
}

.post-tags a {
    display: inline-block;
    margin: 5px 3px;
    padding: 2px 10px;
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    border: 2px solid #ececec;
    border-radius: 10px;
}

.post-tags a:hover {
    color: #0c6dc8;
}

.post-date {
    font-size: 1rem;
    display: flex;
    color: #777;
    font-family: var(--font-titels);
    gap: 5px;
}

.post-meta-container {
    display: flex  ;
        justify-content: space-between;
        font-size: 14px;
        color: #777;
        margin-bottom: 15px;
        background-color: #effaff;
        padding: 5px;
        border-radius: 21px;
        padding-right: 10px;
        padding-left: 10px;
}

.post-viewcomment {
    display: flex;
}

.post-views {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.post-comments {
    display: flex;
    align-items: center;
}

.post-comments img,
.post-views img {
    width: 31px;
    height: 31px;
}

.f-comment {
    font-family: var(--font-titels);
    line-height: 0;
    font-size: 1rem;
}

.f-view {
    font-family: var(--font-titels);
    line-height: 0;
    font-size: 1rem;
}

.place-details-box {
    margin-bottom: 20px;
}

.place-details-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.place-details-box li {
    margin-bottom: 12px;
    font-size: 14px;
    padding: 10px 14px;
    background-color: #f8fbff;
    border: 2px solid #bee2ff;
    border-radius: 10px;
    text-align: right;
    font-family: 'yekan';
    color: #232323;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.place-details-box li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.place-details-box li img {
    width: 20px;
    height: 20px;
}

.place-links-container {
    margin-top: 20px;
}

.place-links-box {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.place-links-box .link-item {
    margin: 8px 0;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.place-links-box .link-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.place-links-box .link-item img {
    width: 24px;
    height: 24px;
}

.place-links-box .link-item a {
    color: #e0e7ff;
    text-decoration: none;
    font-family: 'yekan';
    font-size: 14px;
    flex-grow: 1;
}

.place-links-box .link-item a:hover {
    color: #ffffff;
}

.share-container {
    margin-top: 10px;
    margin-bottom: 30px;
}

.share-container .share-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f3f4f6;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'yekan';
    color: #232323;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.share-container .share-link::-webkit-scrollbar {
    display: none;
}

.share-container .share-link:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.share-container .share-link:active {
    transform: scale(0.98);
}

.share-container .share-link img {
    width: 24px;
    height: 24px;
}

.share-container .share-link span {
    flex-grow: 1;
}





.place-info{padding-bottom: 20px;}