.tistory-dashboard {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.top-loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    opacity: 0;
    z-index: 1200;
    pointer-events: none;
    background: linear-gradient(90deg, #2a8060 0%, #47b987 45%, #9ce4c5 100%);
    box-shadow: 0 0 12px rgba(62, 156, 116, .55);
    transition: width .7s cubic-bezier(.2, .78, .21, 1), opacity .2s ease;
}

.top-loading-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: -36px;
    width: 36px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.95));
    filter: blur(1px);
}

.top-loading-bar.is-active {
    width: 72vw;
    opacity: 1;
}

.tistory-card {
    min-width: 0;
    margin: 0;
    padding: 22px;
}

.tistory-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.tistory-card-head span {
    color: #6b887b;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
}

.tistory-card-head h2 {
    margin: 4px 0 0;
    font-size: 22px;
}

.tistory-card-head h2 a:hover {
    color: #275d4a;
}

.tistory-card-head > b {
    padding: 5px 8px;
    border-radius: 7px;
    background: #edf3f0;
    color: #426755;
    font-size: 12px;
}

.tistory-posts {
    display: grid;
}

.tistory-post {
    display: grid;
    gap: 6px;
    padding: 14px 2px;
    border-top: 1px solid #e7ebe9;
}

.tistory-post:hover strong {
    color: #275d4a;
}

.tistory-post strong {
    overflow: hidden;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tistory-post span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #89928e;
    font-size: 12px;
}

.tistory-post i {
    overflow: hidden;
    max-width: 70%;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tistory-post time {
    white-space: nowrap;
}

.naver-card .tistory-card-head span { color: #0b9f4d; }
.naver-card .tistory-card-head > b { background: #e7f8ee; color: #087a3d; }
.naver-post i { color: #65736c; }
.naver-post time { margin-left: auto; }

.tistory-error,
.tistory-empty {
    padding: 35px 10px;
    color: #8a9490;
    font-size: 12px;
    text-align: center;
}

.tistory-error {
    color: #a43d3d;
}

@media (max-width: 1050px) {
    .tistory-dashboard {
        grid-template-columns: 1fr;
    }
}
