@media (min-width: 801px) {
      .content {
          margin-left: 20px;
      }
  }

/* ---- Fullstory Redesign ---- */
.post--full {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 0;
}

.post__breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.85rem;
    color: #636674;
    margin-top: 20px;
    margin-bottom: 20px;
}
.post__breadcrumbs:empty {
    display: none;
    margin: 0;
}
.post__breadcrumbs a {
    color: #636674;
    transition: color 0.2s;
}
.post__breadcrumbs a:hover {
    color: #1677ff;
}
.post__breadcrumbs-sep {
    color: #4a4c5e;
}
.post__breadcrumbs-current {
    color: #9a9cae;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 400px;
}

.post--full .post__poster {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}
.post--full .post__poster img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.post--full .post__screenshots {
    margin-bottom: 20px;
}

.post__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #1e2027;
}
.post__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #636674;
}
.post__meta-item i {
    font-size: 1rem;
    color: #808290;
}

.post__author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #636674;
}
.post__author-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}
.post__author-link:hover {
    color: #1677ff;
}
.post__author-foto {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
}
.post__author-name {
    font-size: 0.9rem;
    font-weight: 500;
}
.post__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}
.post__action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: #636674;
    cursor: pointer;
    transition: color 0.2s;
}
.post__action-btn:hover {
    color: #1677ff;
}
.post__action-btn--active {
    color: #1677ff;
}

.post--full .post__content {
    margin-bottom: 0;
}

.post--full .download__title {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00a261;
    letter-spacing: 1px;
}

.post--full .nodownload {
    margin-top: 15px;
}

.post--full .post__banner {
    margin-top: 20px;
}

.post--full .info {
    grid-template-columns: 1fr auto;
    align-items: center;
}
.btn-info-go {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    background-color: #1677ff;
    color: #fff;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s;
}
.btn-info-go:hover {
    background-color: #0d5ecf;
}

.content:has(.post--full) {
    padding-top: 0;
}

[data-theme="light"] .feedback__title {
    color: #1e1e2d;
}

@media (max-width: 580px) {
    .post__breadcrumbs-current {
        max-width: 200px;
    }
    .post__meta {
        gap: 12px;
    }
}
