/*
Theme Name: TVBoxFixer
Theme URI: https://tvboxfixer.com
Author: TVBoxFixer
Author URI: https://tvboxfixer.com
Description: A minimal, clean, fast WordPress theme for tech blogs. Vertical post list layout inspired by androidmtk.com.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tvboxfixer
Tags: blog, tech, minimal, clean, fast, sidebar
*/

/* =========================================================
   CSS VARIABLES
   ========================================================= */
:root {
    --color-bg:          #ffffff;
    --color-text:        #222222;
    --color-text-light:  #888888;
    --color-text-meta:   #999999;
    --color-accent:      #ff6a00;
    --color-border:      #e5e5e5;
    --color-footer-bg:   #f5f5f5;
    --color-header-bg:   #1a1a1a;
    --color-nav-bg:      #222222;
    --color-nav-hover:   #ff6a00;

    --font-main:         'Playfair Display', Georgia, serif;
    --font-ui:           'DM Sans', 'Helvetica Neue', Arial, sans-serif;

    --max-width:         1140px;
    --content-width:     720px;
    --sidebar-width:     280px;
    --gap:               30px;

    --thumb-size:        160px;
    --post-padding:      18px 0;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ui);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-accent);
    text-decoration: none;
}
a:hover {
    color: #cc5500;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    padding-left: 1.4em;
}

p { margin-bottom: 1em; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-ui);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 0.5em;
}

/* =========================================================
   LAYOUT WRAPPER
   ========================================================= */
.site-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================================
   STICKY HEADER
   ========================================================= */
#site-header {
    background: var(--color-header-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--color-accent);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    gap: 20px;
}

/* Logo */
.site-logo a {
    font-family: var(--font-ui);
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
}
.site-logo a span {
    color: var(--color-accent);
}

/* Primary Nav */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}
.primary-nav a {
    font-size: 13px;
    font-weight: 600;
    color: #cccccc;
    padding: 6px 12px;
    border-radius: 3px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.15s, background 0.15s;
}
.primary-nav a:hover,
.primary-nav a.current-menu-item {
    color: #ffffff;
    background: rgba(255, 106, 0, 0.2);
}

/* Header Search */
.header-search {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.header-search form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    overflow: hidden;
}
.header-search input[type="search"] {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 13px;
    padding: 6px 10px;
    width: 160px;
}
.header-search input[type="search"]::placeholder {
    color: rgba(255,255,255,0.4);
}
.header-search button {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 6px 10px;
    font-size: 14px;
    line-height: 1;
    transition: color 0.15s;
}
.header-search button:hover {
    color: var(--color-accent);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 18px;
    padding: 4px 10px;
    cursor: pointer;
    border-radius: 3px;
}

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb-bar {
    background: #f9f9f9;
    border-bottom: 1px solid var(--color-border);
    padding: 7px 0;
    font-size: 12px;
    color: var(--color-text-light);
}
.breadcrumb-bar a {
    color: var(--color-text-light);
}
.breadcrumb-bar a:hover {
    color: var(--color-accent);
    text-decoration: none;
}
.breadcrumb-bar span + span::before {
    content: ' › ';
    margin: 0 4px;
}

/* =========================================================
   PAGE LAYOUT — TWO-COLUMN
   ========================================================= */
.page-layout {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 20px;
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.main-content {
    flex: 1;
    min-width: 0;
    padding-right: 32px;
}

#sidebar {
    width: var(--sidebar-width);
    flex-shrink: 0;
    padding-left: 32px;
    border-left: 1px solid #ebebeb;
}

/* =========================================================
   SECTION HEADINGS (archive titles, etc.)
   ========================================================= */
.section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 8px;
    margin-bottom: 0;
}

/* =========================================================
   POST LIST — editorial pro layout
   ========================================================= */
.post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ── REGULAR POST ITEMS ── */
.post-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
}
.post-item:last-child { border-bottom: none; }

/* Thumbnail */
.post-thumb {
    flex-shrink: 0;
    width: 200px;
    height: 130px;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
}
.post-thumb a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
}
.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.post-thumb a:hover img { transform: scale(1.05); }
.post-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    color: #ccc;
    font-size: 32px;
}

/* Post body */
.post-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

/* Meta line */
.post-meta-top {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #bbb;
}
.post-meta-top .post-category a {
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 10px;
    text-decoration: none;
    background: #fff5ef;
    padding: 2px 8px;
    border-radius: 3px;
}
.post-meta-top .post-category a:hover { background: #ffe8d6; }
.post-meta-top .sep { color: #e5e5e5; }

/* Title */
.post-title {
    font-family: var(--font-main);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.2px;
    margin: 0;
}
.post-title a { color: var(--color-text); text-decoration: none; }
.post-title a:hover { color: var(--color-accent); }

/* Excerpt hidden */
.post-excerpt { display: none; }

/* Read more link */
.post-readmore {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}
.post-readmore:hover { color: #cc5500; text-decoration: none; }
.post-readmore::after { content: '→'; font-size: 12px; }



/* =========================================================
   PAGINATION
   ========================================================= */
.pagination {
    margin-top: 24px;
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 13px;
}
.pagination a,
.pagination span {
    display: inline-block;
    padding: 5px 11px;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    color: var(--color-text);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.pagination a:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
    text-decoration: none;
}
.pagination .current {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
    font-weight: 700;
}

/* =========================================================
   NO POSTS
   ========================================================= */
.no-posts {
    padding: 30px 0;
    color: var(--color-text-light);
    font-size: 14px;
    text-align: center;
}

/* =========================================================
   SINGLE POST
   ========================================================= */
.single-post-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-border);
}
.single-post-header h1 {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: var(--color-text);
}
.single-post-meta {
    font-size: 12px;
    color: var(--color-text-meta);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.single-post-meta a {
    color: var(--color-accent);
    text-decoration: none;
}
.single-post-meta a:hover {
    text-decoration: underline;
}
.single-post-meta .meta-sep {
    color: #ddd;
}

.single-post-thumbnail {
    margin-bottom: 20px;
}
.single-post-thumbnail img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    display: block;
}

/* Post content typography */
.post-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}
.post-content h2 {
    font-size: 20px;
    margin: 28px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-border);
}
.post-content h3 {
    font-size: 17px;
    margin: 22px 0 8px;
}
.post-content h4 {
    font-size: 15px;
    margin: 18px 0 6px;
}
.post-content p {
    margin-bottom: 1.1em;
}
.post-content ul,
.post-content ol {
    margin: 0.8em 0 1em 1.5em;
}
.post-content li {
    margin-bottom: 0.3em;
}
.post-content a {
    color: var(--color-accent);
}
.post-content img {
    max-width: 100%;
    height: auto;
    margin: 16px 0;
    border: 1px solid var(--color-border);
}
.post-content blockquote {
    border-left: 3px solid var(--color-accent);
    padding: 10px 18px;
    margin: 18px 0;
    background: #fafafa;
    font-style: italic;
    color: #555;
}
.post-content pre,
.post-content code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    background: #f4f4f4;
    border: 1px solid var(--color-border);
    border-radius: 3px;
}
.post-content pre {
    padding: 14px;
    overflow-x: auto;
    margin: 16px 0;
}
.post-content code {
    padding: 1px 5px;
}
.post-content pre code {
    padding: 0;
    border: none;
    background: transparent;
}
.post-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 16px 0;
}
.post-content table th,
.post-content table td {
    border: 1px solid var(--color-border);
    padding: 8px 12px;
    text-align: left;
}
.post-content table th {
    background: #f5f5f5;
    font-weight: 700;
}

/* Post tags & sharing */
.post-tags {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    font-size: 13px;
}
.post-tags strong {
    color: var(--color-text-light);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    margin-right: 6px;
}
.post-tags a {
    display: inline-block;
    padding: 2px 8px;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    color: var(--color-text);
    font-size: 12px;
    margin: 2px 3px 2px 0;
    text-decoration: none;
}
.post-tags a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* Post navigation */
.post-navigation {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    font-size: 13px;
}
.post-navigation .nav-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-meta);
    display: block;
    margin-bottom: 4px;
}
.post-navigation a {
    color: var(--color-text);
    font-weight: 700;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-navigation a:hover {
    color: var(--color-accent);
}
.nav-next {
    text-align: right;
}

/* Related posts */
.related-posts {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--color-border);
}
.related-posts h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-text-light);
    margin-bottom: 14px;
}
.related-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.related-posts-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
}
.related-posts-list li:last-child {
    border-bottom: none;
}
.related-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #eee;
    overflow: hidden;
}
.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.related-text {
    flex: 1;
    min-width: 0;
}
.related-text a {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    display: block;
    line-height: 1.3;
}
.related-text a:hover {
    color: var(--color-accent);
}
.related-text .related-date {
    font-size: 11px;
    color: var(--color-text-meta);
    margin-top: 3px;
}

/* Comments */
.comments-area {
    margin-top: 30px;
}

/* =========================================================
   SIDEBAR
   ========================================================= */

/* Widget base */
.widget {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #f0f0f0;
}
.widget:last-child { border-bottom: none; }

.widget-title {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #bbb;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #efefef;
    display: block;
}

/* Recent posts — compact horizontal row: thumb left, text right */
.widget-recent-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget-recent-posts li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}
.widget-recent-posts li:first-child { padding-top: 0; }
.widget-recent-posts li:last-child  { border-bottom: none; padding-bottom: 0; }

.widget-recent-thumb {
    flex-shrink: 0;
    width: 56px;
    min-width: 56px;
    max-width: 56px;
    height: 44px;
    border-radius: 4px;
    overflow: hidden;
    background: #f0f0f0;
}
.widget-recent-thumb a {
    display: block;
    width: 56px;
    height: 44px;
    overflow: hidden;
}
.widget-recent-thumb img {
    display: block;
    width: 56px !important;
    height: 44px !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.widget-recent-posts li:hover .widget-recent-thumb img { transform: scale(1.06); }

.widget-recent-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.widget-recent-text a {
    font-family: var(--font-ui);
    font-size: 12.5px;
    font-weight: 500;
    color: #2a2a2a;
    text-decoration: none;
    line-height: 1.4;
    display: block;
    letter-spacing: -0.1px;
}
.widget-recent-text a:hover { color: var(--color-accent); }
.widget-post-date {
    font-family: var(--font-ui);
    font-size: 10px;
    color: #c0c0c0;
    font-weight: 400;
    letter-spacing: 0.3px;
    display: block;
}

/* Categories */
.widget-categories ul { list-style: none; padding: 0; margin: 0; }
.widget-categories li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 13px;
}
.widget-categories li:last-child { border-bottom: none; }
.widget-categories li a {
    color: #444;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
}
.widget-categories li a:hover { color: var(--color-accent); }
.cat-count {
    font-size: 10px;
    background: #f5f5f5;
    color: #bbb;
    border-radius: 20px;
    padding: 2px 9px;
    font-weight: 500;
}

/* Tags */
.widget-tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.widget-tag-cloud a {
    font-size: 11px;
    padding: 4px 10px;
    border: 1px solid #eee;
    border-radius: 20px;
    color: #888;
    text-decoration: none;
    font-weight: 400;
}
.widget-tag-cloud a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: #fff8f5;
}

/* Generic WP widget */
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li {
    padding: 7px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 13px;
    color: #555;
}
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: #444; text-decoration: none; }
.widget ul li a:hover { color: var(--color-accent); }



/* =========================================================
   FOOTER
   ========================================================= */
#site-footer {
    background: var(--color-footer-bg);
    border-top: 1px solid var(--color-border);
    margin-top: 40px;
}

.footer-widgets {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.footer-widget-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
}

.footer-about p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

.footer-links ul,
.footer-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li,
.footer-categories li {
    padding: 4px 0;
    font-size: 13px;
    border-bottom: 1px solid #ebebeb;
}
.footer-links li:last-child,
.footer-categories li:last-child {
    border-bottom: none;
}
.footer-links a,
.footer-categories a {
    color: #666;
    text-decoration: none;
}
.footer-links a:hover,
.footer-categories a:hover {
    color: var(--color-accent);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid var(--color-border);
    background: #eeeeee;
}
.footer-bottom-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
}
.footer-bottom a {
    color: #888;
    text-decoration: none;
}
.footer-bottom a:hover {
    color: var(--color-accent);
}
.footer-nav-bottom {
    display: flex;
    gap: 16px;
}

/* =========================================================
   PAGE — ARCHIVE / SEARCH HEADER
   ========================================================= */
.archive-header {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-border);
}
.archive-header h1 {
    font-size: 20px;
    font-weight: 800;
}
.archive-header p {
    font-size: 13px;
    color: var(--color-text-light);
    margin: 0;
}

/* =========================================================
   SEARCH RESULTS
   ========================================================= */
.search-count {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}
.search-count strong {
    color: var(--color-accent);
}

/* =========================================================
   404 PAGE
   ========================================================= */
.error-404 {
    padding: 40px 0;
    text-align: center;
}
.error-404 h1 {
    font-size: 80px;
    font-weight: 900;
    color: var(--color-border);
    line-height: 1;
    margin-bottom: 10px;
}
.error-404 h2 {
    font-size: 22px;
    margin-bottom: 14px;
}
.error-404 p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* =========================================================
   PAGE (static page content)
   ========================================================= */
.page-header {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-border);
}
.page-header h1 {
    font-size: 24px;
    font-weight: 800;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .page-layout {
        flex-direction: column;
    }
    .main-content {
        padding-right: 0;
    }
    #sidebar {
        width: 100%;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #ebebeb;
        padding-top: 28px;
        margin-top: 8px;
    }
    .footer-widgets {
        grid-template-columns: 1fr 1fr;
    }
    .footer-about {
        grid-column: 1 / -1;
    }
    .primary-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: #222222;
        padding: 10px 0;
        border-bottom: 3px solid var(--color-accent);
        gap: 0;
    }
    .primary-nav.is-open {
        display: flex;
    }
    .primary-nav a {
        display: block;
        padding: 10px 20px;
        border-radius: 0;
    }
    .menu-toggle {
        display: block;
    }
    .header-search {
        display: none;
    }
    #site-header {
        position: relative;
    }
}

@media (max-width: 600px) {
    .post-thumb {
        width: 100%;
        height: 200px;
    }
    .post-item {
        flex-direction: column;
    }
    .header-inner {
        height: 50px;
    }
    .site-logo a {
        font-size: 16px;
    }
    .single-post-header h1 {
        font-size: 20px;
    }
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    .footer-about {
        grid-column: 1;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .post-navigation {
        grid-template-columns: 1fr;
    }
    .nav-next {
        text-align: left;
    }
}

/* =========================================================
   SKIP LINK (accessibility)
   ========================================================= */
.skip-link {
    position: absolute;
    left: -9999px;
}
.skip-link:focus {
    left: 6px;
    top: 6px;
    background: var(--color-accent);
    color: #fff;
    padding: 8px 14px;
    z-index: 9999;
    font-size: 13px;
    border-radius: 3px;
}

/* =========================================================
   UTILITIES
   ========================================================= */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.clearfix::after {
    display: table;
    content: '';
    clear: both;
}
