/* Blog detail page (Views/Blogs/BlogDetail.cshtml) */

/* blog details breadcrumb */
.blogDetails-breadcrumb {
    font-weight: var(--font-weight-dark);
    font-size: var(--normal-font-size);
    line-height: var(--line-height);
    letter-spacing: 1.25px;
    text-align: center;
    color: #061508;
    text-align: left;
    margin-top: 20px;
}

    .blogDetails-breadcrumb span {
        font-weight: var(--font-weight-dark);
        font-size: var(--normal-font-size);
        line-height: var(--line-height);
        letter-spacing: 1.25px;
        text-align: center;
        color: #6D7076;
    }

/* blog details main title */
.blogDetails-main-title {
    font-weight: var(--font-weight-dark);
    font-size: 32px;
    line-height: 48px;
    letter-spacing: var(--letter-spacing);
    color: var(--primary-color);
}

@media (max-width: 576px) {
    .blogDetails-main-title {
        font-size: 25px;
        line-height: 37px;
    }
}

.blog-details-img img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: var(--normal-border-radius);
    display: block;
}

@media (max-width: 576px) {
    .blog-details-img img {
        max-height: 260px;
    }
}

@media (min-width: 1920px) {
    .blog-details-img img {
        max-height: 800px;
    }
}

@media (max-width: 768px) {
    .blog-details-img img {
        width: 100%;
    }
}

@media (max-width: 428px) {
    .blog-details-img img {
        height: auto;
    }

    .blogdetails-col-4-section {
        margin-top: 10px;
    }
}

.blog-details-introduction {
    width: 100% !important;
    word-wrap: break-word;
}

    .blog-details-introduction img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: var(--normal-border-radius);
        display: block;
        margin: 1rem auto;
    }

    .blog-details-introduction h1 {
        font-size: 24px;
        letter-spacing: var(--min-letter-spacing);
        color: var(--primary-color);
    }

    .blog-details-introduction h2 {
        letter-spacing: var(--normal-letter-spacing);
        color: var(--primary-color);
    }

    .blog-details-introduction p {
        font-weight: var(--font-weight-light);
        font-size: 16px;
        line-height: var(--line-height);
        letter-spacing: 0.5%;
        color: var(--dark-gray);
    }

/* more blogs section header + see all link */
.blogdetails-col-4-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.blogdetails-col-4-section-title {
    font-weight: var(--font-weight-dark);
    font-size: 24px;
    line-height: 36px;
    letter-spacing: var(--min-letter-spacing);
    color: var(--primary-color);
}

.see-all {
    font-weight: var(--font-weight-dark);
    font-size: var(--normal-font-size);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: Auto;
    text-decoration-thickness: Auto;
    color: var(--secondary-color);
}

/* more blogs card (an earlier, incomplete pass at this component) */
.more-blog-card {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.more-blog-card-img-wrap {
    width: 100%;
    height: 235px;
    overflow: hidden;
}

.more-blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.more-blog-card:hover .more-blog-card-img {
    transform: scale(1.04);
}

.more-blog-card-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.more-blog-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.more-blog-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.more-blog-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 6px 14px;
    text-decoration: none;
    align-self: flex-start;
    margin-top: 4px;
}

    .more-blog-read-btn:hover {
        background: #f5f5f5;
        color: #1a1a1a;
    }

/* TL;DR box */
.blog-tldr-box {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    border-left: 4px solid #4f46e5;
    border-radius: 8px;
    padding: 20px 24px;
}

.blog-tldr-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #4f46e5;
    margin-bottom: 10px;
}

.blog-tldr-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 0;
}

/* attraction card */
.tf-attraction-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, #1f2b8f 0%, #2d2d9c 100%);
    padding: 45px;
    margin: 20px 0;
}

    /* diagonal pattern */
    .tf-attraction-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient( -45deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 14px );
        pointer-events: none;
    }

.tf-attraction-content {
    position: relative;
    max-width: 850px;
}

.tf-attraction-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.tf-attraction-desc {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.tf-attraction-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #1f2b8f;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

    .tf-attraction-btn img {
        width: 16px;
        height: 16px;
    }

    .tf-attraction-btn:hover {
        transform: translateY(-2px);
        color: #1f2b8f;
    }

@media (max-width: 768px) {
    .tf-attraction-card {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .tf-attraction-title {
        font-size: 28px;
    }

    .tf-attraction-desc {
        font-size: 16px;
    }

    .tf-attraction-btn {
        width: 100%;
        justify-content: center;
    }
}

/* sidebar "finish" chip card */
.tf-finish-card {
    background: #fff;
    border: 1px solid #e7e8f5;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,.03);
}

.tf-finish-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 24px;
    border-bottom: 1px solid #eef0f8;
}

.tf-finish-icon {
    width: 38px;
    height: 38px;
    background: #f3f4ff;
    color: #2c2c8c;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tf-finish-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #23234f;
}

.tf-finish-body {
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tf-finish-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 13px;
    border: 1px solid #d8dbef;
    border-radius: 50px;
    background: #fff;
    color: #4b4b75;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all .25s ease;
}

    .tf-finish-chip:hover {
        background: #2c2c8c;
        border-color: #2c2c8c;
        color: #fff;
        transform: translateY(-2px);
    }

@media(max-width:768px) {
    .tf-finish-header {
        padding: 16px;
    }

    .tf-finish-body {
        padding: 16px;
    }

    .tf-finish-header h3 {
        font-size: 18px;
    }
}

/* category / year tags */
.tf-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.tf-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
}

.tf-tag-room {
    background: #f0efff;
    color: #2f2b7c;
}

.tf-tag-guide {
    background: #e5f7f2;
    color: #0d7a61;
}

.tf-tag-year {
    background: #fff0df;
    color: #c86a00;
}

/* author card (part 1) */
.blog-author-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.25rem;
    overflow: hidden;
}

.blog-author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #eee;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-author-avatar-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8f0fe;
    color: #1a56db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    flex-shrink: 0;
}

.blog-author-body {
    flex: 1;
    min-width: 0;
}

.blog-author-eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 4px;
}

.blog-author-name {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 2px;
}

.blog-author-name-link {
    text-decoration: none;
    color: inherit;
}

.blog-author-fullname {
    font-size: 13px;
    color: #666;
    margin: 0 0 6px;
}

.blog-author-jobtitle {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 0 8px;
}

.blog-author-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 10px;
}

.blog-author-divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 10px 0;
}

.blog-author-meta {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.blog-author-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

    .blog-author-meta-row i {
        font-size: 15px;
        color: #aaa;
        flex-shrink: 0;
    }

    .blog-author-meta-row a {
        color: #1a56db;
        text-decoration: none;
    }

        .blog-author-meta-row a:hover {
            text-decoration: underline;
        }

.blog-author-social {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

/* similar blog grid + card (the current, complete pass) */
.more-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.more-blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.more-blog-card-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.more-blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-blog-card-body {
    padding: 14px 16px;
}

@media (max-width: 768px) {
    .more-blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 769px) {
    .more-blog-card-img-wrap {
        height: 110px;
    }
}

@media (max-width: 426px) {
    .more-blog-card-img-wrap {
        height: 185px;
    }
}

/* date / meta row under the title */
.blogdetail-date-view {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blogdetail-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #555;
    line-height: 2;
    padding: 0 14px;
    position: relative;
}

    .blogdetail-meta-item:first-child {
        padding-left: 0;
    }

    .blogdetail-meta-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 14px;
        background: #ddd;
    }

    .blogdetail-meta-item svg {
        flex-shrink: 0;
        display: block;
    }

/* author card (part 2 — social icons + meta row layout) */
.blog-author-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.blog-author-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .15s, opacity .15s;
    color: #fff;
}

    .blog-author-social-icon:hover {
        transform: scale(1.12);
        opacity: .9;
    }

    /* Brand colors */
    .blog-author-social-icon[data-platform="linkedin"] {
        background: #0A66C2;
    }

    .blog-author-social-icon[data-platform="x"] {
        background: #000000;
    }

    .blog-author-social-icon[data-platform="instagram"] {
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    .blog-author-social-icon[data-platform="facebook"] {
        background: #1877F2;
    }

    .blog-author-social-icon[data-platform="youtube"] {
        background: #FF0000;
    }

    .blog-author-social-icon[data-platform="github"] {
        background: #24292F;
    }

    .blog-author-social-icon[data-platform="pinterest"] {
        background: #E60023;
    }

    .blog-author-social-icon[data-platform="tiktok"] {
        background: #010101;
    }

    .blog-author-social-icon[data-platform="medium"] {
        background: #000000;
    }

    .blog-author-social-icon[data-platform="web"] {
        background: #6366f1;
    }

.blog-author-meta-inline-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 16px;
}

    /* divider between email and org */
    .blog-author-meta-inline-row .blog-author-meta-row:not(:first-child)::before {
        content: '·';
        margin-right: 16px;
        color: #ccc;
    }

.blog-author-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 10px;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    min-width: 0;
}

/* table of contents box */
.blog-toc-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 1.5rem 1.5rem 1.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.blog-toc-label {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

    .blog-toc-label svg {
        color: #c8793a;
    }

.blog-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.blog-toc-item {
    font-size: 14px;
    border-bottom: 1px solid #f2f2f2;
}

    .blog-toc-item:last-child {
        border-bottom: none;
    }

.blog-toc-link {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 4px;
    font-weight: 500;
    transition: color 0.15s, padding-left 0.15s;
}

    .blog-toc-link::before {
        content: counter(toc-counter, decimal-leading-zero);
        counter-increment: toc-counter;
        flex-shrink: 0;
        font-family: 'Space Grotesk', monospace;
        font-size: 11px;
        font-weight: 700;
        color: #c8793a;
        background: #fdeee0;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.blog-toc-list {
    counter-reset: toc-counter;
}

.blog-toc-link:hover {
    color: #c8793a;
    padding-left: 4px;
    text-decoration: none;
}

.blog-toc-link.active {
    color: #1c2333;
    font-weight: 700;
}

    .blog-toc-link.active::before {
        background: #c8793a;
        color: #fff;
    }

/* stats card (sidebar) */
.tfstats-card {
    position: relative;
    margin-top: 20px;
    background: #fdfaf3;
    border: 1px solid #eee5d3;
    border-radius: 16px;
    padding: 26px 24px 20px;
}

.tfstats-list {
    display: flex;
    flex-direction: column;
}

.tfstats-row {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px dashed #e3dcc9;
}

    .tfstats-row:last-child {
        border-bottom: none;
    }

.tfstats-value {
    flex-shrink: 0;
    min-width: 62px;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1c2333;
}

.tfstats-label {
    font-size: 19px;
    color: #7c8394;
}

@media (max-width: 425px) {
    .tfstats-label {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .tfstats-card {
        padding: 24px 18px 18px;
    }

    .tfstats-value {
        font-size: 1.2rem;
        min-width: 54px;
    }
}

/* google preference card (sidebar) */
.tfprefsrc-card {
    position: relative;
    margin-top: 20px;
    background: #3654ad;
    border-radius: 14px;
    padding: 28px 26px;
    overflow: hidden;
}

.tfprefsrc-pattern {
    position: absolute;
    inset: 0;
    background-size: 28px 28px;
    pointer-events: none;
}

.tfprefsrc-content {
    position: relative;
    z-index: 1;
}

.tfprefsrc-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f2a541;
    margin-bottom: 10px;
}

.tfprefsrc-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
}

.tfprefsrc-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px;
}

.tfprefsrc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    background: #f2a541;
    color: #16213e;
    font-weight: 700;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 2px;
    padding: 13px 20px;
    border-radius: 8px;
    transition: background 0.15s;
}

    .tfprefsrc-btn:hover {
        background: #e0952f;
        color: #16213e;
    }

    .tfprefsrc-btn svg {
        flex-shrink: 0;
        text-decoration: none;
    }

.tfprefsrc-footnote {
    margin: 14px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

@media (max-width: 768px) {
    .tfprefsrc-card {
        padding: 22px 20px;
    }

    .tfprefsrc-title {
        font-size: 1.2rem;
    }
}

/* left-side floating share bar (desktop) */
.tfshare-bar {
    position: fixed;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 500;
}

.tfshare-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    border: 1px solid #eee;
    transition: transform 0.15s, background 0.15s, color 0.15s;
    color: #fff;
}

    .tfshare-icon:hover {
        transform: translateY(-2px);
    }

.tfshare-facebook {
    background: #1877F2;
    border-color: #1877F2;
}

.tfshare-x {
    background: #000;
    border-color: #000;
}

.tfshare-linkedin {
    background: #0A66C2;
    border-color: #0A66C2;
}

.tfshare-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.tfshare-whatsapp {
    background: #25D366;
    border-color: #25D366;
}

.tfshare-icon.tfshare-pinterest {
    background-color: #E60023;
    color: #ffffff;
}

    .tfshare-icon.tfshare-pinterest:hover {
        background-color: #ad081b;
    }

.tfshare-toast {
    position: absolute;
    left: 52px;
    bottom: -6px;
    background: #16213e;
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

    .tfshare-toast.tfshare-toast-show {
        opacity: 1;
    }

@media (max-width: 1200px) {
    .tfshare-bar {
        display: none;
    }
}

/* share bar (mobile) */
.tfshare-bar-mobile {
    display: none;
    align-items: center;
    gap: 10px;
    position: relative;
    margin: 16px 0;
    padding: 10px 4px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.tfshare-mobile-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-right: 4px;
}

.tfshare-bar-mobile .tfshare-icon {
    width: 36px;
    height: 36px;
}

@media (max-width: 1200px) {
    .tfshare-bar-mobile {
        display: flex;
    }
}

@media (max-width: 420px) {
    .tfshare-bar-mobile {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 10px;
    }
}

@media (max-width: 350px) {
    .tfshare-bar-mobile {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

/* next-blog scroll popup */
.tfnextblog-popup {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 300px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid #eee;
    overflow: hidden;
    z-index: 800;
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

    .tfnextblog-popup.tfnextblog-show {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

.tfnextblog-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

    .tfnextblog-close:hover {
        background: #fff;
        color: #000;
    }

.tfnextblog-link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.tfnextblog-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0f0f0;
}

.tfnextblog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tfnextblog-body {
    padding: 16px 18px 18px;
}

.tfnextblog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #c8793a;
    margin-bottom: 8px;
}

    .tfnextblog-eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #c8793a;
    }

.tfnextblog-title {
    font-size: 15px;
    font-weight: 700;
    color: #1c2333;
    margin: 0 0 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tfnextblog-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.55;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tfnextblog-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #3653d6;
}

@media (max-width: 768px) {
    .tfnextblog-popup {
        right: 12px;
        bottom: 12px;
        left: auto;
        width: 200px;
    }

    .tfnextblog-close {
        width: 22px;
        height: 22px;
        top: 6px;
        right: 6px;
    }

    .tfnextblog-body {
        padding: 10px 12px 12px;
    }

    .tfnextblog-eyebrow {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .tfnextblog-title {
        font-size: 12.5px;
        margin-bottom: 5px;
        -webkit-line-clamp: 2;
    }

    .tfnextblog-desc {
        font-size: 11px;
        line-height: 1.45;
        margin-bottom: 8px;
        -webkit-line-clamp: 2;
    }

    .tfnextblog-cta {
        font-size: 11px;
    }

        .tfnextblog-cta svg {
            width: 11px;
            height: 11px;
        }
}

/* trending now (sidebar) */
.tftrendnow-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 20px;
}

.tftrendnow-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 14px;
}

.tftrendnow-list {
    display: flex;
    flex-direction: column;
}

.tftrendnow-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.15s;
}

    .tftrendnow-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .tftrendnow-item:first-child {
        padding-top: 0;
    }

    .tftrendnow-item:hover {
        opacity: 0.75;
        color: inherit;
    }

.tftrendnow-num {
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 800;
    color: #c8793a;
    line-height: 1.3;
    min-width: 26px;
}

.tftrendnow-title {
    font-size: 14px;
    font-weight: 700;
    color: #1c2333;
    margin: 0 0 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tftrendnow-meta {
    font-size: 12px;
    color: #999;
}

/* bottom floating chapter nav (1,2,3,4...) */
.tfcnv-bar {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #1c2333;
    border-radius: 40px;
    padding: 8px 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    z-index: 2000;
    max-width: 90vw;
    pointer-events: auto;
    opacity: 1;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.tfcnv-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: 420px;
}

    .tfcnv-numbers::-webkit-scrollbar {
        display: none;
    }

.tfcnv-num {
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 6px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

    .tfcnv-num:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
    }

    .tfcnv-num.tfcnv-active {
        background: #f2a541;
        color: #1c2333;
    }

.tfcnv-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.tfcnv-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
}

    .tfcnv-arrow:hover {
        background: rgba(255, 255, 255, 0.18);
    }

.tfcnv-arrow-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

@media (min-width: 992px) {
    .tfcnv-bar {
        display: flex;
    }
}

.tfcnv-num,
.tfcnv-arrow {
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.tfcnv-bar.tfcnv-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
}

/* like button + copy-link button */
.tfblog-like-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 8px 12px;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
    transition: background 0.15s, border-color 0.15s;
}

.tfblog-like-icon {
    fill: none;
    stroke: #888;
    stroke-width: 2;
    flex-shrink: 0;
    transition: fill 0.15s, stroke 0.15s, transform 0.15s;
}

.tfblog-like-btn.tfblog-liked .tfblog-like-icon {
    fill: #e0245e;
    stroke: #e0245e;
    transform: scale(1.1);
}

.tfblog-like-count {
    font-size: 12px;
    font-weight: 600;
    color: #444;
    flex-shrink: 0;
    line-height: 1;
}

.tfshare-copylink {
    border: none;
    cursor: pointer;
    background: #555;
    border-color: #555;
}

/* ============ two-path split CTA (bottom of article) ============ */
.tf-cta {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin: 56px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tf-cta-head {
    text-align: center;
    margin-bottom: 32px;
}

    .tf-cta-head .tf-mark {
        display: inline-block;
        width: 32px;
        height: 3px;
        background: #EF9F27;
        margin-bottom: 20px;
        border-radius: 2px;
    }

    .tf-cta-head h2 {
        font-family: 'DM Serif Display', serif;
        font-size: 36px;
        line-height: 1.15;
        font-weight: 400;
        color: #1A2A44;
        margin: 0;
        letter-spacing: -0.015em;
    }

        .tf-cta-head h2 i {
            font-style: italic;
            color: #EF9F27;
        }

.tf-cta-split {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px -18px rgba(26, 42, 68, 0.28), 0 4px 12px -4px rgba(26, 42, 68, 0.12);
    isolation: isolate;
}

.tf-tile {
    position: relative;
    padding: 44px 40px 40px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Left tile — cream / warm */
.tf-tile-warm {
    background: radial-gradient(circle at 20% 20%, #FFFDF7 0%, #F7F3EA 60%, #EFE8D8 100%);
}
    /* subtle marbling on warm tile */
    .tf-tile-warm::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(ellipse 400px 100px at 30% 40%, rgba(239, 159, 39, 0.06), transparent 60%), radial-gradient(ellipse 300px 80px at 70% 70%, rgba(183, 119, 18, 0.04), transparent 60%);
        pointer-events: none;
    }

/* Right tile — navy / dark */
.tf-tile-dark {
    background: radial-gradient(circle at 80% 20%, #253A5A 0%, #1A2A44 55%, #0F1B2E 100%);
    color: #F7F3EA;
}
    /* subtle sheen on dark tile */
    .tf-tile-dark::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(ellipse 300px 80px at 70% 30%, rgba(239, 159, 39, 0.10), transparent 60%), radial-gradient(ellipse 400px 100px at 20% 80%, rgba(255, 253, 247, 0.04), transparent 60%);
        pointer-events: none;
    }

.tf-tile-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Small tag row */
.tf-tile-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.tf-tile-warm .tf-tile-tag {
    color: #B77712;
}

.tf-tile-dark .tf-tile-tag {
    color: #EF9F27;
}

.tf-tile-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* Card headline */
.tf-tile h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0 0 12px;
    letter-spacing: -0.005em;
}

.tf-tile-warm h3 {
    color: #1A2A44;
}

.tf-tile-dark h3 {
    color: #FFFDF7;
}

.tf-tile p {
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 28px;
    flex-grow: 1;
}

.tf-tile-warm p {
    color: #4A5261;
}

.tf-tile-dark p {
    color: #B8C0D0;
}

/* Button */
.tf-tile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background 0.25s ease;
    align-self: flex-start;
}

.tf-btn-primary {
    background: #EF9F27;
    color: #1A2A44;
}

    .tf-btn-primary:hover {
        background: #F5AD3F;
    }

.tf-btn-outline {
    background: transparent;
    color: #FFFDF7;
    border: 1.5px solid #EF9F27;
}

    .tf-btn-outline:hover {
        background: rgba(239, 159, 39, 0.12);
    }

.tf-tile-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tf-tile-btn:hover svg {
    transform: translateX(5px);
}

/* ============ AMBER SEAM — THE SIGNATURE ============ */
.tf-seam {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient( to bottom, transparent 0%, #EF9F27 12%, #EF9F27 88%, transparent 100% );
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}

    /* Traveling light on the seam */
    .tf-seam::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 8px;
        height: 60px;
        transform: translateX(-50%);
        background: linear-gradient( to bottom, transparent 0%, rgba(255, 220, 130, 0.95) 50%, transparent 100% );
        filter: blur(3px);
        animation: tf-seam-glow 3.8s ease-in-out infinite;
    }

@keyframes tf-seam-glow {
    0% {
        top: -10%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Amber diamond marker in the exact middle */
.tf-diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    transform: translate(-50%, -50%) rotate(45deg);
    background: #EF9F27;
    z-index: 4;
    box-shadow: 0 0 0 5px #FFFDF7, 0 0 0 6px rgba(239, 159, 39, 0.35), 0 0 20px rgba(239, 159, 39, 0.5);
    animation: tf-diamond-pulse 2.6s ease-in-out infinite;
}

@keyframes tf-diamond-pulse {
    0%, 100% {
        box-shadow: 0 0 0 5px #FFFDF7, 0 0 0 6px rgba(239, 159, 39, 0.35), 0 0 20px rgba(239, 159, 39, 0.5);
    }

    50% {
        box-shadow: 0 0 0 5px #FFFDF7, 0 0 0 8px rgba(239, 159, 39, 0.5), 0 0 32px rgba(239, 159, 39, 0.8);
    }
}

/* ============ FLOATING TILE DECORATION ============ */
.tf-float-tile {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    z-index: 1;
    pointer-events: none;
}

.tf-float-1 {
    top: 18px;
    right: 24px;
    background: rgba(239, 159, 39, 0.18);
    border: 1px solid rgba(239, 159, 39, 0.3);
    animation: tf-float 6s ease-in-out infinite;
}

.tf-float-2 {
    bottom: 20px;
    left: 24px;
    width: 32px;
    height: 32px;
    background: rgba(26, 42, 68, 0.08);
    border: 1px solid rgba(26, 42, 68, 0.15);
    animation: tf-float 7s ease-in-out infinite -2s;
}

@keyframes tf-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(6deg);
    }
}

/* Card hover subtle lift */
.tf-tile:hover {
    transform: translateY(-2px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 720px) {
    .tf-cta-head h2 {
        font-size: 28px;
    }

    .tf-cta-split {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .tf-tile {
        padding: 32px 26px;
    }

        .tf-tile h3 {
            font-size: 22px;
        }

    .tf-seam {
        top: 50%;
        bottom: auto;
        left: 0;
        right: 0;
        width: auto;
        height: 2px;
        background: linear-gradient(to right, transparent 0%, #EF9F27 12%, #EF9F27 88%, transparent 100%);
        transform: translateY(-50%);
    }

        .tf-seam::before {
            top: 50%;
            left: 0;
            width: 60px;
            height: 8px;
            transform: translateY(-50%);
            background: linear-gradient(to right, transparent 0%, rgba(255, 220, 130, 0.95) 50%, transparent 100%);
            animation: tf-seam-glow-h 3.8s ease-in-out infinite;
        }

    @keyframes tf-seam-glow-h {
        0% {
            left: -10%;
            opacity: 0;
        }

        20% {
            opacity: 1;
        }

        80% {
            opacity: 1;
        }

        100% {
            left: 100%;
            opacity: 0;
        }
    }

    .tf-float-1 {
        top: 14px;
        right: 16px;
    }

    .tf-float-2 {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tf-seam::before,
    .tf-diamond,
    .tf-float-tile {
        animation: none;
    }
}

/* ============ inline mid-article CTA strip ============ */
.tf-midcta {
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 680px;
    margin: 40px auto;
    padding: 22px 26px 22px 30px;
    background: radial-gradient(circle at 0% 50%, #FFFDF7 0%, #F7F3EA 70%);
    border-radius: 14px;
    border: 1px solid rgba(239, 159, 39, 0.25);
    box-shadow: 0 8px 24px -12px rgba(26, 42, 68, 0.18);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

    .tf-midcta:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 32px -14px rgba(26, 42, 68, 0.28);
        border-color: rgba(239, 159, 39, 0.55);
    }

    /* ============ AMBER SEAM (left edge) ============ */
    .tf-midcta::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient( to bottom, transparent 0%, #EF9F27 18%, #EF9F27 82%, transparent 100% );
    }

    /* Traveling light on the seam — same motif as end CTA */
    .tf-midcta::after {
        content: "";
        position: absolute;
        left: -2px;
        top: 0;
        width: 7px;
        height: 34px;
        background: linear-gradient( to bottom, transparent 0%, rgba(255, 220, 130, 0.95) 50%, transparent 100% );
        filter: blur(2.5px);
        animation: tf-mid-glow 3.8s ease-in-out infinite;
        pointer-events: none;
    }

@keyframes tf-mid-glow {
    0% {
        top: -15%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* ============ DIAMOND MARKER ============ */
.tf-mid-diamond {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    position: relative;
    display: grid;
    place-items: center;
}

    .tf-mid-diamond::before {
        content: "";
        position: absolute;
        width: 26px;
        height: 26px;
        transform: rotate(45deg);
        background: linear-gradient(135deg, #F5AD3F 0%, #EF9F27 60%, #D9891A 100%);
        border-radius: 4px;
        box-shadow: 0 0 0 4px rgba(239, 159, 39, 0.15), 0 4px 12px rgba(239, 159, 39, 0.4);
        animation: tf-mid-pulse 2.6s ease-in-out infinite;
    }

@keyframes tf-mid-pulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(239, 159, 39, 0.15), 0 4px 12px rgba(239, 159, 39, 0.4);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(239, 159, 39, 0.22), 0 4px 20px rgba(239, 159, 39, 0.6);
    }
}
/* tiny tile icon inside the diamond */
.tf-mid-diamond svg {
    position: relative;
    z-index: 1;
    width: 15px;
    height: 15px;
    color: #1A2A44;
}

/* ============ TEXT ============ */
.tf-mid-body {
    flex-grow: 1;
    min-width: 0;
}

.tf-mid-eyebrow {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #B77712;
    margin: 0 0 4px;
}

.tf-mid-title {
    font-family: 'DM Serif Display', serif;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 400;
    color: #1A2A44;
    margin: 0;
    letter-spacing: -0.005em;
}

    .tf-mid-title i {
        font-style: italic;
        color: #B77712;
    }

/* ============ ARROW BUTTON ============ */
.tf-mid-arrow {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1A2A44;
    display: grid;
    place-items: center;
    transition: background 0.25s ease;
}

.tf-midcta:hover .tf-mid-arrow {
    background: #EF9F27;
}

.tf-mid-arrow svg {
    width: 18px;
    height: 18px;
    color: #FFFDF7;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}

.tf-midcta:hover .tf-mid-arrow svg {
    transform: translateX(3px);
    color: #1A2A44;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 560px) {
    .tf-midcta {
        gap: 14px;
        padding: 18px 18px 18px 22px;
        margin: 32px auto;
    }

    .tf-mid-diamond {
        width: 34px;
        height: 34px;
    }

        .tf-mid-diamond::before {
            width: 22px;
            height: 22px;
        }

    .tf-mid-title {
        font-size: 16.5px;
    }

    .tf-mid-arrow {
        width: 38px;
        height: 38px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tf-midcta::after,
    .tf-mid-diamond::before {
        animation: none;
    }
}

/* ============ "From The Marketplace" swatch strip (injected server-side into the article body) ============ */
.tfswatch {
    font-family: 'Poppins', sans-serif;
    position: relative;
    max-width: 1200px;
    margin: 32px auto;
    padding: 18px 20px 16px 24px;
    background: linear-gradient(180deg, #FFFDF7 0%, #F7F3EA 100%);
    border-radius: 16px;
    border: 1px solid rgba(26,42,68,0.08);
    box-shadow: 0 10px 24px -16px rgba(26,42,68,0.2);
    overflow: hidden;
}

    .tfswatch::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(to bottom, transparent, #EF9F27 14%, #EF9F27 86%, transparent);
    }

    .tfswatch::after {
        content: "";
        position: absolute;
        left: -2px;
        top: 0;
        width: 7px;
        height: 36px;
        background: linear-gradient(to bottom, transparent, rgba(255,220,130,0.95), transparent);
        filter: blur(2.5px);
        animation: tfsw-glow 4.2s ease-in-out infinite;
        pointer-events: none;
    }

@keyframes tfsw-glow {
    0% {
        top: -15%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.tfswatch-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.tfswatch-diamond {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    position: relative;
    margin-top: 2px;
}

    .tfswatch-diamond::before {
        content: "";
        position: absolute;
        width: 17px;
        height: 17px;
        transform: rotate(45deg);
        border-radius: 3px;
        background: linear-gradient(135deg, #F5AD3F, #EF9F27 60%, #D9891A);
        box-shadow: 0 0 0 3px rgba(239,159,39,0.14), 0 3px 10px rgba(239,159,39,0.35);
    }

.tfswatch-title-wrap {
    flex: 1 1 200px;
    min-width: 0;
}

.tfswatch-eyebrow {
    font-size: 10px;
    letter-spacing: 0.13em;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #B77712;
    margin: 0 0 3px;
}

.tfswatch-title,
h2.tfswatch-title,
h3.tfswatch-title {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 400;
    margin: 0;
}

    .tfswatch-title i {
        font-style: italic;
        color: #B77712;
    }

.tfswatch-viewall {
    margin-left: auto;
    flex-shrink: 0;
    display: none;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 600;
    color: #1A2A44;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(239,159,39,0.5);
    padding-bottom: 1px;
    white-space: nowrap;
}

    .tfswatch-viewall svg {
        width: 13px;
        height: 13px;
    }

.tfswatch-track {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(239,159,39,0.4) transparent;
}

    .tfswatch-track::-webkit-scrollbar {
        height: 5px;
    }

    .tfswatch-track::-webkit-scrollbar-thumb {
        background: rgba(239,159,39,0.4);
        border-radius: 10px;
    }

    .tfswatch-track::-webkit-scrollbar-track {
        background: transparent;
    }

.tfswatch-card {
    flex: 0 0 auto;
    width: 84px !important;
    scroll-snap-align: start;
    text-decoration: none;
    display: block;
}

.tfswatch-img-wrap {
    position: relative;
    width: 84px !important;
    height: 84px !important;
    max-height: 84px !important;
    border-radius: 10px;
    overflow: hidden;
    background: #EFE8D8;
    box-shadow: 0 6px 16px -8px rgba(26,42,68,0.25);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
}

.tfswatch-card:hover .tfswatch-img-wrap {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 26px -10px rgba(26,42,68,0.35);
}

.tfswatch-img-wrap img {
    width: 84px !important;
    height: 84px !important;
    max-width: 84px !important;
    max-height: 84px !important;
    object-fit: cover !important;
    display: block !important;
}

.tfswatch-tag {
    position: absolute;
    bottom: 5px;
    left: 5px;
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #1A2A44;
    background: rgba(255,253,247,0.92);
    padding: 2px 6px;
    border-radius: 5px;
    backdrop-filter: blur(2px);
}

.tfswatch-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    pointer-events: none;
}

.tfswatch-card:hover .tfswatch-img-wrap::after {
    border-color: rgba(239,159,39,0.55);
}

.tfswatch-name {
    display: block;
    margin-top: 7px;
    font-size: 12px;
    font-weight: 600;
    color: #1A2A44;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tfswatch-sub {
    display: block;
    font-size: 10.5px;
    font-weight: 400;
    color: #8A93A5;
    margin-top: 1px;
}

.tfswatch-more {
    flex: 0 0 auto;
    width: 84px !important;
    scroll-snap-align: start;
    text-decoration: none;
}

.tfswatch-more-box {
    width: 84px !important;
    height: 84px !important;
    border-radius: 10px;
    border: 1.5px dashed rgba(26,42,68,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.tfswatch-more:hover .tfswatch-more-box {
    border-color: #EF9F27;
    background: rgba(239,159,39,0.06);
}

.tfswatch-more-box svg {
    width: 16px;
    height: 16px;
    color: #1A2A44;
}

.tfswatch-more-label {
    font-size: 10px;
    font-weight: 600;
    color: #1A2A44;
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 560px) {
    .tfswatch {
        padding: 16px 14px 14px 18px;
        margin: 24px auto;
    }

    .tfswatch-card, .tfswatch-more {
        width: 72px !important;
    }

    .tfswatch-img-wrap, .tfswatch-more-box {
        width: 72px !important;
        height: 72px !important;
        max-height: 72px !important;
    }

        .tfswatch-img-wrap img {
            width: 72px !important;
            height: 72px !important;
            max-width: 72px !important;
            max-height: 72px !important;
        }

    .tfswatch-title,
    h2.tfswatch-title,
    h3.tfswatch-title {
        font-size: 14px;
        line-height: 1.3;
    }

    .tfswatch-eyebrow {
        font-size: 9px;
    }

    .tfswatch-head {
        gap: 8px;
    }
}

@media (min-width: 561px) {
    .tfswatch-viewall {
        display: inline-flex;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tfswatch::after {
        animation: none;
    }
}
