/* =============================================================
   TSV Blog — Editorial design system for /makale-haber
   Mirrors .tsv-knowledge / .tsv-feedback-list visual language.
   Variables come from .tsv-page-hero / .tsv-feedback-list tokens.
   ============================================================= */

.tsv-yp-main {
    background: #f6f8fb;
    padding-bottom: 0;
}

/* ---------- Page hero (local copy of .tsv-page-hero tokens) ---------- */
.tsv-page-hero {
    background: linear-gradient(135deg, #15355c 0%, #0f2746 100%);
    color: #ffffff;
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}
.tsv-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.06), transparent 60%);
    pointer-events: none;
}
.tsv-page-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 32px;
    align-items: end;
}
.tsv-page-hero__main { min-width: 0; }
.tsv-page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.92);
}
.tsv-page-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}
.tsv-page-hero__title {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 700;
    margin: 16px 0 12px;
    color: #ffffff !important;
    letter-spacing: -0.01em;
}
.tsv-page-hero__sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 60ch;
}
.tsv-page-hero__aside {
    display: flex;
    justify-content: flex-end;
}
.tsv-page-hero__nav { width: 100%; }
.tsv-page-hero__crumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}
.tsv-page-hero__crumb li {
    display: inline-flex;
    align-items: center;
}
.tsv-page-hero__crumb li + li::before {
    content: "/";
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.36);
}
.tsv-page-hero__crumb a {
    color: rgba(255, 255, 255, 0.86) !important;
    text-decoration: none !important;
}
.tsv-page-hero__crumb a:hover { color: #ffffff !important; }
.tsv-page-hero__crumb li.active {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 880px) {
    .tsv-page-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
    .tsv-page-hero__aside { justify-content: flex-start; }
    .tsv-page-hero__crumb { justify-content: flex-start; }
    .tsv-page-hero { padding: 44px 0 36px; }
}

/* ---------- Chips row ---------- */
.tsv-blog-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 32px 0 24px;
}
.tsv-blog-chip {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e6eaf0;
    color: #475061 !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.tsv-blog-chip:hover {
    background: #eef2f8;
    border-color: #c9d1de;
}
.tsv-blog-chip.active {
    background: #15355c;
    color: #ffffff !important;
    border-color: #15355c;
}

/* ---------- Grid layout (posts + sidebar) ---------- */
.tsv-blog-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: start;
    padding: 24px 0 64px;
}
.tsv-blog-posts {
    min-width: 0;
}
.tsv-blog-side {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ---------- Card grid ---------- */
.tsv-blog-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.tsv-blog-card {
    background: #ffffff;
    border: 1px solid #e6eaf0;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}
.tsv-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px -16px rgba(21, 53, 92, 0.18);
    border-color: #c9d1de;
}

.tsv-blog-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #eef2f8, #dde4ee);
    overflow: hidden;
}
.tsv-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.tsv-blog-card:hover .tsv-blog-card__media img {
    transform: scale(1.04);
}
.tsv-blog-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a0b4;
    font-size: 38px;
}

.tsv-blog-card__date {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ffffff;
    border-radius: 10px;
    padding: 6px 10px;
    text-align: center;
    line-height: 1.05;
    box-shadow: 0 6px 16px -8px rgba(15, 39, 70, 0.25);
}
.tsv-blog-card__date strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #15355c;
}
.tsv-blog-card__date span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7689;
    margin-top: 2px;
}

.tsv-blog-card__body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.tsv-blog-card__cats {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #b8392a;
    font-weight: 700;
}
.tsv-blog-card__title {
    font-size: 19px;
    line-height: 1.35;
    color: #1c2434;
    margin: 0;
    font-weight: 700;
}
.tsv-blog-card__title a {
    color: inherit !important;
    text-decoration: none !important;
}
.tsv-blog-card__title a:hover { color: #15355c !important; }
.tsv-blog-card__sub {
    color: #6b7689;
    font-size: 14px;
    margin: 0;
}
.tsv-blog-card__excerpt {
    color: #475061;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.tsv-blog-card__foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px dashed #e6eaf0;
    flex-wrap: wrap;
}
.tsv-blog-card__meta {
    font-size: 12px;
    color: #6b7689;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.tsv-blog-card__meta i { color: #94a0b4; }
.tsv-blog-card__more {
    margin-left: auto;
    color: #15355c !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.tsv-blog-card__more:hover { color: #b8392a !important; }
.tsv-blog-card__more i { transition: transform 0.2s ease; }
.tsv-blog-card:hover .tsv-blog-card__more i { transform: translateX(3px); }

/* ---------- Empty state ---------- */
.tsv-blog-empty {
    background: #ffffff;
    border: 1px dashed #c9d1de;
    border-radius: 14px;
    padding: 64px 24px;
    text-align: center;
    color: #6b7689;
}
.tsv-blog-empty i { font-size: 36px; color: #94a0b4; }
.tsv-blog-empty h3 {
    margin: 16px 0 6px;
    font-size: 18px;
    color: #1c2434;
}
.tsv-blog-empty p { margin: 0 0 18px; }
.tsv-blog-empty__btn {
    display: inline-block;
    background: #15355c;
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 13px;
}
.tsv-blog-empty__btn:hover { background: #0f2746; }

/* ---------- Pagination ---------- */
.tsv-blog-pager {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}
.tsv-blog-pager .pager-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.tsv-blog-pager .pager-list li {
    display: inline-flex;
}
.tsv-blog-pager .pager-list a,
.tsv-blog-pager .pager-list span {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e6eaf0;
    color: #475061 !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.tsv-blog-pager .pager-list a:hover {
    background: #15355c;
    color: #ffffff !important;
    border-color: #15355c;
}
.tsv-blog-pager .pager-list .active span {
    background: #15355c;
    color: #ffffff !important;
    border-color: #15355c;
}
.tsv-blog-pager .pager-list .disabled span {
    color: #c9d1de !important;
    background: #f3f5f9;
}

/* ---------- Sidebar widget ---------- */
.tsv-blog-widget {
    background: #ffffff;
    border: 1px solid #e6eaf0;
    border-radius: 14px;
    padding: 22px;
}
.tsv-blog-widget__title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #15355c;
    font-weight: 700;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e6eaf0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tsv-blog-widget__title i { color: #b8392a; }

.tsv-blog-widget__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.tsv-blog-widget__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.tsv-blog-widget__img {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #eef2f8, #dde4ee);
}
.tsv-blog-widget__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tsv-blog-widget__info { min-width: 0; flex: 1; }
.tsv-blog-widget__info h4 {
    margin: 0 0 4px;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
    color: #1c2434;
}
.tsv-blog-widget__info h4 a {
    color: inherit !important;
    text-decoration: none !important;
}
.tsv-blog-widget__info h4 a:hover { color: #15355c !important; }
.tsv-blog-widget__info span {
    font-size: 11px;
    color: #94a0b4;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tsv-blog-widget__cats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.tsv-blog-widget__cats a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    border-radius: 8px;
    color: #475061 !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.18s, color 0.18s;
}
.tsv-blog-widget__cats a:hover,
.tsv-blog-widget__cats a.is-active {
    background: #eef2f8;
    color: #15355c !important;
}
.tsv-blog-widget__count {
    background: #f3f5f9;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 11px;
    color: #6b7689;
    font-weight: 600;
}
.tsv-blog-widget__cats a.is-active .tsv-blog-widget__count {
    background: #15355c;
    color: #ffffff;
}

.tsv-blog-widget__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.tsv-blog-widget__tag {
    background: #f3f5f9;
    color: #475061 !important;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    text-decoration: none !important;
    font-weight: 500;
    transition: background 0.18s, color 0.18s;
}
.tsv-blog-widget__tag:hover {
    background: #15355c;
    color: #ffffff !important;
}

/* =============================================================
   Detail page
   ============================================================= */

.tsv-blog-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: start;
    padding: 24px 0 64px;
}
.tsv-blog-detail-main {
    background: #ffffff;
    border: 1px solid #e6eaf0;
    border-radius: 14px;
    overflow: hidden;
    min-width: 0;
}

.tsv-blog-detail__hero {
    margin: 0;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: linear-gradient(135deg, #eef2f8, #dde4ee);
}
.tsv-blog-detail__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tsv-blog-detail__head {
    padding: 28px 32px 12px;
    border-bottom: 1px solid #e6eaf0;
}
.tsv-blog-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #6b7689;
    font-size: 13px;
    margin-bottom: 12px;
}
.tsv-blog-detail__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.tsv-blog-detail__meta-item i { color: #94a0b4; }
.tsv-blog-detail__cats {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #b8392a;
    font-weight: 700;
}

.tsv-blog-detail__body {
    padding: 24px 32px 8px;
    font-size: 16px;
    line-height: 1.78;
    color: #1c2434;
}
.tsv-blog-detail__body p,
.tsv-blog-detail__body ul,
.tsv-blog-detail__body ol,
.tsv-blog-detail__body h2,
.tsv-blog-detail__body h3,
.tsv-blog-detail__body h4,
.tsv-blog-detail__body blockquote,
.tsv-blog-detail__body figure { margin: 0 0 18px; }
.tsv-blog-detail__body h2 {
    font-size: 22px;
    color: #15355c;
    margin-top: 28px;
}
.tsv-blog-detail__body h3 {
    font-size: 18px;
    color: #15355c;
    margin-top: 24px;
}
.tsv-blog-detail__body a {
    color: #15355c !important;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
.tsv-blog-detail__body img {
    max-width: 100%;
    border-radius: 10px;
}
.tsv-blog-detail__body blockquote {
    border-left: 3px solid #b8392a;
    background: #f6f8fb;
    padding: 14px 18px;
    color: #475061;
    border-radius: 0 10px 10px 0;
}

.tsv-blog-detail__form { padding: 0 32px 24px; }

.tsv-blog-detail__tags {
    padding: 16px 32px 24px;
    border-top: 1px solid #e6eaf0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.tsv-blog-detail__tags-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #15355c;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tsv-blog-detail__actions {
    padding: 20px 32px;
    background: #f6f8fb;
    border-top: 1px solid #e6eaf0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.tsv-blog-share {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.tsv-blog-share__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #475061;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 4px;
}
.tsv-blog-share__btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e6eaf0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #475061 !important;
    text-decoration: none !important;
    font-size: 14px;
    transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
}
.tsv-blog-share__btn:hover {
    background: #15355c;
    color: #ffffff !important;
    border-color: #15355c;
    transform: translateY(-2px);
}
.tsv-blog-share__btn--wa:hover { background: #25d366; border-color: #25d366; }
.tsv-blog-share__btn--fb:hover { background: #1877f2; border-color: #1877f2; }
.tsv-blog-share__btn--tw:hover { background: #1da1f2; border-color: #1da1f2; }
.tsv-blog-share__btn--in:hover { background: #0a66c2; border-color: #0a66c2; }
.tsv-blog-share__btn--tg:hover { background: #26a5e4; border-color: #26a5e4; }
.tsv-blog-share__btn--em:hover { background: #b8392a; border-color: #b8392a; }

.tsv-blog-like {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.tsv-blog-like__count {
    font-size: 13px;
    color: #475061;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ---------- Author box ---------- */
.tsv-blog-author {
    margin: 24px 32px 8px;
    padding: 20px;
    border: 1px solid #e6eaf0;
    border-radius: 12px;
    background: #f6f8fb;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.tsv-blog-author__avatar {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
}
.tsv-blog-author__avatar img { width: 100%; height: 100%; object-fit: cover; }
.tsv-blog-author__info { flex: 1; min-width: 0; }
.tsv-blog-author__label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #b8392a;
    font-weight: 700;
}
.tsv-blog-author__info h3 {
    margin: 4px 0 6px;
    font-size: 18px;
    color: #15355c;
}
.tsv-blog-author__info h3 a {
    color: inherit !important;
    text-decoration: none !important;
}
.tsv-blog-author__spec {
    margin: 0 0 8px;
    color: #475061;
    font-size: 13px;
}
.tsv-blog-author__bio {
    margin: 0 0 12px;
    color: #6b7689;
    font-size: 13px;
    line-height: 1.55;
}
.tsv-blog-author__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tsv-blog-author__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e6eaf0;
    color: #475061 !important;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.tsv-blog-author__btn:hover {
    background: #15355c;
    color: #ffffff !important;
    border-color: #15355c;
}

/* ---------- Related posts (inside main col) ---------- */
.tsv-blog-related {
    padding: 28px 32px 4px;
    border-top: 1px solid #e6eaf0;
}
.tsv-blog-related__title {
    font-size: 18px;
    color: #15355c;
    margin: 0 0 16px;
    font-weight: 700;
}
.tsv-blog-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.tsv-blog-related__card {
    background: #ffffff;
    border: 1px solid #e6eaf0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.18s, transform 0.18s;
}
.tsv-blog-related__card:hover {
    border-color: #c9d1de;
    transform: translateY(-2px);
}
.tsv-blog-related__media {
    display: block;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #eef2f8, #dde4ee);
    overflow: hidden;
}
.tsv-blog-related__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tsv-blog-related__ph {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #94a0b4;
    font-size: 24px;
}
.tsv-blog-related__body {
    padding: 12px 14px;
}
.tsv-blog-related__body h4 {
    font-size: 13px;
    line-height: 1.35;
    margin: 0 0 6px;
    font-weight: 600;
    color: #1c2434;
}
.tsv-blog-related__body h4 a {
    color: inherit !important;
    text-decoration: none !important;
}
.tsv-blog-related__body h4 a:hover { color: #15355c !important; }
.tsv-blog-related__body span {
    font-size: 11px;
    color: #94a0b4;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ---------- Comments ---------- */
.tsv-blog-comments {
    padding: 28px 32px 32px;
    border-top: 1px solid #e6eaf0;
}
.tsv-blog-comments__title {
    font-size: 18px;
    color: #15355c;
    margin: 0 0 18px;
    font-weight: 700;
}
.tsv-blog-comments__list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.tsv-blog-comments__empty {
    text-align: center;
    padding: 24px;
    border: 1px dashed #c9d1de;
    border-radius: 10px;
    color: #6b7689;
    background: #f6f8fb;
}
.tsv-blog-comment {
    display: flex;
    gap: 14px;
}
.tsv-blog-comment--reply { padding-left: 38px; }
.tsv-blog-comment__avatar {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #eef2f8, #dde4ee);
}
.tsv-blog-comment__avatar img { width: 100%; height: 100%; object-fit: cover; }
.tsv-blog-comment__body { flex: 1; min-width: 0; }
.tsv-blog-comment__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.tsv-blog-comment__head h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #15355c;
}
.tsv-blog-comment__head span {
    font-size: 12px;
    color: #94a0b4;
}
.tsv-blog-comment__body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #475061;
}
.tsv-blog-comment__actions {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.tsv-blog-comment__reply {
    background: transparent;
    border: none;
    color: #15355c !important;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
}
.tsv-blog-comment__reply:hover { color: #b8392a !important; }

.tsv-blog-comment-form__title {
    font-size: 16px;
    color: #15355c;
    margin: 0 0 14px;
    font-weight: 700;
}
.tsv-blog-comment-form textarea {
    width: 100%;
    border: 1px solid #e6eaf0;
    border-radius: 10px;
    padding: 14px;
    font-size: 14px;
    font-family: inherit;
    background: #f6f8fb;
    color: #1c2434;
    resize: vertical;
    transition: border-color 0.18s, background 0.18s;
}
.tsv-blog-comment-form textarea:focus {
    outline: none;
    border-color: #15355c;
    background: #ffffff;
}
.tsv-blog-comment-form__check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 18px;
    color: #475061;
    font-size: 13px;
}
.tsv-blog-comment-form button {
    background: #15355c;
    color: #ffffff !important;
    border: none;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.18s;
}
.tsv-blog-comment-form button:hover { background: #0f2746; }

.tsv-blog-comments__login {
    background: #f6f8fb;
    border: 1px dashed #c9d1de;
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    color: #475061;
    font-size: 14px;
}
.tsv-blog-comments__login i { color: #15355c; margin-right: 4px; }
.tsv-blog-comments__login a {
    color: #15355c !important;
    text-decoration: underline;
    font-weight: 600;
}

/* =============================================================
   Responsive
   ============================================================= */

@media (max-width: 1100px) {
    .tsv-blog-grid,
    .tsv-blog-detail-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }
    .tsv-blog-side { position: static; }
    .tsv-blog-related__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
    .tsv-blog-card-grid { grid-template-columns: minmax(0, 1fr); }
    .tsv-blog-related__grid { grid-template-columns: minmax(0, 1fr); }
    .tsv-blog-detail__head,
    .tsv-blog-detail__body,
    .tsv-blog-detail__form,
    .tsv-blog-detail__tags,
    .tsv-blog-detail__actions,
    .tsv-blog-related,
    .tsv-blog-comments,
    .tsv-blog-author { padding-left: 20px; padding-right: 20px; margin-left: 0; margin-right: 0; }
    .tsv-blog-detail__hero { aspect-ratio: 16 / 9; }
    .tsv-blog-comment--reply { padding-left: 0; }
    .tsv-blog-author { flex-direction: column; align-items: center; text-align: center; }
    .tsv-blog-author__actions { justify-content: center; }
}