:root {
    --wc2026-bg: #f5fbf7;
    --wc2026-card: #ffffff;
    --wc2026-primary: #2dbe6c;
    --wc2026-primary-dark: #22a85a;
    --wc2026-live: #ff5c35;
    --wc2026-text: #0f1c14;
    --wc2026-muted: #627269;
    --wc2026-border: #dbeee4;
}

.wc2026-shell {
    background: var(--wc2026-bg);
    color: var(--wc2026-text);
    padding: 22px 0 44px;
}

.wc2026-container {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
}

.wc2026-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
    gap: 18px;
    align-items: stretch;
    margin-bottom: 20px;
}

.wc2026-hero-main,
.wc2026-panel,
.wc2026-card,
.wc2026-article,
.wc2026-single-box {
    background: var(--wc2026-card);
    border: 1px solid var(--wc2026-border);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(15, 28, 20, 0.06);
}

.wc2026-hero-main {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    padding: clamp(26px, 4vw, 48px);
}

.wc2026-hero-main:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 92, 53, 0.13), transparent 30%),
        linear-gradient(135deg, rgba(45, 190, 108, 0.16), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.wc2026-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.wc2026-kicker,
.wc2026-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--wc2026-primary-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.wc2026-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wc2026-live);
    box-shadow: 0 0 0 0 rgba(255, 92, 53, 0.55);
    animation: wc2026Pulse 1.4s infinite;
}

.wc2026-hero h1 {
    margin: 12px 0 12px;
    color: var(--wc2026-text);
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 900;
}

.wc2026-hero p {
    max-width: 650px;
    color: var(--wc2026-muted);
    font-size: 17px;
    line-height: 1.65;
}

.wc2026-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.wc2026-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid var(--wc2026-primary);
    background: var(--wc2026-primary);
    color: #ffffff !important;
    font-weight: 850;
    text-decoration: none;
}

.wc2026-button.is-light {
    background: #ffffff;
    color: var(--wc2026-primary-dark) !important;
}

.wc2026-panel {
    padding: 16px;
    overflow: hidden;
}

.wc2026-panel-title,
.wc2026-section-title {
    margin: 0;
    color: var(--wc2026-text);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0;
}

.wc2026-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 336px;
    gap: 18px;
    align-items: start;
}

.wc2026-main-stack,
.wc2026-sidebar {
    display: grid;
    gap: 18px;
}

.wc2026-section {
    background: transparent;
}

.wc2026-section-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: end;
    margin-bottom: 12px;
}

.wc2026-link {
    color: var(--wc2026-primary-dark);
    font-weight: 850;
    text-decoration: none;
}

.wc2026-article-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.wc2026-article {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
    padding: 10px;
    color: var(--wc2026-text);
    text-decoration: none;
}

.wc2026-article-thumb {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    background: linear-gradient(135deg, #e9f8ef, #ffffff);
    overflow: hidden;
}

.wc2026-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc2026-article h3 {
    margin: 0 0 8px;
    color: var(--wc2026-text);
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: 0;
}

.wc2026-article-meta,
.wc2026-single-meta {
    color: var(--wc2026-muted);
    font-size: 13px;
    line-height: 1.45;
}

.wc2026-archive-header,
.wc2026-single-header {
    margin-bottom: 18px;
}

.wc2026-archive-header h1,
.wc2026-single-header h1 {
    margin: 8px 0;
    color: var(--wc2026-text);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: 0;
    font-weight: 900;
}

.wc2026-filter {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 0 18px;
}

.wc2026-filter input[type="date"] {
    min-height: 42px;
    border: 1px solid var(--wc2026-border);
    border-radius: 8px;
    padding: 0 10px;
    background: #ffffff;
}

.wc2026-single-box {
    padding: clamp(18px, 3vw, 34px);
}

.wc2026-match-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
}

.wc2026-fact {
    border: 1px solid var(--wc2026-border);
    border-radius: 8px;
    padding: 12px;
    background: #fbfffc;
}

.wc2026-fact span {
    display: block;
    color: var(--wc2026-muted);
    font-size: 12px;
    font-weight: 800;
}

.wc2026-fact strong {
    display: block;
    margin-top: 4px;
    color: var(--wc2026-text);
}

.wc2026-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    margin-bottom: 10px;
    color: var(--wc2026-muted);
    font-size: 13px;
    font-weight: 750;
}

.wc2026-breadcrumbs a {
    color: var(--wc2026-primary-dark);
    text-decoration: none;
}

.wc2026-empty {
    padding: 22px;
    border: 1px dashed var(--wc2026-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--wc2026-muted);
}

@keyframes wc2026Pulse {
    70% {
        box-shadow: 0 0 0 9px rgba(255, 92, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 92, 53, 0);
    }
}

@media (max-width: 960px) {
    .wc2026-hero,
    .wc2026-grid {
        grid-template-columns: 1fr;
    }

    .wc2026-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .wc2026-container {
        width: min(100% - 18px, 1180px);
    }

    .wc2026-article-grid,
    .wc2026-sidebar,
    .wc2026-match-facts {
        grid-template-columns: 1fr;
    }

    .wc2026-article {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .wc2026-section-head {
        align-items: start;
        flex-direction: column;
    }
}

/* GoalVN/SkyTima content recreation */
.wc2026-content-page {
    background: linear-gradient(180deg, #f3fbf7 0, #ffffff 260px);
    padding: 34px 0 72px;
}

.wc2026-content-container {
    margin: 0 auto;
}

.wc2026-page-heading {
    margin: 0 0 26px;
}

.wc2026-page-heading span {
    display: block;
    margin-bottom: 7px;
    color: #078047;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wc2026-page-heading h1 {
    margin: 0 0 10px;
    color: #111915;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 950;
    line-height: 1.03;
    letter-spacing: 0;
}

.wc2026-page-heading p {
    max-width: 720px;
    margin: 0;
    color: #7a8580;
    font-size: 14px;
    line-height: 1.7;
}

.wc2026-page-content .tyso-three-column-layout {
    width: 100%;
}

.tyso-three-column-layout {
    display: grid !important;
    grid-template-columns: 200px minmax(0, 1fr) 260px !important;
    gap: 18px !important;
    width: 100% !important;
    max-width: 100% !important;
    align-items: start !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.tyso-middle-column,
.tyso-left-sidebar-goalvn,
.tyso-right-sidebar-goalvn {
    min-width: 0 !important;
}

.tyso-sidebar-widget,
.tyso-date-bar,
.tyso-league-group,
.tyso-standings-container,
.tyso-standing-group-box,
.tyso-live-wrapper,
.tyso-scoreboard-hero,
.tyso-tab-contents {
    border: 1px solid #e6eee9 !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: 0 12px 34px rgba(18, 33, 25, 0.055) !important;
}

.tyso-left-sidebar-goalvn,
.tyso-right-sidebar-goalvn {
    position: sticky;
    top: 88px;
}

.tyso-widget-header-green {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    height: 38px !important;
    padding: 0 16px !important;
    border-radius: 12px 12px 0 0 !important;
    background: #07824b !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    letter-spacing: 0.03em !important;
}

.tyso-sidebar-menu-clean {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.tyso-sidebar-menu-clean li {
    margin: 0 !important;
    border-bottom: 1px solid #edf2ef !important;
}

.tyso-sidebar-menu-clean li:last-child {
    border-bottom: 0 !important;
}

.tyso-sidebar-menu-clean a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 38px !important;
    padding: 0 12px !important;
    color: #26332d !important;
    text-decoration: none !important;
    font-size: 11px !important;
    font-weight: 750 !important;
}

.tyso-sidebar-menu-clean li.active a,
.tyso-sidebar-menu-clean a:hover {
    background: #f0faf5 !important;
    color: #07824b !important;
}

.menu-item-left {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-width: 0 !important;
}

.tyso-menu-logo {
    width: 18px !important;
    height: 18px !important;
    object-fit: contain !important;
    flex: 0 0 18px !important;
}

.tyso-menu-text {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.tyso-menu-badge,
.tyso-badge-hot,
.tyso-badge-vn {
    display: inline-flex !important;
    align-items: center !important;
    height: 16px !important;
    padding: 0 5px !important;
    border-radius: 5px !important;
    background: #ff5c35 !important;
    color: #fff !important;
    font-size: 8px !important;
    font-weight: 900 !important;
}

.tyso-date-bar {
    padding: 10px !important;
    margin: 0 0 16px !important;
    border-radius: 12px !important;
    overflow-x: auto !important;
}

.tyso-date-items {
    display: grid !important;
    grid-template-columns: repeat(7, minmax(72px, 1fr)) !important;
    gap: 7px !important;
    width: max(100%, 546px) !important;
}

.tyso-date-item {
    min-width: 0 !important;
    height: 46px !important;
    border-radius: 10px !important;
}

.tyso-date-item.active {
    background: #07824b !important;
}

.tyso-date-label {
    font-size: 10px !important;
    letter-spacing: 0 !important;
}

.tyso-date-day {
    font-size: 13px !important;
}

.tyso-custom-date {
    flex: 0 0 auto !important;
}

.tyso-date-input {
    height: 40px !important;
    border-radius: 10px !important;
    background: #f7fbf9 !important;
}

.tyso-match-groups-wrapper {
    display: grid !important;
    gap: 16px !important;
}

.tyso-league-group {
    overflow: hidden !important;
    margin: 0 !important;
    border-radius: 12px !important;
}

.tyso-league-header {
    min-height: 54px !important;
    margin: 0 !important;
    padding: 0 16px !important;
    border: 0 !important;
    border-bottom: 1px solid #ecf2ee !important;
    border-radius: 0 !important;
    background: #f4fbf7 !important;
}

.tyso-league-info {
    gap: 10px !important;
}

.tyso-league-logo {
    width: 28px !important;
    height: 28px !important;
}

.tyso-league-name {
    color: #07824b !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.tyso-match-rows-list {
    margin: 0 !important;
}

.tyso-match-row-link {
    display: block !important;
    color: inherit !important;
    text-decoration: none !important;
    border-bottom: 1px solid #edf2ef !important;
}

.tyso-match-row-link:last-child {
    border-bottom: 0 !important;
}

.tyso-match-row {
    display: grid !important;
    grid-template-columns: 72px minmax(120px, 1fr) 74px minmax(120px, 1fr) 74px !important;
    align-items: center !important;
    min-height: 62px !important;
    padding: 0 12px !important;
    background: #fff !important;
    transition: background 0.18s ease, transform 0.18s ease !important;
}

.tyso-match-row:hover {
    background: #fbfffd !important;
    transform: none !important;
}

.tyso-row-time {
    color: #707b76 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-align: center !important;
}

.tyso-time-start {
    display: block !important;
    color: #101916 !important;
    font-size: 13px !important;
    font-weight: 950 !important;
}

.tyso-row-team {
    gap: 8px !important;
    color: #18241e !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.tyso-row-logo {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
}

.tyso-row-team-name {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.tyso-row-score {
    text-align: center !important;
}

.tyso-vs-text,
.tyso-score-text {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 48px !important;
    height: 30px !important;
    border-radius: 9px !important;
    background: #fff4ea !important;
    color: #f28724 !important;
    font-size: 14px !important;
    font-weight: 950 !important;
}

.tyso-score-text.live-color {
    background: #fff0ec !important;
    color: #ff5c35 !important;
}

.tyso-row-detail-btn {
    color: #8b9791 !important;
    font-size: 11px !important;
    font-weight: 850 !important;
}

.tyso-live-header-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin: 0 !important;
    padding: 16px 18px 6px !important;
}

.tyso-section-title,
.tyso-live-header-bar .tyso-section-title {
    margin: 0 !important;
    color: #111915 !important;
    font-size: 22px !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
}

.tyso-live-indicator,
.live-indicator-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    min-height: 30px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    background: #fff0e8 !important;
    color: #111915 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.tyso-live-content-area {
    padding: 14px 18px 18px !important;
}

.tyso-match-grid.compact {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
}

.tyso-match-card {
    border-radius: 12px !important;
    border-color: #e6eee9 !important;
    box-shadow: none !important;
    padding: 14px !important;
}

.tyso-card-body {
    margin: 0 !important;
    gap: 10px !important;
}

.tyso-center-info {
    min-width: 74px !important;
    text-align: center !important;
}

.tyso-match-score {
    display: block !important;
    color: #07824b !important;
    font-size: 18px !important;
    font-weight: 950 !important;
}

.tyso-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 20px !important;
    padding: 0 7px !important;
    border-radius: 999px !important;
    font-size: 10px !important;
    font-weight: 900 !important;
}

.tyso-badge-live {
    background: #fff0ec !important;
    color: #ff5c35 !important;
}

.tyso-badge-ns,
.tyso-badge-ft {
    background: #edf7f2 !important;
    color: #07824b !important;
}

.tyso-empty-box {
    min-height: 118px !important;
    padding: 26px 18px !important;
    border: 1px solid #edf2ef !important;
    border-radius: 12px !important;
    box-shadow: none !important;
}

.tyso-empty-title {
    color: #111915 !important;
    font-size: 14px !important;
    font-weight: 950 !important;
}

.tyso-empty-desc {
    color: #7a8580 !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
}

.live-widget-header {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    padding: 16px !important;
}

.live-title {
    display: block !important;
    color: #111915 !important;
    font-size: 18px !important;
    font-weight: 950 !important;
}

.live-subtext {
    display: block !important;
    margin-top: 4px !important;
    color: #8a948f !important;
    font-size: 12px !important;
}

.live-widget-content {
    padding: 0 16px 16px !important;
}

.no-live-box {
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
    padding: 26px 12px !important;
    border: 1px solid #edf2ef !important;
    border-radius: 12px !important;
    text-align: center !important;
}

.info-circle-icon {
    width: 28px !important;
    height: 28px !important;
    color: #0b9a71 !important;
}

.no-live-title {
    color: #111915 !important;
    font-size: 13px !important;
    font-weight: 950 !important;
}

.no-live-desc {
    max-width: 180px !important;
    color: #8a948f !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
}

.tyso-widget-header-blue {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    height: 48px !important;
    border-radius: 12px 12px 0 0 !important;
    background: linear-gradient(90deg, #15bce7, #2877e8) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    letter-spacing: 0.03em !important;
}

.standings-tabs-widget {
    overflow: hidden !important;
}

.standings-tabs-bar {
    display: flex !important;
    gap: 8px !important;
    overflow-x: auto !important;
    padding: 10px 10px 8px !important;
}

.standings-tab-btn {
    flex: 0 0 auto !important;
    min-width: 42px !important;
    height: 30px !important;
    padding: 0 12px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #f4f7f6 !important;
    color: #7a8580 !important;
    font-size: 12px !important;
    font-weight: 850 !important;
}

.standings-tab-btn.active {
    background: #07824b !important;
    color: #fff !important;
}

.tyso-sidebar-table-goalvn,
.tyso-table-standings {
    width: 100% !important;
    margin: 0 !important;
    border: 0 !important;
    border-collapse: collapse !important;
    background: #fff !important;
}

.tyso-sidebar-table-goalvn {
    table-layout: fixed !important;
}

.tyso-sidebar-table-goalvn th,
.tyso-sidebar-table-goalvn td {
    padding-left: 5px !important;
    padding-right: 5px !important;
    font-size: 10px !important;
}

.tyso-sidebar-table-goalvn th:nth-child(1),
.tyso-sidebar-table-goalvn td:nth-child(1) {
    width: 36px !important;
}

.tyso-sidebar-table-goalvn th:nth-child(2),
.tyso-sidebar-table-goalvn td:nth-child(2) {
    width: 126px !important;
}

.tyso-sidebar-table-goalvn th:nth-child(3),
.tyso-sidebar-table-goalvn td:nth-child(3) {
    width: 34px !important;
}

.tyso-sidebar-table-goalvn th:nth-child(4),
.tyso-sidebar-table-goalvn td:nth-child(4) {
    display: none !important;
}

.tyso-sidebar-table-goalvn th:nth-child(5),
.tyso-sidebar-table-goalvn td:nth-child(5) {
    width: 38px !important;
}

.tyso-sidebar-table-goalvn th,
.tyso-table-standings th {
    height: 38px !important;
    padding: 0 8px !important;
    border: 0 !important;
    border-bottom: 1px solid #edf2ef !important;
    background: #f5fbf7 !important;
    color: #7a8580 !important;
    font-size: 10px !important;
    font-weight: 950 !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
}

.tyso-sidebar-table-goalvn td,
.tyso-table-standings td {
    height: 40px !important;
    padding: 0 8px !important;
    border: 0 !important;
    border-bottom: 1px solid #edf2ef !important;
    color: #19241f !important;
    font-size: 12px !important;
    vertical-align: middle !important;
}

.team-cell-goalvn,
.tyso-team-cell {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 0 !important;
}

.team-cell-goalvn .team-logo,
.tyso-standing-logo {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain !important;
    flex: 0 0 20px !important;
}

.team-cell-goalvn .team-name,
.tyso-standing-team-name {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-weight: 900 !important;
}

.score-highlight,
.tyso-table-standings .col-pts {
    color: #07824b !important;
    font-weight: 950 !important;
}

.standings-widget-footer {
    padding: 10px !important;
    text-align: center !important;
    background: #f8fbfa !important;
    border-radius: 0 0 12px 12px !important;
}

.view-all-bxh-link {
    color: #17221d !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.tyso-standings-container {
    padding: 0 !important;
    overflow: hidden !important;
}

.tyso-standings-league-pills {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 14px 16px !important;
    border-bottom: 1px solid #edf2ef !important;
    background: #fff !important;
}

.tyso-standings-league-pills a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 32px !important;
    padding: 0 13px !important;
    border: 1px solid #edf2ef !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #223129 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(18, 33, 25, 0.04) !important;
}

.tyso-standings-league-pills a.active,
.tyso-standings-league-pills a:hover {
    border-color: #07824b !important;
    background: #07824b !important;
    color: #fff !important;
}

.tyso-standings-header {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 20px 22px 10px !important;
}

.tyso-standings-league-logo {
    width: 36px !important;
    height: 36px !important;
    object-fit: contain !important;
}

.tyso-standings-title {
    margin: 0 !important;
    color: #111915 !important;
    font-size: 24px !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
}

.tyso-standing-group-box {
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.tyso-group-title {
    margin: 0 !important;
    padding: 14px 22px 10px !important;
    color: #07824b !important;
    font-size: 16px !important;
    font-weight: 950 !important;
}

.tyso-table-responsive {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

.tyso-table-standings {
    table-layout: fixed !important;
}

.tyso-table-standings th.col-team,
.tyso-table-standings td.col-team {
    text-align: left !important;
}

.tyso-table-standings .col-rank {
    width: 6% !important;
}

.tyso-table-standings .col-team {
    width: 31% !important;
    min-width: 0 !important;
}

.tyso-table-standings .col-played,
.tyso-table-standings .col-stat,
.tyso-table-standings .col-diff {
    width: 7% !important;
}

.tyso-table-standings .col-pts {
    width: 8% !important;
}

.tyso-table-standings .col-form {
    width: 20% !important;
}

.tyso-table-standings .tyso-form-list {
    justify-content: center !important;
    gap: 4px !important;
    flex-wrap: nowrap !important;
}

.tyso-rank-number {
    color: #111915 !important;
    font-weight: 950 !important;
}

.text-success {
    color: #07824b !important;
}

.text-danger {
    color: #c34b3b !important;
}

.tyso-dynamic-page-wrapper {
    background: linear-gradient(180deg, #f3fbf7 0, #ffffff 260px) !important;
    min-height: 60vh !important;
    padding: 34px 0 72px;
}

.tyso-match-page-title {
    margin: 0 0 16px !important;
    color: #111915 !important;
    font-size: 28px !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
}

.tyso-dynamic-match-card {
    border-radius: 12px !important;
}

.tyso-match-detail-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

.tyso-scoreboard-hero {
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 12px 12px 0 0 !important;
    box-shadow: 0 20px 44px rgba(18, 33, 25, 0.08) !important;
}

.tyso-hero-league {
    display: none !important;
}

.tyso-hero-grid {
    display: grid !important;
    grid-template-columns: 1fr 180px 1fr !important;
    align-items: center !important;
    min-height: 155px !important;
    padding: 16px 70px 10px !important;
}

.tyso-hero-team {
    display: grid !important;
    justify-items: center !important;
    gap: 10px !important;
}

.tyso-hero-logo {
    width: 76px !important;
    height: 76px !important;
    object-fit: contain !important;
}

.tyso-hero-team-name {
    margin: 0 !important;
    color: #111915 !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 950 !important;
    text-align: center !important;
}

.tyso-hero-score-box {
    display: grid !important;
    justify-items: center !important;
    gap: 6px !important;
}

.tyso-hero-score {
    color: #079c82 !important;
    font-size: 34px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
}

.tyso-hero-badge .tyso-badge {
    min-height: 22px !important;
    background: #eef8f2 !important;
    color: #111915 !important;
}

.tyso-hero-vs {
    color: #079c82 !important;
    font-size: 34px !important;
    font-weight: 950 !important;
}

.tyso-hero-match-time {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 24px !important;
    padding: 3px 10px !important;
    border-radius: 999px !important;
    background: #f0faf5 !important;
    color: #51645a !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 850 !important;
    white-space: nowrap !important;
}

.tyso-hero-time {
    color: #111915 !important;
    font-size: 14px !important;
}

.tyso-hero-meta {
    display: flex !important;
    justify-content: center !important;
    gap: 16px !important;
    min-height: 38px !important;
    padding: 0 16px 14px !important;
    color: #7a8580 !important;
    font-size: 12px !important;
}

.tyso-detail-tabs {
    display: flex !important;
    gap: 0 !important;
    overflow-x: auto !important;
    margin: 0 !important;
    padding: 0 18px !important;
    border: 1px solid #e6eee9 !important;
    border-top: 0 !important;
    background: #fff !important;
}

.tyso-tab-btn[data-tab="tab-info"] {
    display: none !important;
}

.tyso-tab-btn {
    height: 48px !important;
    margin: 0 22px 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-bottom: 2px solid transparent !important;
    background: transparent !important;
    color: #7a8580 !important;
    font-size: 14px !important;
    font-weight: 850 !important;
}

.tyso-tab-btn.active {
    border-bottom-color: #079c82 !important;
    color: #079c82 !important;
}

.tyso-tab-contents {
    min-height: 360px !important;
    border-top: 0 !important;
    border-radius: 0 0 12px 12px !important;
    box-shadow: 0 20px 44px rgba(18, 33, 25, 0.08) !important;
}

.tyso-tab-pane {
    padding: 28px 24px !important;
}

.tyso-timeline-container {
    max-width: 440px !important;
    margin: 0 auto !important;
}

.tyso-timeline-axis {
    position: relative !important;
    display: grid !important;
    gap: 10px !important;
}

.tyso-timeline-axis:before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 50% !important;
    width: 2px !important;
    background: #e4eeea !important;
    transform: translateX(-50%) !important;
}

.tyso-timeline-row {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 1fr 34px 1fr !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 28px !important;
    color: #16231d !important;
    font-size: 12px !important;
}

.timeline-time {
    color: #111915 !important;
    font-weight: 950 !important;
    text-align: right !important;
}

.timeline-icon {
    z-index: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
    margin: 0 auto !important;
    border-radius: 50% !important;
    background: #fff !important;
    font-size: 13px !important;
}

.timeline-content {
    color: #23342c !important;
}

.event-home .timeline-content {
    grid-column: 1 !important;
    grid-row: 1 !important;
    text-align: right !important;
}

.event-home .timeline-time {
    grid-column: 3 !important;
    text-align: left !important;
}

.event-away .timeline-content {
    text-align: left !important;
}

@media (max-width: 1100px) {
    .tyso-three-column-layout {
        grid-template-columns: 170px minmax(0, 1fr) !important;
    }

    .tyso-right-sidebar-goalvn {
        grid-column: 1 / -1 !important;
        position: static !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }
}

@media (max-width: 760px) {
    .wc2026-content-page,
    .tyso-dynamic-page-wrapper {
        padding-top: 22px !important;
    }

    .tyso-three-column-layout,
    .tyso-right-sidebar-goalvn {
        grid-template-columns: 1fr !important;
    }

    .tyso-left-sidebar-goalvn,
    .tyso-right-sidebar-goalvn {
        position: static !important;
    }

    .tyso-match-row {
        grid-template-columns: 54px minmax(0, 1fr) 58px minmax(0, 1fr) !important;
        min-height: 58px !important;
        padding: 0 8px !important;
    }

    .tyso-row-actions {
        display: none !important;
    }

    .tyso-row-team {
        font-size: 12px !important;
    }

    .tyso-hero-grid {
        grid-template-columns: 1fr 96px 1fr !important;
        padding: 18px 14px 10px !important;
    }

    .tyso-hero-logo {
        width: 54px !important;
        height: 54px !important;
    }

    .tyso-hero-score,
    .tyso-hero-vs {
        font-size: 28px !important;
    }

    .tyso-hero-team-name {
        font-size: 12px !important;
    }
}

/* GoalVN sample parity for shortcode content inside Flatsome pages */
body .tyso-three-column-layout {
    display: grid !important;
    grid-template-columns: 240px minmax(0, 1fr) 310px !important;
    gap: 24px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body .row-main:has(.tyso-three-column-layout) > .col {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.tyso-wc-home-shortcode .tyso-date-bar {
    display: none !important;
}

.tyso-schedule-container {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.tyso-schedule-heading {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 18px !important;
    margin: 0 0 18px !important;
}

.tyso-schedule-title {
    margin: 0 0 4px !important;
    color: #0f1c14 !important;
    font-size: 28px !important;
    line-height: 1.12 !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
}

.tyso-schedule-subtitle {
    margin: 0 !important;
    color: #62726a !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

.tyso-schedule-all-link {
    flex: 0 0 auto !important;
    margin-top: 12px !important;
    color: #0f1c14 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.tyso-schedule-table-head {
    display: grid !important;
    grid-template-columns: 96px minmax(0, 1fr) 86px minmax(0, 1fr) !important;
    align-items: center !important;
    min-height: 38px !important;
    margin: 0 0 24px !important;
    padding: 0 16px !important;
    border: 1px solid #d9eee3 !important;
    border-radius: 12px !important;
    background: #edf8f2 !important;
    color: #008346 !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
}

.tyso-schedule-table-head span {
    text-align: center !important;
}

.tyso-schedule-table-head span:first-child {
    text-align: left !important;
    padding-left: 16px !important;
}

.tyso-left-sidebar-goalvn .tyso-sidebar-widget,
.tyso-right-sidebar-goalvn .tyso-sidebar-widget,
.tyso-league-group {
    border: 1px solid #dfeee6 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    box-shadow: 0 14px 30px rgba(25, 57, 42, 0.06) !important;
    overflow: hidden !important;
}

.tyso-widget-header-green {
    min-height: 48px !important;
    padding: 0 18px !important;
    border-radius: 12px 12px 0 0 !important;
    background: #0b7748 !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
}

.tyso-sidebar-menu-clean li a {
    min-height: 41px !important;
    padding: 0 16px !important;
    color: #0f1c14 !important;
    font-size: 13px !important;
}

.tyso-sidebar-menu-clean .tyso-menu-logo {
    width: 20px !important;
    height: 20px !important;
}

.tyso-sidebar-menu-clean li.active a {
    border-left: 3px solid #0b9a5a !important;
    background: #f0faf5 !important;
}

.tyso-match-groups-wrapper {
    gap: 22px !important;
}

.tyso-league-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 70px !important;
    padding: 0 18px !important;
    border: 0 !important;
    border-bottom: 1px solid #e4f0e9 !important;
    background: #f5fbf7 !important;
}

.tyso-league-info {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    min-width: 0 !important;
}

.tyso-league-logo {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain !important;
}

.tyso-league-text {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
}

.tyso-league-name {
    color: #008346 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 950 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.tyso-league-subtitle {
    margin-top: 3px !important;
    color: #63746b !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
}

.tyso-league-count {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 26px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    background: #dcf8e8 !important;
    color: #008346 !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    white-space: nowrap !important;
}

.tyso-match-rows-list {
    border: 0 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
}

.tyso-match-rows-list .tyso-match-row-link,
.tyso-match-rows-list .tyso-match-row-item {
    border-bottom: 1px solid #dce9e2 !important;
}

.tyso-match-rows-list .tyso-match-row-link:last-child,
.tyso-match-rows-list .tyso-match-row-item:last-child {
    border-bottom: 0 !important;
}

.tyso-match-rows-list .tyso-match-row-link:nth-child(even) .tyso-match-row,
.tyso-match-rows-list .tyso-match-row-item:nth-child(even) .tyso-match-row {
    background: #fbfdfc !important;
}

.tyso-match-row {
    grid-template-columns: 96px minmax(0, 1fr) 86px minmax(0, 1fr) !important;
    min-height: 68px !important;
    padding: 0 16px !important;
    column-gap: 12px !important;
}

.tyso-row-actions {
    display: none !important;
}

.tyso-row-time {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
    border-right: 1px solid #edf2ef !important;
}

.tyso-row-date {
    color: #6c7c73 !important;
    font-size: 12px !important;
    line-height: 1.1 !important;
}

.tyso-time-start {
    min-width: 58px !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    background: #f2fbf6 !important;
    color: #0f1c14 !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
    font-weight: 950 !important;
    text-align: center !important;
}

.tyso-row-team {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-width: 0 !important;
    color: #0f1c14 !important;
    font-size: 14px !important;
    font-weight: 850 !important;
}

.tyso-team-home {
    justify-content: flex-end !important;
    text-align: right !important;
}

.tyso-team-away {
    justify-content: flex-start !important;
    text-align: left !important;
}

.tyso-row-team-name {
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.tyso-row-logo {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain !important;
    flex: 0 0 auto !important;
}

.tyso-row-score {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.tyso-vs-text,
.tyso-score-text {
    min-width: 58px !important;
    min-height: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    background: #f0f8f3 !important;
    color: #008346 !important;
    font-size: 15px !important;
    font-weight: 950 !important;
}

.tyso-score-text {
    background: #f5f6f8 !important;
    color: #26352d !important;
}

.tyso-dynamic-page-wrapper .row-main > .col {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.tyso-match-page-title,
.tyso-dynamic-match-card {
    width: 100% !important;
    max-width: 1120px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.tyso-match-page-title {
    margin-bottom: 20px !important;
}

@media (max-width: 1200px) {
    body .tyso-three-column-layout {
        grid-template-columns: 220px minmax(0, 1fr) !important;
    }

    .tyso-right-sidebar-goalvn {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 760px) {
    body .tyso-three-column-layout {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .tyso-schedule-heading {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .tyso-schedule-all-link {
        margin-top: 0 !important;
    }

    .tyso-schedule-table-head,
    .tyso-match-row {
        grid-template-columns: 62px minmax(0, 1fr) 58px minmax(0, 1fr) !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .tyso-row-logo {
        width: 22px !important;
        height: 22px !important;
    }

    .tyso-row-team {
        gap: 6px !important;
        font-size: 12px !important;
    }
}

/* Responsive mobile view for match schedules: Stacked logos & names (Parity override) */
@media (max-width: 767px) {
    /* Set specific column sizes for mobile */
    body .tyso-match-row {
        grid-template-columns: 66px 1fr 64px 1fr !important;
        column-gap: 4px !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }
    
    /* Stack Home Team: Logo on top, Name below */
    body .tyso-row-team-home-cell {
        display: flex !important;
        flex-direction: column-reverse !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 3px !important;
    }
    
    /* Stack Away Team: Logo on top, Name below */
    body .tyso-row-team-away-cell {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 3px !important;
    }
    
    /* Center logos and text on mobile */
    body .tyso-row-team-home-cell img,
    body .tyso-row-team-away-cell img {
        margin: 0 !important;
        display: block !important;
        width: 24px !important;
        height: 24px !important;
    }
    
    body .tyso-row-team-home-cell span,
    body .tyso-row-team-away-cell span {
        font-size: 11px !important;
        font-weight: 700 !important;
        white-space: normal !important;
        word-break: break-word !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        line-height: 1.15 !important;
        text-align: center !important;
    }
    
    /* Shrink VS and Score badges on mobile */
    body .tyso-row-score div {
        font-size: 12px !important;
        min-width: 48px !important;
        padding: 5px 6px !important;
    }
    
    body .tyso-row-time {
        padding-right: 4px !important;
        border-right: 1px solid #edf2ef !important;
    }
    
    body .tyso-row-time span {
        text-align: center !important;
    }
}

/* Match detail AI tab: reduce nested tab padding added by theme overrides. */
.tyso-match-detail-wrapper #prediction.tyso-tab-pane {
    padding: 8px 8px 0 !important;
}

.tyso-match-detail-wrapper #prediction .tyso-ai-panel {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

.tyso-match-detail-wrapper #prediction .tyso-ai-box {
    width: 100% !important;
}

@media (max-width: 768px) {
    .tyso-match-detail-wrapper #prediction.tyso-tab-pane {
        padding: 0 !important;
    }
}

/* Mobile date navigation: keep all 7 days visible without horizontal scroll. */
@media (max-width: 767px) {
    .tyso-date-bar {
        display: block !important;
        width: 100% !important;
        overflow: hidden !important;
        padding: 7px !important;
        margin-bottom: 14px !important;
        border-radius: 12px !important;
    }

    .tyso-date-items {
        display: grid !important;
        grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
        gap: 4px !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        overflow: visible !important;
    }

    .tyso-date-item {
        min-width: 0 !important;
        width: 100% !important;
        height: 44px !important;
        padding: 4px 1px !important;
        border-radius: 7px !important;
        line-height: 1.05 !important;
    }

    .tyso-date-label {
        max-width: 100% !important;
        margin-bottom: 2px !important;
        overflow: hidden !important;
        font-size: 7.5px !important;
        font-weight: 500 !important;
        line-height: 1.05 !important;
        text-align: center !important;
        text-overflow: clip !important;
        white-space: normal !important;
    }

    .tyso-date-day {
        max-width: 100% !important;
        overflow: hidden !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        line-height: 1.1 !important;
        text-align: center !important;
        text-overflow: clip !important;
        white-space: normal !important;
    }
}

/* ============================================================
   CUSTOM TEMPLATE ALIGNMENT (thoitietvn Inspired)
   ============================================================ */

:root {
    --tt-blue: #2dbe6c; /* Soccer Primary Green */
    --tt-blue-dark: #22a85a; /* Soccer Dark Green */
    --tt-blue-light: #44db87;
    --tt-bg: #f5fbf7; /* Light layout bg */
    --tt-text: #0f1c14; /* Main text */
    --tt-muted: #627269;
    --tt-border: #dbeee4;
    --tt-radius: 12px;
    --tt-shadow: 0 4px 20px rgba(45, 190, 108, 0.08);
}

/* Dark Mode Alignment Overrides */
html.tyso-dark-mode {
    --tt-blue: #2dbe6c;
    --tt-blue-dark: #22a85a;
    --tt-blue-light: #44db87;
    --tt-bg: #091411; /* Soccer Dark bg */
    --tt-text: #e7f2ec; /* Light text */
    --tt-muted: #9baca5;
    --tt-border: #263a33;
    --tt-radius: 12px;
    --tt-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

/* Base style hooks for custom layout pages */
.tt-single-page,
.tt-archive-page {
    background: var(--tt-bg);
    color: var(--tt-text);
    font-family: 'Be Vietnam Pro', 'Inter', sans-serif !important;
}

/* ── Reading Progress Bar ── */
.tt-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(45, 190, 108, .18);
    z-index: 9999;
}
.tt-reading-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--tt-blue), var(--tt-blue-light));
    transition: width .1s linear;
    border-radius: 0 2px 2px 0;
}

/* ── Post Hero Header ── */
.tt-post-hero {
    position: relative;
    background: linear-gradient(135deg, #0f1c14 0%, #173824 45%, #2dbe6c 100%);
    padding: 48px 0 44px;
    overflow: hidden;
}
.tt-post-hero.has-thumb {
    min-height: 320px;
    display: flex;
    align-items: flex-end;
}
.tt-post-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.35) saturate(.9);
    z-index: 0;
}
.tt-post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 28, 20, .4) 0%,
        rgba(15, 28, 20, .75) 60%,
        rgba(9, 20, 17, .96) 100%
    );
    z-index: 1;
}
.tt-post-hero .container { position: relative; z-index: 2; width: 100%; }
.tt-post-hero-inner { max-width: 820px; }

/* Breadcrumbs */
.tt-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 14px;
}
.tt-breadcrumb a {
    color: rgba(255, 255, 255, 0.72) !important;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none !important;
    transition: color .15s;
}
.tt-breadcrumb a:hover { color: #fff !important; }
.tt-breadcrumb-sep { opacity: .5; margin: 0 2px; }
.tt-breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 260px;
}

/* Category Badge */
.tt-post-cat-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-decoration: none !important;
    backdrop-filter: blur(4px);
    transition: background .15s;
}
.tt-post-cat-badge:hover {
    background: rgba(255, 255, 255, .25) !important;
}

/* Post Title */
.tt-post-title {
    font-size: clamp(22px, 3.8vw, 34px) !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1.25 !important;
    margin: 0 0 16px !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Meta Row */
.tt-post-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}
.tt-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.tt-meta-item svg { opacity: .8; flex-shrink: 0; }
.tt-meta-dot { opacity: .45; }
.tt-meta-author-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none !important;
}
.tt-meta-author-link:hover { color: var(--tt-blue-light) !important; }
.tt-meta-avatar {
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    object-fit: cover;
}

/* ── 2-Column Content Layout ── */
.tt-single-body {
    padding: 32px 0 40px;
    background: var(--tt-bg);
}
.tt-single-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
}
.tt-single-main { min-width: 0; }

/* Sticky Sidebars */
.tt-sidebar-sticky-single {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.admin-bar .tt-sidebar-sticky-single {
    top: 122px;
}

/* Article Container */
.tt-article {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--tt-shadow);
    padding: 28px 32px;
    margin-bottom: 20px;
    border: 1px solid var(--tt-border);
}
.tt-article-content {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--tt-text);
}
.tt-article-content h2 {
    font-size: 21px !important;
    font-weight: 800 !important;
    color: var(--tt-blue-dark) !important;
    margin: 28px 0 14px !important;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--tt-border);
}
.tt-article-content h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--tt-blue-dark) !important;
    margin: 22px 0 10px !important;
}
.tt-article-content p { margin: 0 0 16px !important; }
.tt-article-content a {
    color: var(--tt-blue) !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.tt-article-content a:hover { color: var(--tt-blue-dark) !important; }
.tt-article-content img {
    display: block;
    margin: 16px auto !important;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.tt-article-content figure.wp-block-image,
.tt-article-content .wp-block-image {
    display: block;
    text-align: center;
    margin-left: auto !important;
    margin-right: auto !important;
}
.tt-article-content blockquote {
    border-left: 4px solid var(--tt-blue);
    background: rgba(45, 190, 108, 0.05);
    margin: 20px 0 !important;
    padding: 14px 18px !important;
    border-radius: 0 8px 8px 0;
    color: var(--tt-muted) !important;
    font-style: italic;
}

/* Custom Page Links pagination within post */
.tt-page-links {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}
.tt-page-links a,
.tt-page-links span {
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--tt-border);
    text-decoration: none !important;
}
.tt-page-links a:hover {
    background: var(--tt-blue);
    color: #fff !important;
    border-color: var(--tt-blue);
}

/* Article Tags */
.tt-article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--tt-border);
}
.tt-tags-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--tt-muted);
}
.tt-tag-pill {
    display: inline-block;
    background: rgba(45, 190, 108, 0.04);
    border: 1px solid var(--tt-border);
    color: var(--tt-blue) !important;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    text-decoration: none !important;
    transition: all .15s;
}
.tt-tag-pill:hover {
    background: var(--tt-blue) !important;
    color: #fff !important;
    border-color: var(--tt-blue);
}

/* Share Section */
.tt-share-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--tt-border);
}
.tt-share-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--tt-muted);
}
.tt-share-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.tt-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 30px;
    padding: 0 14px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid transparent;
    text-decoration: none !important;
    transition: all .15s;
    font-family: inherit;
    line-height: 1;
    white-space: nowrap;
    box-sizing: border-box;
}
.tt-share-fb {
    background: #1877f2;
    color: #fff !important;
}
.tt-share-fb:hover { background: #0c61cf !important; }
.tt-share-tw {
    background: #111;
    color: #fff !important;
}
.tt-share-tw:hover { background: #2a2a2a !important; }
.tt-share-copy {
    background: #fff;
    color: var(--tt-blue) !important;
    border-color: var(--tt-border) !important;
}
.tt-share-copy:hover { background: rgba(45, 190, 108, 0.06) !important; }
.tt-share-copied {
    background: #2dbe6c !important;
    color: #fff !important;
    border-color: #2dbe6c !important;
}

/* Author Box */
.tt-author-box {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--tt-shadow);
    padding: 20px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 20px;
    border: 1px solid var(--tt-border);
    border-left: 4px solid var(--tt-blue);
}
.tt-author-avatar {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    border: 2px solid var(--tt-border) !important;
    object-fit: cover;
    flex-shrink: 0;
}
.tt-author-info { flex: 1; min-width: 0; }
.tt-author-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--tt-blue);
    margin-bottom: 4px;
}
.tt-author-name {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: var(--tt-blue-dark) !important;
    margin: 0 0 6px !important;
}
.tt-author-name a {
    color: inherit;
    text-decoration: none !important;
}
.tt-author-name a:hover { color: var(--tt-blue) !important; }
.tt-author-bio {
    font-size: 13px !important;
    color: var(--tt-muted) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Post Navigation (Prev/Next) */
.tt-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.tt-post-nav-item {
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-decoration: none !important;
    transition: all .15s;
}
.tt-post-nav-item:hover {
    border-color: var(--tt-blue);
    box-shadow: var(--tt-shadow);
    transform: translateY(-1px);
}
.tt-nav-next { text-align: right; }
.tt-nav-dir {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--tt-blue);
}
.tt-nav-next .tt-nav-dir { justify-content: flex-end; }
.tt-nav-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--tt-text) !important;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tt-post-nav-item:only-child { grid-column: 1 / -1; }

/* Comments list wrapper */
.tt-comments-wrap {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--tt-shadow);
    padding: 24px 28px;
    border: 1px solid var(--tt-border);
}
.tt-comments-wrap .comment-reply-title,
.tt-comments-wrap #reply-title {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: var(--tt-blue-dark) !important;
    margin-bottom: 12px !important;
}
.tt-comments-wrap .comment-list { list-style: none !important; padding: 0 !important; }
.tt-comments-wrap .comment-body {
    background: rgba(45, 190, 108, 0.03);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
    border: 1px solid var(--tt-border);
}
.tt-comments-wrap textarea,
.tt-comments-wrap input[type="text"],
.tt-comments-wrap input[type="email"] {
    border: 1.5px solid var(--tt-border) !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    font-size: 13.5px !important;
    background: transparent !important;
    color: var(--tt-text) !important;
    box-sizing: border-box;
}
.tt-comments-wrap textarea:focus,
.tt-comments-wrap input:focus {
    border-color: var(--tt-blue) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(45, 190, 108, .12) !important;
}

/* ── Sidebar Widgets ── */
.tt-single-sidebar,
.tt-archive-sidebar { min-width: 0; }
.tt-sidebar-widget {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--tt-shadow);
    overflow: hidden;
    border: 1px solid var(--tt-border);
}
.tt-sidebar-widget-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--tt-blue-dark);
    padding: 12px 16px;
    border-bottom: 2px solid var(--tt-border);
    background: rgba(45, 190, 108, 0.03);
}

/* Related Sidebar List */
.tt-related-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.tt-related-item {
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--tt-border);
    transition: background .12s;
}
.tt-related-item:last-child { border-bottom: none; }
.tt-related-item:hover { background: rgba(45, 190, 108, 0.04); }
.tt-related-thumb {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 6px;
    overflow: hidden;
    display: block;
}
.tt-related-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
.tt-related-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.tt-related-title {
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: var(--tt-text) !important;
    line-height: 1.4;
    text-decoration: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tt-related-title:hover { color: var(--tt-blue) !important; }
.tt-related-date {
    font-size: 11px;
    color: var(--tt-muted);
}

/* Category Sidebar List */
.tt-cat-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.tt-cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    border-bottom: 1px solid var(--tt-border);
    transition: background .12s;
}
.tt-cat-item:last-child { border-bottom: none; }
.tt-cat-item:hover { background: rgba(45, 190, 108, 0.04); }
.tt-cat-item a {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--tt-text) !important;
    text-decoration: none !important;
    flex: 1;
}
.tt-cat-item a:hover { color: var(--tt-blue) !important; }
.tt-cat-count {
    background: rgba(45, 190, 108, 0.08);
    color: var(--tt-blue);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    min-width: 24px;
    text-align: center;
}
.tt-cat-active a { color: var(--tt-blue) !important; font-weight: 700 !important; }
.tt-cat-active .tt-cat-count { background: var(--tt-blue); color: #fff; }

/* ── Related Post Bottom Grid Section ── */
.tt-related-section {
    background: rgba(45, 190, 108, 0.04);
    padding: 36px 0 44px;
    border-top: 2px solid var(--tt-border);
}
.tt-related-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 19px !important;
    font-weight: 800 !important;
    color: var(--tt-blue-dark) !important;
    margin: 0 0 24px !important;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--tt-blue);
}
.tt-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.tt-related-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--tt-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .2s;
    border: 1px solid var(--tt-border);
}
.tt-related-card:hover {
    box-shadow: 0 8px 24px rgba(45, 190, 108, 0.16);
    transform: translateY(-2px);
}
.tt-related-card-thumb {
    display: block;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, #173824, #2dbe6c);
    text-decoration: none !important;
}
.tt-related-card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform .3s;
}
.tt-related-card:hover .tt-related-card-img { transform: scale(1.04); }
.tt-related-card-no-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.tt-related-card-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--tt-blue);
    color: #fff !important;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 3px 10px;
    border-radius: 12px;
}
.tt-related-card-body {
    padding: 14px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.tt-related-card-title {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: var(--tt-text) !important;
    line-height: 1.4;
    text-decoration: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .15s;
}
.tt-related-card-title:hover { color: var(--tt-blue) !important; }
.tt-related-card-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--tt-muted);
}
.tt-related-card-excerpt {
    font-size: 12.5px !important;
    color: var(--tt-muted) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   ARCHIVE / CATEGORY / SEARCH LAYOUTS
   ============================================================ */
.tt-archive-hero {
    background: linear-gradient(135deg, #0f1c14 0%, #173824 45%, #2dbe6c 100%);
    padding: 32px 0 28px;
    position: relative;
    overflow: hidden;
}
.tt-archive-hero-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}
.tt-archive-hero-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}
.tt-archive-title {
    font-size: clamp(20px, 3.2vw, 28px) !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 4px !important;
    line-height: 1.2 !important;
}
.tt-archive-desc {
    font-size: 13.5px !important;
    color: rgba(255, 255, 255, 0.78) !important;
    margin: 0 0 8px !important;
    line-height: 1.5 !important;
}
.tt-archive-count {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Archive Body */
.tt-archive-body {
    padding: 28px 0 44px;
    background: var(--tt-bg);
}
.tt-archive-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
}
.tt-archive-main { min-width: 0; }

/* Archive Sticky Sidebar */
.tt-archive-sidebar-sticky {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.admin-bar .tt-archive-sidebar-sticky {
    top: 122px;
}

/* Search Sidebar Box */
.tt-sb-search { padding: 12px 14px; }
.tt-sb-search-row {
    display: flex;
    border: 1.5px solid var(--tt-border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .15s;
    background: transparent;
}
.tt-sb-search-row:focus-within { border-color: var(--tt-blue); }
.tt-sb-search-input {
    flex: 1;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 8px 12px !important;
    font-size: 13px !important;
    background: transparent !important;
    color: var(--tt-text) !important;
    min-width: 0;
}
.tt-sb-search-btn {
    background: var(--tt-blue);
    border: none;
    padding: 0 12px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    transition: background .15s;
}
.tt-sb-search-btn:hover { background: var(--tt-blue-dark); }

/* ── Split Featured Card layout ── */
.tt-feat-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--tt-shadow);
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--tt-border);
    transition: box-shadow .2s, transform .2s;
}
.tt-feat-card:hover {
    box-shadow: 0 8px 28px rgba(45, 190, 108, 0.14);
    transform: translateY(-2px);
}
.tt-feat-thumb {
    display: block;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #173824, #2dbe6c);
    min-height: 260px;
    text-decoration: none !important;
}
.tt-feat-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.tt-feat-card:hover .tt-feat-img { transform: scale(1.03); }
.tt-feat-no-thumb {
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tt-feat-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--tt-blue);
    color: #fff !important;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 3px 10px;
    border-radius: 20px;
}
.tt-feat-body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}
.tt-feat-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
    color: var(--tt-muted);
}
.tt-feat-author { font-weight: 600; }
.tt-feat-title {
    font-size: 19px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    margin: 0 !important;
}
.tt-feat-title a {
    color: var(--tt-text) !important;
    text-decoration: none !important;
    transition: color .15s;
}
.tt-feat-title a:hover { color: var(--tt-blue) !important; }
.tt-feat-excerpt {
    font-size: 13.5px !important;
    color: var(--tt-muted) !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tt-feat-readmore {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--tt-blue);
    color: #ffffff !important;
    font-size: 12.5px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none !important;
    align-self: flex-start;
    transition: background .15s, gap .15s;
}
html.tyso-dark-mode a.tt-feat-readmore,
.tt-feat-card a.tt-feat-readmore {
    color: #ffffff !important;
}
.tt-feat-readmore:hover,
html.tyso-dark-mode a.tt-feat-readmore:hover {
    background: var(--tt-blue-dark) !important;
    color: #ffffff !important;
    gap: 8px;
}

/* ── Archive Card Grid ── */
.tt-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}
.tt-arc-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--tt-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
    border: 1px solid var(--tt-border);
}
.tt-arc-card:hover {
    box-shadow: 0 8px 24px rgba(45, 190, 108, 0.14);
    transform: translateY(-2px);
}
.tt-arc-card-thumb {
    display: block;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, #173824, #2dbe6c);
    text-decoration: none !important;
    flex-shrink: 0;
}
.tt-arc-card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform .3s;
    display: block;
}
.tt-arc-card:hover .tt-arc-card-img { transform: scale(1.04); }
.tt-arc-card-no-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tt-arc-card-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--tt-blue);
    color: #fff !important;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 3px 10px;
    border-radius: 12px;
}
.tt-arc-card-body {
    padding: 14px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.tt-arc-card-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}
.tt-arc-card-title a {
    color: var(--tt-text) !important;
    text-decoration: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .15s;
}
.tt-arc-card-title a:hover { color: var(--tt-blue) !important; }
.tt-arc-card-excerpt {
    font-size: 12.5px !important;
    color: var(--tt-muted) !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tt-arc-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--tt-border);
    gap: 8px;
}
.tt-arc-card-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    color: var(--tt-muted);
    min-width: 0;
    overflow: hidden;
}
.tt-arc-meta-avatar {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    flex-shrink: 0;
}
.tt-arc-meta-author {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
}
.tt-arc-meta-sep { opacity: .4; }
.tt-arc-meta-date { white-space: nowrap; flex-shrink: 0; }
.tt-arc-read-more {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--tt-blue) !important;
    text-decoration: none !important;
    white-space: nowrap;
    flex-shrink: 0;
    transition: gap .15s;
}
html.tyso-dark-mode a.tt-arc-read-more {
    color: var(--tt-blue-light) !important;
}
.tt-arc-read-more:hover { gap: 6px; }

/* ── Pagination ── */
.tt-archive-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.tt-archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--tt-border);
    color: var(--tt-text) !important;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .15s;
}
.tt-archive-pagination .page-numbers:hover,
.tt-archive-pagination .page-numbers.current {
    background: var(--tt-blue) !important;
    border-color: var(--tt-blue) !important;
    color: #fff !important;
}
.tt-archive-pagination .page-numbers.dots {
    background: transparent !important;
    border-color: transparent !important;
    color: var(--tt-muted) !important;
}

/* ── Empty states ── */
.tt-archive-empty {
    text-align: center;
    padding: 44px 20px;
    color: var(--tt-muted);
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--tt-border);
    box-shadow: var(--tt-shadow);
}
.tt-archive-empty h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--tt-text) !important;
    margin: 12px 0 6px !important;
}
.tt-archive-empty p {
    font-size: 14px;
    margin: 0 0 20px !important;
}
.tt-arc-btn-home {
    display: inline-flex;
    align-items: center;
    background: var(--tt-blue);
    color: #fff !important;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background .15s;
}
.tt-arc-btn-home:hover { background: var(--tt-blue-dark) !important; }

/* ── Global Dark Mode Styling Overrides for Custom Templates ── */
html.tyso-dark-mode .tt-article,
html.tyso-dark-mode .tt-author-box,
html.tyso-dark-mode .tt-post-nav-item,
html.tyso-dark-mode .tt-comments-wrap,
html.tyso-dark-mode .tt-sidebar-widget,
html.tyso-dark-mode .tt-related-card,
html.tyso-dark-mode .tt-feat-card,
html.tyso-dark-mode .tt-arc-card,
html.tyso-dark-mode .tt-archive-pagination .page-numbers,
html.tyso-dark-mode .tt-archive-empty {
    background: var(--wc2026-card) !important;
    border-color: var(--wc2026-border) !important;
    color: var(--wc2026-text) !important;
}

html.tyso-dark-mode .tt-related-item,
html.tyso-dark-mode .tt-cat-item,
html.tyso-dark-mode .tt-comments-wrap .comment-body,
html.tyso-dark-mode .tt-arc-card-footer,
html.tyso-dark-mode .tt-sb-search-row {
    border-color: var(--wc2026-border) !important;
}

html.tyso-dark-mode .tt-related-item:hover,
html.tyso-dark-mode .tt-cat-item:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

html.tyso-dark-mode .tt-sidebar-widget-title {
    background: rgba(255, 255, 255, 0.02) !important;
    border-bottom-color: var(--wc2026-border) !important;
    color: var(--wc2026-text) !important;
}

html.tyso-dark-mode .tt-article-content h2 {
    border-bottom-color: var(--wc2026-border) !important;
}

html.tyso-dark-mode .tt-tag-pill,
html.tyso-dark-mode .tt-share-copy {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: var(--wc2026-border) !important;
}

html.tyso-dark-mode .tt-related-section {
    background: rgba(45, 190, 108, 0.01) !important;
    border-top-color: var(--wc2026-border) !important;
}

/* ============================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ============================================================ */
@media (max-width: 1100px) {
    .tt-single-grid,
    .tt-archive-layout { grid-template-columns: 1fr 280px; }
    .tt-archive-grid { grid-template-columns: repeat(2, 1fr); }
    .tt-related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .tt-single-grid,
    .tt-archive-layout {
        grid-template-columns: 1fr;
    }
    .tt-sidebar-sticky-single,
    .tt-archive-sidebar-sticky {
        position: static;
    }
    .tt-feat-card { grid-template-columns: 1fr; }
    .tt-feat-thumb { min-height: 200px; }
}
@media (max-width: 640px) {
    .tt-post-hero { padding: 36px 0 28px; }
    .tt-post-hero.has-thumb { min-height: 240px; }
    .tt-post-title { font-size: 21px !important; }
    .tt-post-meta-row { font-size: 12px; }
    .tt-single-body,
    .tt-archive-body { padding: 20px 0 28px; }
    .tt-article { padding: 18px 16px; }
    .tt-article-content { font-size: 14.5px; }
    .tt-author-box { padding: 16px; gap: 12px; flex-direction: column; align-items: center; text-align: center; }
    .tt-author-avatar { width: 56px !important; height: 56px !important; }
    .tt-post-nav { grid-template-columns: 1fr; }
    .tt-related-grid { grid-template-columns: 1fr; gap: 14px; }
    .tt-related-section { padding: 24px 0 32px; }
    .tt-archive-grid { grid-template-columns: 1fr; gap: 14px; }
    .tt-archive-hero-icon { display: none; }
}

