.tenenet-cookies-banner {
position: fixed;
bottom: 20px;
left: 20px;
background: #2c3e50;
color: white;
padding: 0;
border-radius: 15px;
box-shadow: 0 4px 20px rgba(0,0,0,0.3);
z-index: 9999;
font-family: Arial, sans-serif;
max-width: 350px;
overflow: hidden;
} .tenenet-cookies-banner::before {
content: '';
position: absolute;
bottom: -10px;
left: 30px;
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #2c3e50;
}
.tenenet-cookies-content {
padding: 20px;
}
.tenenet-cookies-content p {
margin: 0 0 15px 0;
line-height: 1.5;
font-size: 14px;
}
.tenenet-cookies-content a {
color: #3498db;
text-decoration: underline;
font-weight: bold;
}
.tenenet-cookies-content a:hover {
color: #2980b9;
}
.tenenet-cookies-buttons {
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.tenenet-cookies-btn {
padding: 8px 16px;
border: none;
border-radius: 20px;
cursor: pointer;
font-weight: bold;
transition: all 0.3s ease;
font-size: 12px;
flex: 1;
min-width: 70px;
}
.tenenet-cookies-accept {
background: #27ae60;
color: white;
}
.tenenet-cookies-accept:hover {
background: #219a52;
transform: translateY(-2px);
}
.tenenet-cookies-reject {
background: #e74c3c;
color: white;
}
.tenenet-cookies-reject:hover {
background: #c0392b;
transform: translateY(-2px);
}
.tenenet-cookies-settings {
background: #3498db;
color: white;
}
.tenenet-cookies-settings:hover {
background: #2980b9;
transform: translateY(-2px);
} .tenenet-cookies-settings-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
z-index: 10000;
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.tenenet-cookies-settings-overlay.active {
opacity: 1;
visibility: visible;
}
.tenenet-cookies-settings-panel {
background: white;
color: #2c3e50;
padding: 30px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
max-width: 500px;
width: 90%;
max-height: 80vh;
overflow-y: auto;
position: relative;
transform: scale(0.9);
transition: transform 0.3s ease;
}
.tenenet-cookies-settings-overlay.active .tenenet-cookies-settings-panel {
transform: scale(1);
}
.tenenet-cookies-settings-panel h3 {
margin: 0 0 20px 0;
color: #2c3e50;
font-size: 1.5em;
text-align: center;
}
.tenenet-cookies-settings-options {
margin: 20px 0;
}
.tenenet-cookies-settings-options label {
display: flex;
align-items: center;
margin: 15px 0;
padding: 10px;
background: #f8f9fa;
border-radius: 8px;
cursor: pointer;
transition: background 0.3s ease;
}
.tenenet-cookies-settings-options label:hover {
background: #e9ecef;
}
.tenenet-cookies-settings-options input[type="checkbox"] {
margin-right: 12px;
transform: scale(1.2);
}
.tenenet-cookies-settings-buttons {
display: flex;
gap: 10px;
justify-content: center;
margin-top: 25px;
}
.tenenet-cookies-save {
background: #27ae60;
color: white;
padding: 12px 25px;
border-radius: 25px;
min-width: 120px;
}
.tenenet-cookies-save:hover {
background: #219a52;
transform: translateY(-2px);
}
.tenenet-cookies-cancel {
background: #95a5a6;
color: white;
padding: 12px 25px;
border-radius: 25px;
min-width: 120px;
}
.tenenet-cookies-cancel:hover {
background: #7f8c8d;
transform: translateY(-2px);
}
.tenenet-cookies-close {
position: absolute;
top: 15px;
right: 20px;
background: none;
border: none;
font-size: 24px;
color: #7f8c8d;
cursor: pointer;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: all 0.3s ease;
}
.tenenet-cookies-close:hover {
background: #f8f9fa;
color: #e74c3c;
}
.tenenet-cookies-brand {
text-align: center;
margin-top: 15px;
font-size: 11px;
color: #bdc3c7;
border-top: 1px solid #34495e;
padding-top: 10px;
}
.tenenet-cookies-settings-panel .tenenet-cookies-brand {
color: #7f8c8d;
border-top: 1px solid #e9ecef;
margin-top: 20px;
} @keyframes slideInUp {
from {
transform: translateY(100px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@keyframes slideInLeft {
from {
transform: translateX(-100px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
.tenenet-cookies-banner {
animation: slideInLeft 0.5s ease-out;
}
.tenenet-cookies-settings-panel {
animation: slideInUp 0.3s ease-out;
} .tenenet-cookies-toast {
position: fixed;
top: 20px;
right: 20px;
background: #27ae60;
color: white;
padding: 15px 20px;
border-radius: 8px;
z-index: 10001;
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
animation: slideInRight 0.3s ease-out;
max-width: 300px;
}
@keyframes slideInRight {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
} input[type="number"] {
padding: 8px 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
}
input[type="number"]:focus {
border-color: #0073aa;
box-shadow: 0 0 0 1px #0073aa;
outline: none;
} @media (max-width: 768px) {
.tenenet-cookies-banner {
left: 10px;
right: 10px;
bottom: 10px;
max-width: none;
}
.tenenet-cookies-banner::before {
left: 20px;
}
.tenenet-cookies-settings-panel {
margin: 20px;
padding: 20px;
}
.tenenet-cookies-settings-buttons {
flex-direction: column;
}
.tenenet-cookies-btn {
min-width: auto;
}
}
@media (max-width: 480px) {
.tenenet-cookies-buttons {
flex-direction: column;
}
.tenenet-cookies-content {
padding: 15px;
}
.tenenet-cookies-settings-panel {
padding: 15px;
}
.tenenet-cookies-toast {
left: 10px;
right: 10px;
max-width: none;
}
}:root {
--tc-color-primary:    #1a73e8;
--tc-color-accent:     #0d47a1;
--tc-color-text:       #333333;
--tc-color-heading:    #111111;
--tc-color-bg:         #ffffff;
--tc-color-bg-alt:     #f5f7fa;
--tc-color-border:     #e0e0e0;
--tc-color-link:       #1a73e8;
--tc-color-link-hover: #0d47a1;
--tc-font-body:        system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
--tc-font-heading:     system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
--tc-content-width:    1200px;
--tc-gap:              48px;
--tc-sidebar-width:    300px;
--tc-padding-h:        40px;
--tc-padding-v:        52px;
--tc-content-gap:      36px; --tc-header-gap:       40px; } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
font-family: var(--tc-font-body);
font-size: 1rem;
line-height: 1.75;
color: var(--tc-color-text);
background-color: var(--tc-color-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--tc-color-link); text-decoration: none; transition: color .2s; }
a:hover { color: var(--tc-color-link-hover); text-decoration: underline; }
h1,h2,h3,h4,h5,h6 { font-family: var(--tc-font-heading); color: var(--tc-color-heading); line-height: 1.3; }
p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; } #page      { display: flex; flex-direction: column; min-height: 100vh; background-color: var(--tc-color-bg); }
#masthead  { width: 100%; flex-shrink: 0; }
#primary   { flex: 1; }
#colophon  { width: 100%; flex-shrink: 0; margin-top: auto; } .site-main-wrap {
display: flex;
flex-wrap: nowrap;
align-items: flex-start;
width: 100%;
max-width: var(--tc-content-width);
margin: 0 auto;
padding: var(--tc-padding-v) var(--tc-padding-h) calc(var(--tc-padding-v) * 0.6);
gap: var(--tc-gap);
box-sizing: border-box;
} .no-sidebar .site-main-wrap { flex-direction: column; }
.no-sidebar #main { width: 100%; max-width: 100%; } .has-sidebar .site-main-wrap { flex-direction: row; }
.has-sidebar #main { flex: 1; min-width: 0; } #secondary {
width: var(--tc-sidebar-width);
flex-shrink: 0; }
#secondary .widget {
margin-bottom: 24px;
padding: 20px;
background: var(--tc-color-bg-alt);
border: 1px solid var(--tc-color-border);
border-radius: 8px;
}
#secondary .widget-title {
font-family: var(--tc-font-heading);
font-size: .82rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
margin-bottom: 14px;
padding-bottom: 10px;
border-bottom: 2px solid var(--tc-color-primary);
color: var(--tc-color-heading);
}
#secondary ul { list-style: none; padding: 0; }
#secondary ul li { padding: 5px 0; border-bottom: 1px solid var(--tc-color-border); }
#secondary ul li:last-child { border-bottom: none; }
#secondary ul li a { color: var(--tc-color-text); font-size: .9rem; }
#secondary ul li a:hover { color: var(--tc-color-primary); }   body.elementor-page .site-main-wrap,
body.tc-elementor-page .site-main-wrap {
padding: 0;
max-width: 100%;
gap: 0;
} body.elementor-page.has-sidebar .site-main-wrap,
body.tc-elementor-page.has-sidebar .site-main-wrap {
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: var(--tc-padding-h);
gap: var(--tc-gap);
max-width: var(--tc-content-width);
margin: 0 auto;
}
body.elementor-page.has-sidebar #main,
body.tc-elementor-page.has-sidebar #main {
flex: 1;
min-width: 0;
} body.elementor-page #secondary,
body.tc-elementor-page #secondary {
padding-top: var(--tc-padding-v);
padding-bottom: var(--tc-padding-v);
} body.elementor-template-canvas #page { display: block; }
body.elementor-template-canvas .site-main-wrap,
body.elementor-template-full-width .site-main-wrap {
padding: 0 !important;
max-width: 100% !important;
gap: 0 !important;
} body.elementor-page.has-sidebar .elementor,
body.tc-elementor-page.has-sidebar .elementor {
width: 100%;
min-width: 0;
} .entry-header {
text-align: center;
margin-top: var(--tc-header-gap); margin-bottom: var(--tc-content-gap); padding: 0;
}
.entry-title {
font-family: var(--tc-font-heading);
font-size: 2rem;
font-weight: 700;
color: var(--tc-color-heading);
margin-bottom: 10px;
line-height: 1.25;
}
.entry-title a { color: var(--tc-color-heading); text-decoration: none; }
.entry-title a:hover { color: var(--tc-color-primary); } .entry-header::after {
content: '';
display: block;
width: 48px;
height: 3px;
background: var(--tc-color-primary);
border-radius: 2px;
margin: 14px auto 0;
} .entry-meta { font-size: .84rem; color: #888; margin-top: 10px; text-align: center; }
.entry-meta a { color: #888; }
.entry-meta a:hover { color: var(--tc-color-primary); } .post-thumbnail {
margin-bottom: var(--tc-content-gap);
border-radius: 10px;
overflow: hidden;
line-height: 0; max-height: 420px;
display: flex;
justify-content: center;
align-items: center;
background: var(--tc-color-bg-alt);
}
.post-thumbnail img {
width: 100%;
max-height: 420px;
object-fit: cover;
border-radius: 10px;
display: block;
} .entry-content { color: var(--tc-color-text); }
.entry-content > * + * { margin-top: 1em; } .entry-content p { margin-bottom: 1.2em; }
.entry-content p:last-child { margin-bottom: 0; }
.entry-content h1,.entry-content h2,.entry-content h3,
.entry-content h4,.entry-content h5,.entry-content h6 {
margin-top: 1.6em;
margin-bottom: .5em;
color: var(--tc-color-heading);
font-family: var(--tc-font-heading);
}
.entry-content ul, .entry-content ol { margin: 0 0 1.2em 1.5em; }
.entry-content blockquote {
border-left: 4px solid var(--tc-color-primary);
margin: 1.5em 0;
padding: .6em 1.2em;
color: #555;
font-style: italic;
} .entry-footer {
margin-top: 28px;
padding-top: 14px;
border-top: 1px solid var(--tc-color-border);
font-size: .84rem;
color: #999;
text-align: center;
} .post-navigation {
margin-top: 48px;
margin-bottom: 48px; }
.post-navigation .nav-links {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
.post-navigation .nav-previous,
.post-navigation .nav-next { display: flex; }
.post-navigation .nav-next { justify-content: flex-end; text-align: right; }
.post-navigation a {
display: flex;
flex-direction: column;
gap: 5px;
padding: 16px 20px;
background: var(--tc-color-bg-alt);
border: 1px solid var(--tc-color-border);
border-radius: 8px;
color: var(--tc-color-text);
text-decoration: none;
transition: border-color .2s, background .2s;
width: 100%;
}
.post-navigation a:hover { border-color: var(--tc-color-primary); background: #fff; text-decoration: none; }
.post-navigation .nav-subtitle { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--tc-color-primary); }
.post-navigation .nav-title { font-size: .95rem; font-weight: 600; color: var(--tc-color-heading); line-height: 1.4; } .posts-navigation {
margin: 40px 0;
display: flex;
justify-content: space-between;
gap: 16px;
}
.posts-navigation a {
padding: 10px 20px;
background: var(--tc-color-primary);
color: #fff;
border-radius: 6px;
font-size: .9rem;
transition: background .2s;
}
.posts-navigation a:hover { background: var(--tc-color-accent); text-decoration: none; } .pagination { margin: 40px 0; text-align: center; }
.pagination .page-numbers {
display: inline-block;
padding: 7px 14px;
margin: 2px;
border: 1px solid var(--tc-color-border);
border-radius: 5px;
color: var(--tc-color-primary);
font-size: .9rem;
transition: all .2s;
}
.pagination .page-numbers.current { background: var(--tc-color-primary); color: #fff; border-color: var(--tc-color-primary); }
.pagination .page-numbers:hover { background: var(--tc-color-bg-alt); text-decoration: none; } .comments-area {
margin-top: 0; padding-top: 40px;
padding-bottom: 48px; border-top: 2px solid var(--tc-color-border);
}
.comments-title,
.comment-reply-title {
font-family: var(--tc-font-heading);
font-size: 1.2rem;
font-weight: 700;
margin-bottom: 24px;
text-align: center;
color: var(--tc-color-heading);
}
.comment-list { list-style: none; padding: 0; margin: 0 0 40px; }
.comment { padding: 20px 0; border-bottom: 1px solid var(--tc-color-border); display: flex; gap: 14px; }
.comment .avatar { border-radius: 50%; flex-shrink: 0; }
.comment-body { flex: 1; min-width: 0; }
.comment-author b { font-size: .95rem; }
.comment-metadata { font-size: .78rem; color: #999; margin: 2px 0 10px; }
.comment-content p { font-size: .95rem; color: var(--tc-color-text); margin-bottom: .6em; }
.comment-form { max-width: 680px; margin: 0 auto; }
.comment-form p { margin-bottom: 14px; }
.comment-form label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 5px; color: var(--tc-color-heading); }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
width: 100%;
padding: 10px 14px;
border: 1px solid var(--tc-color-border);
border-radius: 6px;
font-size: .95rem;
font-family: var(--tc-font-body);
background: var(--tc-color-bg);
color: var(--tc-color-text);
transition: border-color .2s, box-shadow .2s;
}
.comment-form input:focus,
.comment-form textarea:focus { outline: none; border-color: var(--tc-color-primary); box-shadow: 0 0 0 3px rgba(26,115,232,.12); }
.comment-form textarea { min-height: 130px; resize: vertical; }
.comment-form input[type="submit"],
.comment-form .submit {
background: var(--tc-color-primary);
color: #fff;
border: none;
padding: 11px 30px;
border-radius: 6px;
cursor: pointer;
font-size: .95rem;
font-family: var(--tc-font-body);
font-weight: 600;
transition: background .2s;
display: block;
margin: 0 auto;
}
.comment-form input[type="submit"]:hover,
.comment-form .submit:hover { background: var(--tc-color-accent); }  .tc-archive-header {
margin-top: var(--tc-header-gap);
margin-bottom: 40px;
text-align: center;
padding-bottom: 28px;
border-bottom: 1px solid var(--tc-color-border);
}
.tc-archive-label span {
display: inline-block;
font-size: .72rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .1em;
color: #fff;
background: var(--tc-color-primary);
padding: 3px 14px;
border-radius: 20px;
margin-bottom: 12px;
}
.tc-archive-title {
font-family: var(--tc-font-heading);
font-size: 2rem;
font-weight: 700;
color: var(--tc-color-heading);
margin-bottom: 0;
line-height: 1.3;
}
.tc-archive-title::after {
content: '';
display: block;
width: 48px;
height: 3px;
background: var(--tc-color-primary);
border-radius: 2px;
margin: 14px auto 0;
}
.tc-archive-description {
margin-top: 16px;
font-size: .95rem;
color: #666;
max-width: 600px;
margin-left: auto;
margin-right: auto;
} .tc-post-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-bottom: 40px;
} .has-sidebar .tc-post-grid {
grid-template-columns: repeat(2, 1fr);
} .tc-card {
display: flex;
flex-direction: column;
background: var(--tc-color-bg);
border: 1px solid var(--tc-color-border);
border-radius: 10px;
overflow: hidden;
transition: box-shadow .25s, border-color .25s, transform .25s; min-width: 0;
max-width: 100%;
}
.tc-card:hover {
box-shadow: 0 6px 24px rgba(0,0,0,.10);
border-color: var(--tc-color-primary);
transform: translateY(-2px);
} .tc-card__thumb {
display: block;
width: 100%;
height: 180px; overflow: hidden;
flex-shrink: 0;
background: var(--tc-color-bg-alt);
}
.tc-card__thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .35s;
display: block;
}
.tc-card:hover .tc-card__thumb img { transform: scale(1.05); } .tc-card__thumb-placeholder {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 180px; background: var(--tc-color-bg-alt);
flex-shrink: 0;
}
.tc-card__thumb-placeholder svg {
width: 36px;
height: 36px;
color: #ccc;
flex-shrink: 0;
} .tc-card__body {
display: flex;
flex-direction: column;
gap: 8px;
padding: 18px 20px 20px;
flex: 1;
}
.tc-card__cat {
font-size: .72rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
color: var(--tc-color-primary);
}
.tc-card__title {
font-family: var(--tc-font-heading);
font-size: 1rem;
font-weight: 700;
line-height: 1.35;
margin: 0;
}
.tc-card__title a { color: var(--tc-color-heading); text-decoration: none; }
.tc-card__title a:hover { color: var(--tc-color-primary); }
.tc-card__meta { font-size: .78rem; color: #aaa; }
.tc-card__excerpt {
font-size: .88rem;
color: #666;
line-height: 1.55;
flex: 1; display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.tc-card__footer {
margin-top: 12px;
padding-top: 12px;
border-top: 1px solid var(--tc-color-border);
}
.tc-btn-sm {
display: inline-block;
padding: 6px 16px;
background: var(--tc-color-primary);
color: #fff;
border-radius: 5px;
font-size: .8rem;
font-weight: 600;
text-decoration: none;
transition: background .2s;
}
.tc-btn-sm:hover { background: var(--tc-color-accent); color: #fff; text-decoration: none; } .tc-empty { text-align: center; padding: 60px 20px; color: #888; }
.tc-empty p { font-size: 1.05rem; margin-bottom: 20px; }  .tc-footer-widgets {
width: 100%;
background: var(--tc-footer-widgets-bg, #111827);
}
.tc-footer-widgets-inner {
display: grid;
grid-template-columns: repeat( var(--tc-footer-cols, 3), 1fr );
gap: 40px;
max-width: var(--tc-content-width, 1200px);
margin: 0 auto;
padding: 48px var(--tc-padding-h, 40px);
box-sizing: border-box;
}
.tc-footer-widgets .widget-title {
font-family: var(--tc-font-heading);
font-size: .85rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
color: #fff;
margin-bottom: 16px;
padding-bottom: 10px;
border-bottom: 2px solid var(--tc-color-primary);
}
.tc-footer-widgets .widget { color: #bbb; font-size: .88rem; line-height: 1.7; }
.tc-footer-widgets .widget a { color: #ccc; text-decoration: none; transition: color .2s; }
.tc-footer-widgets .widget a:hover { color: #fff; }
.tc-footer-widgets .widget ul { list-style: none; padding: 0; margin: 0; }
.tc-footer-widgets .widget ul li { padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.tc-footer-widgets .widget ul li:last-child { border-bottom: none; } .site-info {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 8px 28px;
padding: 14px var(--tc-padding-h, 40px);
font-size: .82rem;
color: #aaa;
background: #0d0d0d;
text-align: center;
}
.site-info a { color: var(--tc-color-primary); transition: color .2s; }
.site-info a:hover { color: #fff; text-decoration: none; }
.tc-footer-copy { flex-shrink: 0; }
.tc-footer-powered { flex-shrink: 0; white-space: nowrap; }
.tc-footer-nav { flex-shrink: 0; }
.tc-footer-menu {
list-style: none !important;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 4px 16px;
margin: 0 !important;
padding: 0 !important;
}
.tc-footer-menu li {
list-style: none !important;
padding: 0 !important;
border: none !important;
background: none !important;
}
.tc-footer-menu li::before { display: none !important; }
.tc-footer-menu li a {
font-size: .82rem;
color: #aaa;
text-decoration: none;
transition: color .2s;
white-space: nowrap;
}
.tc-footer-menu li a:hover { color: #fff; }
@media (max-width: 900px) {
.tc-footer-widgets-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; padding: 36px 24px; }
}
@media (max-width: 600px) {
.tc-footer-widgets-inner { grid-template-columns: 1fr; gap: 20px; padding: 28px 16px; }
.site-info { flex-direction: column; padding: 16px; gap: 6px; }
.tc-footer-menu { gap: 4px 12px; }
} @media (max-width: 960px) {
:root {
--tc-padding-h:   24px;
--tc-padding-v:   36px;
--tc-header-gap:  24px;
--tc-content-gap: 28px;
--tc-gap:         32px;
}
.site-main-wrap,
.has-sidebar .site-main-wrap { flex-direction: column; }
#secondary { width: 100%; }
.post-navigation .nav-links { grid-template-columns: 1fr; }
.post-navigation .nav-next { justify-content: flex-start; text-align: left; } .tc-post-grid { grid-template-columns: repeat(2, 1fr); }
.has-sidebar .tc-post-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
:root {
--tc-padding-h:   16px;
--tc-padding-v:   24px;
--tc-header-gap:  16px;
--tc-content-gap: 22px;
}
.entry-title,
.tc-archive-title { font-size: 1.5rem; }
.site-info { flex-direction: column; text-align: center; } .tc-post-grid,
.has-sidebar .tc-post-grid { grid-template-columns: 1fr; }
} #tc-scroll-top {
position: fixed;
bottom: 60px;
right: 28px; z-index: 7000;
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 8px;
border: none;
cursor: pointer;
background: var(--tc-color-primary);
color: #fff;
box-shadow: 0 3px 12px rgba(0,0,0,.18);
opacity: 0;
transform: translateY(12px);
pointer-events: none;
transition: opacity .25s, transform .25s, background .2s;
}
#tc-scroll-top.tc-visible {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}
#tc-scroll-top:hover {
background: var(--tc-color-accent);
}
#tc-scroll-top svg {
width: 18px;
height: 18px;
display: block;
flex-shrink: 0;
} #tc-scroll-top.tc-left {
right: auto;
left: 28px;
}