.story-detail-page {
    padding-top: 28px;
    padding-bottom: 20px;
}

.story-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(16, 24, 40, 0.08);
    z-index: 1040;
    pointer-events: none;
}

.story-reading-progress-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #0b74c8 0%, #101828 100%);
    transition: width .08s linear;
}

.story-main-column {
    margin-bottom: 36px;
}

.story-detail-article {
    background: #fff;
    border: 1px solid #eef1f4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16, 24, 40, .05);
}

.story-hero {
    position: relative;
    background: #f8fafc;
}

.story-hero img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 520px;
}

.story-hero-meta {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.story-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.16);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.story-body-shell {
    padding: 16px 18px 22px;
}

.story-title-box {
    margin-bottom: 14px;
}

.story-title-box .entry-title {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: #101828;
}

.story-lead-box {
    margin-bottom: 14px;
    padding: 14px 16px;
    border-left: 4px solid #f59e0b;
    background: #fffaf0;
    border-radius: 12px;
}

.story-lead-box p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #475467;
}

.author-highlight-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding: 14px 16px;
    border: 1px solid #eaecf0;
    border-radius: 14px;
    background: #fcfcfd;
}

.story-travel-info-box {
    position: relative;
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 10px 24px rgba(16, 24, 40, .06);
    overflow: hidden;
}

.story-quick-summary-strip {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 14px;
    padding: 11px 12px 11px 16px;
    border: 1px solid #f0d7d7;
    border-radius: 10px;
    background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
    box-shadow: 0 8px 18px rgba(16, 24, 40, .05);
    overflow: hidden;
}

.story-quick-summary-strip:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #d90000;
}

.story-quick-summary-strip span {
    display: inline-flex;
    max-width: 100%;
    padding: 6px 10px;
    border: 1px solid #f0caca;
    border-radius: 999px;
    background: #fff;
    color: #101828;
    font-size: 13px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.story-detail-info-after-content {
    margin-top: 20px;
}

.story-border-experience-box {
    position: relative;
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 10px 24px rgba(16, 24, 40, .06);
    overflow: hidden;
}

.story-border-experience-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #101828;
}

.story-border-experience-line {
    display: flex;
    gap: 6px;
    align-items: baseline;
    min-width: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #101828;
}

.story-border-experience-line span:first-child {
    flex: 0 0 auto;
    color: #667085;
}

.story-border-experience-line span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
}

.story-travel-info-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #d90000;
}

.story-travel-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.story-travel-info-item {
    position: relative;
    min-width: 0;
    padding: 12px;
    border: 1px solid #edf0f3;
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
}

.story-travel-info-item-wide {
    grid-column: 1 / -1;
}

.story-travel-info-label {
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #667085;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.story-travel-info-value {
    overflow-wrap: anywhere;
    font-size: 14px;
    line-height: 1.5;
    color: #101828;
}

.story-travel-info-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.story-travel-info-chip {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 5px 9px;
    border-radius: 999px;
    border: 1px solid #e4e7ec;
    background: #f9fafb;
    color: #101828;
    font-size: 13px;
    line-height: 1.25;
    overflow-wrap: anywhere;
    text-decoration: none;
    transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}

a.story-travel-info-chip:hover,
a.story-travel-info-chip:focus {
    border-color: #d90000;
    background: #fff5f5;
    color: #b80000;
    text-decoration: none;
}

.story-travel-info-note {
    margin-top: 12px;
    padding: 11px 12px;
    border: 1px solid #edf0f3;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    line-height: 1.6;
    color: #475467;
}

.author-highlight-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.author-highlight-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #101828;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    flex: 0 0 52px;
}

.author-highlight-avatar:hover,
.author-highlight-name:hover {
    text-decoration: none;
}

.author-highlight-label {
    font-size: 12px;
    color: #667085;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 700;
}

.author-highlight-name {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #101828;
    line-height: 1.3;
}

.author-highlight-username {
    font-size: 13px;
    color: #667085;
    margin-top: 2px;
}

.author-follow-btn {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    background: #101828;
    color: #fff;
    transition: .2s ease;
}

.author-follow-btn.is-following {
    background: #eaecf0;
    color: #344054;
}

.ts-v2-detail-author-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ts-v2-author-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    border: 0;
    border-radius: 7px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.15;
    text-decoration: none;
    transition: background-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.ts-v2-author-action:before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 7px;
    border-radius: 999px;
    background: currentColor;
}

.ts-v2-author-action--travel {
    background: #d6294b;
    color: #fff;
}

.ts-v2-author-action--travel:hover,
.ts-v2-author-action--travel:focus {
    background: #bd1f3d;
    color: #fff;
}

.ts-v2-author-action--marketing {
    background: #0f66c2;
    color: #fff;
}

.ts-v2-author-action--marketing:hover,
.ts-v2-author-action--marketing:focus {
    background: #0b58a8;
    color: #fff;
}

.ts-v2-author-action--technology {
    background: #f2c400;
    color: #101828;
}

.ts-v2-author-action--technology:hover,
.ts-v2-author-action--technology:focus {
    background: #ddb300;
    color: #101828;
}

.story-banner-box {
    margin-bottom: 16px;
}

.story-banner-box img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

#maincontent {
    font-size: 16px;
    line-height: 1.9;
    color: #344054;
}

#maincontent p {
    margin-bottom: 16px;
}

.story-block-text {
    margin-bottom: 16px;
}

.story-block-image {
    margin: 20px 0;
}

.story-block-video {
    margin: 20px 0;
}

.story-video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 14px;
    overflow: hidden;
    background: #0f172a;
}

.story-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.story-block-image img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

.story-block-caption {
    margin-top: 10px;
    font-size: 13px;
    color: #667085;
    text-align: center;
}

.story-gallery-section {
    margin: 28px 0 8px;
    padding: 18px;
    border: 1px solid #eaecf0;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.story-gallery-heading {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
}

.story-gallery-title {
    margin: 0;
    color: #101828;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 600;
}

.story-gallery-line {
    display: block;
    width: 54px;
    height: 3px;
    border-radius: 999px;
    background: #d92d20;
}

.story-gallery-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
}

.story-gallery-card {
    display: block;
    padding: 0;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    box-shadow: 0 6px 18px rgba(16, 24, 40, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.story-gallery-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(16, 24, 40, .10);
}

.story-gallery-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
}

.story-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
}

.story-gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 24, 40, .82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.story-gallery-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100vw - 28px));
    max-height: calc(100vh - 28px);
    margin: 14px auto;
    padding: 58px 18px 18px;
    border-radius: 22px;
    background: #101828;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-gallery-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.story-gallery-modal-stage {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 58px;
}

.story-gallery-modal-stage img {
    max-width: 100%;
    max-height: calc(100vh - 220px);
    border-radius: 16px;
    object-fit: contain;
}

.story-gallery-modal-caption {
    position: absolute;
    left: 58px;
    right: 58px;
    bottom: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(16, 24, 40, .68);
    color: #f8fafc;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.story-gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    z-index: 2;
}

.story-gallery-modal-prev {
    left: 10px;
}

.story-gallery-modal-next {
    right: 10px;
}

.story-gallery-modal-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.story-gallery-modal-thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    flex: 0 0 88px;
    opacity: .72;
}

.story-gallery-modal-thumb.is-active {
    border-color: #d92d20;
    opacity: 1;
}

.story-gallery-modal-thumb img {
    width: 88px;
    height: 66px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .story-gallery-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .story-gallery-modal-dialog {
        width: min(100vw - 22px, 960px);
        max-height: calc(100vh - 22px);
        margin: 11px auto;
    }

    .story-gallery-modal-stage {
        min-height: 340px;
        padding: 0 46px;
    }

    .story-gallery-modal-caption {
        left: 46px;
        right: 46px;
    }
}

@media (max-width: 767px) {
    .story-gallery-section {
        margin-top: 22px;
        padding: 14px;
    }

    .story-gallery-title {
        font-size: 18px;
    }

    .story-gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

    .story-gallery-modal-dialog {
        width: calc(100vw - 16px);
        max-height: calc(100vh - 16px);
        margin: 8px auto;
        padding: 52px 10px 12px;
        border-radius: 18px;
    }

    .story-gallery-modal-close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
        font-size: 26px;
    }

    .story-gallery-modal-stage {
        min-height: 260px;
        padding: 0 0 56px;
    }

    .story-gallery-modal-stage img {
        max-height: calc(100vh - 240px);
    }

    .story-gallery-modal-caption {
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 12px;
        font-size: 13px;
        line-height: 1.5;
    }

    .story-gallery-modal-nav {
        top: auto;
        bottom: 8px;
        transform: none;
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .story-gallery-modal-prev {
        left: 8px;
    }

    .story-gallery-modal-next {
        right: 8px;
    }

    .story-gallery-modal-thumbs {
        gap: 8px;
    }

    .story-gallery-modal-thumb {
        flex-basis: 72px;
    }

    .story-gallery-modal-thumb img {
        width: 72px;
        height: 54px;
    }

    .story-report-modal-dialog {
        width: calc(100vw - 16px);
        margin: 8px auto;
        border-radius: 16px;
    }

    .story-report-modal-header,
    .story-report-modal-body,
    .story-report-modal-footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .story-report-modal-header h4 {
        font-size: 18px;
    }

    .story-report-modal-footer {
        flex-wrap: wrap;
    }

    .story-report-modal-footer .btn {
        width: 100%;
    }
}

.story-report-modal {
    position: fixed;
    inset: 0;
    z-index: 2900;
}

.story-report-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 24, 40, .56);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.story-report-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(560px, calc(100vw - 24px));
    margin: 32px auto;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(16, 24, 40, .18);
    overflow: hidden;
}

.story-report-modal-header,
.story-report-modal-footer {
    padding: 18px 20px;
}

.story-report-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid #eaecf0;
}

.story-report-modal-header h4 {
    margin: 0;
    color: #101828;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 600;
}

.story-report-modal-header p {
    margin: 6px 0 0 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.6;
}

.story-report-modal-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f2f4f7;
    color: #344054;
    font-size: 26px;
    line-height: 1;
    flex: 0 0 38px;
}

.story-report-modal-body {
    padding: 20px;
}

.story-report-field + .story-report-field {
    margin-top: 14px;
}

.story-report-field label {
    display: block;
    margin-bottom: 7px;
    color: #344054;
    font-size: 13px;
    font-weight: 700;
}

.story-report-message {
    margin-top: 14px;
    padding: 11px 13px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
}

.story-report-message.is-success {
    background: #ecfdf3;
    color: #027a48;
    border: 1px solid #abefc6;
}

.story-report-message.is-error {
    background: #fff5f4;
    color: #b42318;
    border: 1px solid #fecdca;
}

.story-report-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-top: 1px solid #eaecf0;
}

.story-rating-inline,
.story-share-box,
.story-interactions {
    border: 1px solid #eaecf0;
    border-radius: 14px;
    background: #fcfcfd;
}

.story-rating-inline {
    margin-top: 20px;
    padding: 16px;
}

.story-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    line-height: 1;
}

.story-rating-row .story-rating {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.story-rating-row .jq-star {
    display: inline-flex !important;
    align-items: center;
    vertical-align: middle;
}

.story-average-value {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    font-size: 18px;
    font-weight: 600;
    color: #101828;
}

.story-vote-count-text {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    font-size: 14px;
    font-weight: 400;
    color: #667085;
}

.story-user-vote-line {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #667085;
}

.story-share-btn-report {
    border-color: #fda29b;
    color: #b42318;
    background: #fff5f4;
}

.story-share-btn-report:hover {
    background: #ffe9e6;
    border-color: #f97066;
}

.story-interactions {
    margin-top: 12px;
    padding: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.story-interaction-btn {
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    border-radius: 12px;
    padding: 10px 14px;
    min-width: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    color: #344054;
    transition: .2s ease;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
}

.story-interaction-btn:hover {
    background: #eef2f6;
    border-color: #d0d5dd;
    box-shadow: 0 3px 8px rgba(16, 24, 40, .08);
}

.story-interaction-btn.is-active,
.story-interaction-btn.active,
.story-interaction-btn[aria-pressed="true"] {
    background: #eef4ff;
    border-color: #c7d7fe;
    color: #1d4ed8;
    box-shadow: 0 2px 6px rgba(29, 78, 216, .08);
}

.story-interaction-btn .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
}

.story-interaction-btn strong {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.story-saved-chip.is-saved {
    background: #0b74c8;
    border-color: #0b74c8;
    color: #fff;
    box-shadow: 0 2px 8px rgba(11, 116, 200, .18);
}

.story-saved-chip.is-saved:hover {
    background: #0967b2;
    border-color: #0967b2;
    color: #fff;
}

.story-favorite-chip.is-saved {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #fff;
    box-shadow: 0 2px 8px rgba(245, 158, 11, .18);
}

.story-favorite-chip.is-saved:hover {
    background: #d88a08;
    border-color: #d88a08;
    color: #fff;
}

.story-trip-plan-chip {
    min-width: 156px;
    background: #fff1f1;
    border-color: #ffb3b3;
    color: #d90000;
}

.story-trip-plan-chip:hover {
    background: #ffe3e3;
    border-color: #ff8a8a;
    color: #b80000;
}

.story-trip-plan-chip .story-trip-plan-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(217, 0, 0, .1);
}

.story-trip-plan-chip.is-saved {
    background: #d90000;
    border-color: #d90000;
    color: #fff;
    box-shadow: 0 8px 18px rgba(217, 0, 0, .22);
}

.story-trip-plan-chip.is-saved:hover {
    background: #b80000;
    border-color: #b80000;
    color: #fff;
}

.story-trip-plan-chip.is-saved .story-trip-plan-icon {
    background: rgba(255, 255, 255, .18);
}

.story-saved-note-chip {
    background: #fff;
    border-color: #f0b3bf;
    color: #d61f4a;
}

.story-saved-note-chip:hover {
    background: #fff5f7;
    border-color: #ec8da0;
    color: #c91842;
}

.story-saved-box {
    margin-top: 12px;
}

.story-saved-note-preview {
    margin-top: 12px;
    padding: 10px 14px;
    border: 1px solid #e5eaf0;
    border-radius: 10px;
    background: #fafbfd;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.story-saved-note-preview strong {
    margin-right: 6px;
    color: #222;
}


.story-share-divider {
    margin: 20px 0 18px;
    border-top: 1px solid #eaecf0;
}

.story-share-box {
    padding: 16px 18px 18px;
    border: 1px solid #dfe6f0;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.story-share-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.story-share-title {
    font-size: 16px;
    font-weight: 700;
    color: #101828;
    margin: 0;
    line-height: 1.3;
}

.story-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.story-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 15px;
    border-radius: 999px;
    border: 1px solid #d9e1ec;
    background: #fff;
    color: #25324b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
    transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.story-share-btn span,
.story-share-btn i {
    font-weight: 600;
    line-height: 1;
}

.story-share-btn i {
    font-size: 14px;
}

.story-share-btn:hover {
    text-decoration: none;
    background: #fff;
    color: #101828;
    border-color: #bcc8d8;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.story-share-btn-copy {
    background: #101828;
    border-color: #101828;
    color: #fff;
    box-shadow: 0 10px 22px rgba(16, 24, 40, 0.14);
}

.story-share-btn-copy:hover {
    background: #1b2433;
    border-color: #1b2433;
    color: #fff;
}

.story-share-btn-native {
    display: none;
}

.story-share-btn-social {
    background: #fff;
}

.story-share-btn-whatsapp i {
    color: #16a34a;
}

.story-share-btn-telegram i {
    color: #0288d1;
}

.story-share-btn-facebook i {
    color: #2563eb;
}

.story-share-btn-email i {
    color: #475467;
}

.story-share-btn-x {
    min-width: 42px;
    padding-left: 13px;
    padding-right: 13px;
}

.story-share-btn-report {
    border-color: #f4bdc9;
    color: #a2173f;
    background: #fff7fa;
    box-shadow: none;
}

.story-share-btn-report:hover {
    background: #fff0f5;
    border-color: #e58aa4;
    color: #8f1237;
}

.ts-v2-detail-share-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.ts-v2-detail-share-group .nav-item {
    display: inline-flex;
    flex: 0 0 auto;
    margin: 0;
}

.ts-v2-detail-share-group .nav-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0;
    color: #fff !important;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(16, 24, 40, .08);
}

.ts-v2-detail-share-group .nav-link:hover,
.ts-v2-detail-share-group .nav-link:focus {
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
}

.ts-v2-detail-share-group .story-share-btn-copy,
.ts-v2-detail-share-group .story-share-btn-native,
.ts-v2-detail-share-group .story-share-btn-email,
.ts-v2-detail-share-group .bg-facebook,
.ts-v2-detail-share-group .bg-twitter,
.ts-v2-detail-share-group .bg-linkedin {
    background: #c95607 !important;
    color: #fff !important;
}

.ts-v2-detail-share-group .story-share-btn-copy:hover,
.ts-v2-detail-share-group .story-share-btn-copy:focus,
.ts-v2-detail-share-group .story-share-btn-native:hover,
.ts-v2-detail-share-group .story-share-btn-native:focus,
.ts-v2-detail-share-group .story-share-btn-email:hover,
.ts-v2-detail-share-group .story-share-btn-email:focus,
.ts-v2-detail-share-group .bg-facebook:hover,
.ts-v2-detail-share-group .bg-facebook:focus,
.ts-v2-detail-share-group .bg-twitter:hover,
.ts-v2-detail-share-group .bg-twitter:focus,
.ts-v2-detail-share-group .bg-linkedin:hover,
.ts-v2-detail-share-group .bg-linkedin:focus {
    background: #b84d05 !important;
    color: #fff !important;
}

.ts-v2-detail-share-group .bg-success {
    background: #12b886 !important;
    color: #fff !important;
}

.ts-v2-detail-share-group .bg-success:hover,
.ts-v2-detail-share-group .bg-success:focus {
    background: #0ca678 !important;
    color: #fff !important;
}

.ts-v2-detail-share-group .nav-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    font-size: 14px;
    line-height: 1;
}

.ts-v2-detail-right .card-title,
.ts-v2-detail-right h2.h5,
.ts-v2-detail-side-categories h2 {
    margin-bottom: 12px;
    color: #101828;
    font-size: 18px !important;
    font-weight: 700;
    line-height: 1.25;
}

.story-share-toast {
    margin-top: 12px;
    font-size: 13px;
    color: #027a48;
    display: none;
}

.story-nav-box {
    margin-top: 22px;
    padding-top: 6px;
}

.story-nav-box .pager {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    width: 100%;
}

.story-nav-box .pager li {
    margin: 0;
}

.story-nav-box .pager .previous {
    margin-right: auto;
}

.story-nav-box .pager .next {
    margin-left: auto;
}

.story-nav-box .pager li > a,
.story-nav-box .pager li > span {
    border-radius: 999px;
    border: 1px solid #d0d5dd;
    padding: 10px 16px;
    font-weight: 700;
    color: #344054;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.story-nav-box .pager li > a i {
    font-size: 12px;
    line-height: 1;
}

.story-nav-box .pager li > a:hover {
    text-decoration: none;
    background: #f9fafb;
    color: #101828;
    border-color: #bcc8d8;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.story-sidebar .widget,
.story-sidebar .sidebar-card {
    background: #fff;
    border: 1px solid #eaecf0;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, .04);
}

.story-sidebar .widget-title,
.story-sidebar .sidebar-title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: #101828;
    line-height: 1.4;
}

.story-saved-nav-links {
    display: grid;
    gap: 10px;
}

.story-saved-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    transition: all .18s ease;
}

.story-saved-nav-link:hover {
    background: #f8fbff;
    border-color: #b9d8f3;
    color: #0b74c8;
    text-decoration: none;
}

.story-saved-nav-link-favorite:hover {
    background: #fffaf2;
    border-color: #f6d089;
    color: #c68600;
}

.story-saved-nav-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eff6ff;
    font-size: 16px;
    flex: 0 0 34px;
}

.story-saved-nav-link-favorite .story-saved-nav-icon {
    background: #fff4d6;
}

.story-saved-nav-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.story-subscribe-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.story-subscribe-box .form-control {
    width: 100%;
    height: 44px;
    border-radius: 0;
    margin-bottom: 0px;
}

.story-subscribe-box #btnSubscriber,
.story-subscribe-box #btnDetailSubscriber {
    width: 100%;
    height: 44px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    border-radius: 0;
    background: #c95607;
    border-color: #c95607;
    color: #fff;
}

.story-unsubscribe-button {
    width: 100%;
    height: 40px;
    border-radius: 0;
    background: #fff;
}

.story-sidebar .result {
    min-height: 20px;
    font-size: 13px;
    line-height: 1.5;
    color: #667085;
}

.story-sidebar .result.is-success {
    color: #027a48;
}

.story-sidebar .result.is-error {
    color: #b42318;
}

.story-sidebar .posts-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.story-sidebar .posts-list li {
    padding: 0 !important;
    background: transparent !important;
}

.story-sidebar .posts-list li::after {
    content: none !important;
}

.story-sidebar .posts-list li + li {
    margin-top: 16px;
    padding-top: 16px !important;
    border-top: 1px solid #f2f4f7;
}

.story-sidebar .posts-list li a {
    display: block !important;
    color: #101828;
    text-decoration: none;
}

.story-sidebar .posts-list li a:hover {
    text-decoration: none;
}

.story-sidebar .posts-list figure {
    float: none !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 10px 0 !important;
}

.story-sidebar .posts-list img {
    width: 100% !important;
    height: 170px !important;
    object-fit: cover !important;
    border-radius: 12px;
    display: block;
}

.story-sidebar .posts-list span {
    display: block !important;
    margin-left: 0 !important;
    width: 100% !important;
    font-size: 15px;
    line-height: 1.6 !important;
    color: #344054;
    font-weight: 600;
    word-break: break-word !important;
    white-space: normal !important;
}

.story-sidebar .posts-list .story-related-title {
    font-size: 15px;
    line-height: 1.5 !important;
    color: #101828;
    font-weight: 700;
}

.ts-v2-detail-offer-panel {
    overflow: hidden;
    border: 1px solid #e8eef5;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(16, 24, 40, .045);
    font-family: 'Segoe UI', Arial, sans-serif;
}

.ts-v2-detail-offer-panel .card-body {
    padding: 0;
}

.ts-v2-detail-offer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 14px 11px;
    border-bottom: 1px solid #eef2f6;
}

.ts-v2-detail-offer-head h2 {
    display: inline-flex;
    align-items: center;
    margin: 0;
    color: #101828;
    font-size: 16px !important;
    font-weight: 700;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.25;
}

.ts-v2-detail-offer-head h2 .bi {
    color: #b45309;
    font-size: 14px;
}

.ts-v2-detail-offer-head a {
    color: #b45309;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.ts-v2-detail-offer-list {
    display: grid;
    gap: 0;
    padding: 10px 14px 12px;
}

.ts-v2-detail-offer-item {
    position: relative;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 11px;
    padding: 0 0 12px;
    border-bottom: 1px solid #f2f5f8;
}

.ts-v2-detail-offer-item + .ts-v2-detail-offer-item {
    padding-top: 12px;
}

.ts-v2-detail-offer-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.ts-v2-detail-offer-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 8px;
}

.ts-v2-detail-offer-thumb {
    position: relative;
    z-index: 2;
    display: block;
    width: 76px;
    height: 58px;
    overflow: hidden;
    border-radius: 8px;
    background: #f2f4f7;
}

.ts-v2-detail-offer-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ts-v2-detail-offer-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.ts-v2-detail-offer-title {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    overflow: hidden;
    color: #101828;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.35;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ts-v2-detail-offer-title:hover,
.ts-v2-detail-offer-title:focus {
    color: #b45309;
    text-decoration: none;
}

.ts-v2-detail-offer-meta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    margin-top: 4px;
    overflow: hidden;
    color: #667085;
    font-size: 12px;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ts-v2-detail-offer-meta .bi {
    flex: 0 0 auto;
    color: #b45309;
    font-size: 12px;
}

.ts-v2-detail-offer-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 6px;
}

.ts-v2-detail-offer-foot span {
    color: #0f766e;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.2;
}

.ts-v2-detail-offer-foot a {
    display: none;
}

.story-continue-meta {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.5 !important;
    color: #667085;
    font-weight: 600;
}

.story-continue-progress-track {
    margin-top: 8px;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: #edf2f7;
    overflow: hidden;
}

.story-continue-progress-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #0b74c8 0%, #101828 100%);
}

.story-saved-note-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.story-saved-note-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.story-saved-note-modal-dialog {
    position: relative;
    width: calc(100% - 30px);
    max-width: 560px;
    margin: 70px auto 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    overflow: hidden;
}

.story-saved-note-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #eceff3;
}

.story-saved-note-modal-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.story-saved-note-close-btn {
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    padding: 0;
    color: #666;
}

.story-saved-note-modal-body {
    padding: 18px;
}

.story-saved-note-modal-body textarea {
    min-height: 140px;
    resize: vertical;
}

.story-saved-note-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 18px 18px;
}

@media (max-width: 991px) {
    .story-body-shell {
        padding: 14px 14px 18px;
    }

    .story-title-box .entry-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .story-detail-page {
        padding-top: 20px;
    }

    .story-reading-progress {
        height: 3px;
    }

    .story-title-box .entry-title {
        font-size: 24px;
    }

    .story-travel-info-grid {
        grid-template-columns: 1fr;
    }

    .story-travel-info-box {
        padding: 15px;
    }

    .story-hero-meta {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .story-sidebar {
        margin-top: 18px;
    }

    .story-sidebar .posts-list img {
        height: 190px !important;
    }

    .story-share-btn-native {
        display: inline-flex;
    }

    .story-share-actions {
        gap: 8px;
    }

    .story-share-btn {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 13px;
    }
}
