/*
Theme Name: TopTechTriks
Theme URI: https://toptechtriks.com
Author: TopTechTriks
Description: বাংলা নিউজপেপার ওয়ার্ডপ্রেস থিম - TopTechTriks
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: toptechtriks
Tags: news, newspaper, bangla, responsive, custom-menu, featured-images
*/

/* ===== CSS VARIABLES ===== */
:root {
  --color-primary: #1a7a4a;
  --color-primary-dark: #145c37;
  --color-black: #111111;
  --color-dark: #222222;
  --color-gray: #555555;
  --color-light-gray: #f5f5f5;
  --color-border: #e0e0e0;
  --color-white: #ffffff;
  --font-bangla: 'Hind Siliguri', 'Noto Sans Bengali', Arial, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --transition: all 0.2s ease;
}

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

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-bangla);
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--color-black);
  color: #ccc;
  font-size: 12px;
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-date { letter-spacing: 0.5px; }
.top-bar-weather { display: flex; align-items: center; gap: 6px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--color-white);
  border-bottom: 3px solid var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.site-logo a {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.site-logo .logo-text {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
  text-transform: none;
}
/* Green pill badge: TopTechTriks */
.logo-badge {
  display: inline-flex;
  align-items: center;
  background: #1a7a4a;
  color: white;
  font-size: 26px;
  font-weight: 900;
  padding: 10px 22px;
  border-radius: 12px;
  font-family: 'Arial Black', 'Arial', sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
/* .com text outside badge */
.logo-dot-com {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-dark);
  font-family: 'Arial Black', 'Arial', sans-serif;
  margin-left: 4px;
  letter-spacing: -1px;
}
.site-logo .custom-logo { max-height: 60px; width: auto; }
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.logo-icon svg { fill: white; width: 20px; height: 20px; }

/* ===== SEARCH TOGGLE BUTTON ===== */
.search-toggle-btn {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-bangla);
  box-shadow: 0 2px 8px rgba(26,122,74,0.4);
  transition: all 0.2s;
  outline: none;
  flex-shrink: 0;
  white-space: nowrap;
}
.search-toggle-btn i { color: #fff; font-size: 14px; }
.search-toggle-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26,122,74,0.5);
}

/* ===== NAVIGATION ===== */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.main-nav ul {
  display: flex;
  gap: 0;
  align-items: center;
}
.main-nav ul li a {
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark);
  border-radius: 3px;
  white-space: nowrap;
}
.main-nav ul li:first-child a {
  background: var(--color-primary);
  color: white;
  border-radius: 3px;
}
.main-nav ul li a:hover {
  color: var(--color-primary);
  background: rgba(26,122,74,0.08);
}
.main-nav ul li.current-menu-item a {
  color: var(--color-primary);
  background: rgba(26,122,74,0.08);
}
.main-nav ul li.has-dropdown { position: relative; }
.main-nav ul li.has-dropdown { position: relative; }
.main-nav ul li.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-primary);
  min-width: 200px;
  box-shadow: var(--shadow-md);
  z-index: 999;
}
.main-nav ul li.has-dropdown:hover .dropdown { display: block; }
.main-nav ul li.has-dropdown .dropdown li a {
  display: block;
  padding: 9px 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.header-actions button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--color-dark);
  font-size: 18px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.header-actions button:hover { color: var(--color-primary); }

/* ===== BREAKING NEWS TICKER ===== */
.breaking-news {
  background: var(--color-light-gray);
  border-bottom: 1px solid var(--color-border);
  padding: 7px 0;
  overflow: hidden;
}
.breaking-news .container { display: flex; align-items: center; gap: 12px; }
.breaking-label {
  background: var(--color-primary);
  color: white;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 2px;
  flex-shrink: 0;
}
.ticker-wrap { flex: 1; overflow: hidden; }
.ticker {
  display: flex;
  gap: 40px;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
.ticker:hover { animation-play-state: paused; }
.ticker a { font-size: 13px; color: var(--color-dark); }
.ticker a:hover { color: var(--color-primary); }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HOMEPAGE LAYOUT ===== */
.homepage-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr 300px;
  gap: 20px;
  padding: 20px 0;
}

/* ===== LEFT SIDEBAR (Latest news list) ===== */
.left-sidebar .widget-title,
.right-sidebar .widget-title,
.section-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-black);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 8px;
  margin-bottom: 14px;
  position: relative;
}
.left-sidebar .widget-title::after,
.section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-primary);
}

.news-list-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}
.news-list-item:last-child { border-bottom: none; }
.news-list-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-border);
  min-width: 24px;
  line-height: 1;
  padding-top: 2px;
}
.news-list-item h4 {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-dark);
}
.news-list-item h4:hover { color: var(--color-primary); }
.news-list-meta { font-size: 11px; color: var(--color-gray); margin-top: 4px; }

/* ===== MAIN CONTENT ===== */
.featured-post {
  position: relative;
  margin-bottom: 20px;
}
.featured-post .featured-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
}
.featured-post .featured-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 40px 16px 16px;
  border-radius: 0 0 4px 4px;
}
.featured-post .featured-caption h2 {
  color: white;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}
.featured-post .featured-caption .cat-badge {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 6px;
}
.featured-post .featured-caption .post-meta {
  color: #ccc;
  font-size: 12px;
  margin-top: 6px;
}

.sub-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.sub-featured-item { position: relative; }
.sub-featured-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
}
.sub-featured-item .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 24px 10px 10px;
  border-radius: 0 0 4px 4px;
}
.sub-featured-item .caption h3 {
  color: white;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

/* ===== RIGHT SIDEBAR ===== */
.right-sidebar .widget { margin-bottom: 24px; }

.sidebar-news-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}
.sidebar-news-item img {
  width: 70px;
  height: 55px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}
.sidebar-news-item h4 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-dark);
}
.sidebar-news-item h4:hover { color: var(--color-primary); }
.sidebar-news-item .time { font-size: 11px; color: var(--color-gray); margin-top: 4px; }

.ad-widget img { width: 100%; border-radius: 4px; }

/* ===== CATEGORY SECTIONS ===== */
.category-sections { padding: 10px 0 30px; }
.category-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.category-block {}
.category-block-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  align-items: start;
}
.category-block-inner .main-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
}
.category-block-inner .main-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--color-dark);
  margin-bottom: 10px;
}
.category-block-inner .main-title:hover { color: var(--color-primary); }
.category-sub-list li {
  padding: 6px 0;
  border-bottom: 1px dotted var(--color-border);
  font-size: 13px;
}
.category-sub-list li:last-child { border-bottom: none; }
.category-sub-list li a:hover { color: var(--color-primary); }

/* ===== LATEST & MOST READ SECTION ===== */
.dual-list-section {
  background: var(--color-light-gray);
  padding: 24px 0;
  margin: 20px 0;
}
.dual-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.dual-list-block {}
.numbered-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: flex-start;
}
.numbered-list li:last-child { border-bottom: none; }
.num-badge {
  min-width: 26px;
  height: 26px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.numbered-list li a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-dark);
}
.numbered-list li a:hover { color: var(--color-primary); }
.slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}
.slider-nav button {
  width: 30px; height: 30px;
  border: 1px solid var(--color-border);
  background: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-nav button:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* ===== SINGLE POST ===== */
.single-post-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  padding: 24px 0;
  overflow: hidden;
  width: 100%;
}
.single-post-content {
  min-width: 0;
  overflow: hidden;
  width: 100%;
}
.post-category-badge {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.post-title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--color-black);
  margin-bottom: 14px;
}
.post-meta-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 10px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--color-gray);
  overflow: hidden;
}
.post-meta-bar .author { font-weight: 600; color: var(--color-dark); }
.post-share-bar {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.share-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}
.share-btn:hover { background: var(--color-primary); color: white; border-color: var(--color-primary); }
.post-featured-image { margin-bottom: 20px; }
.post-featured-image img { width: 100%; border-radius: 4px; }
.post-featured-image figcaption {
  text-align: center;
  font-size: 12px;
  color: var(--color-gray);
  padding: 6px;
  background: var(--color-light-gray);
  border-radius: 0 0 4px 4px;
}
/* ===== POST BODY — OVERFLOW FIX + PREMIUM TYPOGRAPHY ===== */
.post-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-dark);
  /* prevent ANY child from breaking out of the column */
  overflow-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
  min-width: 0;
}

/* All media/embeds must stay inside column */
.post-body img,
.post-body figure,
.post-body figure img,
.post-body video,
.post-body audio,
.post-body canvas,
.post-body svg,
.post-body embed,
.post-body object,
.post-body [class*="wp-block-"] img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
}

/* Responsive iframe (YouTube / Google Maps / Facebook) */
.post-body iframe {
  max-width: 100% !important;
  border: none;
}
.post-body .wp-block-embed,
.post-body .embed-wrap,
.post-body .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin: 20px 0;
}
.post-body .wp-block-embed iframe,
.post-body .embed-wrap iframe,
.post-body .video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* Gutenberg full/wide alignment — constrain inside post column */
.post-body .alignfull,
.post-body .alignwide,
.post-body .wp-block-image.alignfull,
.post-body .wp-block-image.alignwide {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Table overflow */
.post-body table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 20px 0;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.post-body table th,
.post-body table td {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  white-space: nowrap;
}
.post-body table th {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.post-body table tr:nth-child(even) { background: #f9f9f9; }

/* Code blocks */
.post-body pre,
.post-body code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  background: #1e1e2e;
  color: #cdd6f4;
  border-radius: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.post-body pre {
  padding: 16px 20px;
  margin: 20px 0;
  line-height: 1.6;
  white-space: pre;
  display: block;
}
.post-body code {
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 13px;
}
.post-body pre code {
  padding: 0;
  background: none;
  border-radius: 0;
}

/* Paragraphs and headings */
.post-body p { margin-bottom: 18px; }
.post-body h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 32px 0 14px;
  color: var(--color-black);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary);
}
.post-body h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 26px 0 12px;
  color: var(--color-black);
  padding-left: 10px;
  border-left: 3px solid var(--color-primary);
}
.post-body h4, .post-body h5, .post-body h6 {
  font-weight: 700;
  margin: 20px 0 10px;
  color: var(--color-dark);
}

/* Lists */
.post-body ul,
.post-body ol {
  margin: 0 0 18px 0;
  padding-left: 24px;
}
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: 6px; line-height: 1.7; }

/* Blockquote */
.post-body blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 14px 20px;
  background: linear-gradient(135deg, #f0faf5 0%, #e8f5ee 100%);
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--color-gray);
  font-size: 15px;
  position: relative;
}
.post-body blockquote::before {
  content: '\201C';
  font-size: 48px;
  color: var(--color-primary);
  opacity: 0.25;
  position: absolute;
  top: 4px;
  right: 16px;
  line-height: 1;
  font-style: normal;
}

/* Figure captions */
.post-body figure {
  margin: 20px 0;
  max-width: 100%;
}
.post-body figcaption {
  font-size: 12px;
  color: var(--color-gray);
  text-align: center;
  padding: 6px 10px;
  background: var(--color-light-gray);
  border-radius: 0 0 6px 6px;
}

/* Horizontal rule */
.post-body hr {
  border: none;
  border-top: 2px solid var(--color-border);
  margin: 28px 0;
}

/* Links inside post */
.post-body a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.post-body a:hover { color: var(--color-primary-dark); }

/* ===== RELATED POSTS ===== */
.related-posts { margin-top: 30px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 14px;
}
.related-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 8px;
}
.related-card h4 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-dark);
}
.related-card h4:hover { color: var(--color-primary); }
.related-card .time { font-size: 11px; color: var(--color-gray); margin-top: 4px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-black);
  color: #aaa;
  padding: 40px 0 0;
  margin-top: 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}
.footer-logo .logo-text { color: white; font-size: 24px; margin-bottom: 10px; display: block; }
.footer-about { font-size: 13px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 32px; height: 32px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ccc;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--color-primary); color: white; }
.footer-widget-title {
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #333;
}
.footer-links li { padding: 5px 0; border-bottom: 1px solid #2a2a2a; }
.footer-links li a { font-size: 13px; color: #aaa; }
.footer-links li a:hover { color: var(--color-primary); padding-left: 4px; }
.footer-bottom {
  text-align: center;
  padding: 14px 0;
  font-size: 13px;
  color: #666;
  border-top: 1px solid #222;
  margin-top: 0;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--color-primary); }

/* ===== MENU LINKS (footer) ===== */
.footer-nav,
nav.footer-nav { display: flex; justify-content: center; }
.footer-nav ul,
.footer-nav-list {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav ul li a,
.footer-nav-list li a,
.footer-nav a {
  font-size: 12px;
  color: #666;
}
.footer-nav ul li a:hover,
.footer-nav-list li a:hover,
.footer-nav a:hover { color: var(--color-primary); }

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu-overlay.active { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed;
  top: 0; right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--color-white);
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { right: 0; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu-header .title { font-weight: 700; font-size: 15px; }
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  color: var(--color-dark);
}
.mobile-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
}
.mobile-social-title { font-size: 12px; color: var(--color-gray); font-weight: 600; margin-bottom: 4px; }
.mobile-social-platforms { display: flex; gap: 10px; }
.mobile-social-platforms a {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.social-fb { background: #1877f2; color: white; }
.social-yt { background: #ff0000; color: white; }
.social-ig { background: #e4405f; color: white; }
.social-wa { background: #25d366; color: white; }
.social-tt { background: #000; color: white; }

.mobile-nav-list li {
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}
.mobile-nav-list li a:hover { background: var(--color-light-gray); color: var(--color-primary); }
.mobile-nav-list li a .arrow { font-size: 11px; color: var(--color-gray); }

/* ===== CUSTOM SEARCH FORM (searchform.php) ===== */
.ttt-search-form { width: 100%; margin: 0; }
.ttt-search-input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-white);
  transition: border-color 0.2s;
}
.ttt-search-input-wrap:focus-within { border-color: var(--color-primary); }
.ttt-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-bangla);
  background: transparent;
  color: var(--color-dark);
}
.ttt-search-input::placeholder { color: #aaa; }
.ttt-search-submit {
  background: var(--color-primary);
  border: none;
  cursor: pointer;
  color: white;
  font-size: 13px;
  font-family: var(--font-bangla);
  font-weight: 600;
  padding: 0 18px;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}
.ttt-search-submit:hover { background: var(--color-primary-dark); }

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 30px 0;
}
.pagination a, .pagination span {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-size: 14px;
  color: var(--color-dark);
  transition: var(--transition);
}
.pagination a:hover, .pagination .current {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* ===== CATEGORY PAGE ===== */
.archive-header {
  padding: 20px 0;
  border-bottom: 2px solid var(--color-primary);
  margin-bottom: 24px;
}
.archive-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-black);
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.archive-card {}
.archive-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}
.archive-card .cat { font-size: 11px; color: var(--color-primary); font-weight: 700; }
.archive-card h3 { font-size: 15px; font-weight: 700; line-height: 1.4; margin: 6px 0; }
.archive-card h3:hover { color: var(--color-primary); }
.archive-card .meta { font-size: 12px; color: var(--color-gray); }

/* ===== UTILITY ===== */
.clearfix::after { content: ''; display: table; clear: both; }
.text-red { color: var(--color-primary); }
.fw-bold { font-weight: 700; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }

/* ===== RESPONSIVE ===== */
/* =============================================
   RESPONSIVE BREAKPOINTS — SINGLE SOURCE
   ============================================= */

@media (max-width: 1200px) {
  .homepage-wrapper { grid-template-columns: 240px 1fr 280px; }
}

@media (max-width: 992px) {
  .homepage-wrapper { grid-template-columns: 1fr 280px; }
  .left-sidebar { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .category-row { grid-template-columns: 1fr; }
}

/* ── 768px: Tablet / Mobile ── */
@media (max-width: 768px) {

  /* Global */
  html, body {
    overflow-x: hidden;
  }
  *, *::before, *::after {
    box-sizing: border-box;
  }
  .container {
    padding-left: 14px;
    padding-right: 14px;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* All text: no overflow */
  p, h1, h2, h3, h4, h5, h6,
  li, td, th, span, a, blockquote, figcaption {
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

  /* All images */
  img, video, embed, object, iframe {
    max-width: 100% !important;
    height: auto;
  }

  /* ── Header ── */
  .main-nav { display: none; }
  .header-inner {
    gap: 8px;
    overflow: hidden;
  }
  .logo-badge {
    font-size: 17px;
    padding: 6px 12px;
  }
  .logo-dot-com { font-size: 20px; }
  .search-btn-text { display: none; }
  .search-toggle-btn { padding: 8px 12px; border-radius: 50%; }

  /* ── Top bar ── */
  .top-bar .container { flex-wrap: wrap; gap: 4px; }

  /* ── Breaking news ── */
  .breaking-news { overflow: hidden; }
  .breaking-news .container { overflow: hidden; }
  .ticker-wrap { overflow: hidden; min-width: 0; flex: 1; }

  /* ── SINGLE POST — সবচেয়ে গুরুত্বপূর্ণ ── */
  .single-post-wrapper {
    display: block;          /* grid বন্ধ */
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 16px 0;
  }
  .single-post-content {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .right-sidebar { display: none; }

  /* Post body */
  .post-body {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    overflow-wrap: break-word;
    word-break: break-word;
    font-size: 15px;
  }
  .post-body p,
  .post-body li,
  .post-body h2,
  .post-body h3,
  .post-body h4,
  .post-body blockquote {
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }
  .post-body h2 { font-size: 18px; }
  .post-body h3 { font-size: 16px; }
  .post-title {
    font-size: 20px;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* Post meta */
  .post-meta-bar {
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 12px;
    overflow: hidden;
  }
  .post-share-bar {
    width: 100%;
    margin-left: 0;
    flex-wrap: wrap;
  }

  /* Table */
  .post-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Code */
  .post-body pre {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 12px;
  }
  .post-body code { word-break: break-all; }

  /* Homepage */
  .homepage-wrapper {
    display: block;
    width: 100%;
  }
  .left-sidebar { display: none; }
  .sub-featured-grid { grid-template-columns: 1fr; }
  .dual-list-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; overflow: hidden; }

  /* Mid article list */
  .mid-article-item { flex-wrap: wrap; }
  .mid-article-thumb {
    width: 100% !important;
    height: 160px !important;
    flex-shrink: unset !important;
  }

  /* Archive */
  .archive-grid { grid-template-columns: 1fr 1fr; }

  /* Related */
  .related-grid-premium { grid-template-columns: 1fr 1fr; }

  /* Author box */
  .author-box-inner { flex-direction: column; align-items: center; text-align: center; }
  .author-footer { justify-content: center; }

  /* Comments */
  .premium-comment-meta { grid-template-columns: 1fr; }

  /* Share bar */
  .share-bottom-bar { flex-direction: column; align-items: flex-start; }

  /* Footer */
  .footer-about, .footer-widget {
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

  /* Search overlay */
  .search-overlay { padding: 40px 16px 30px; }
  .search-form-premium input[type="search"] { font-size: 15px; }
}

/* ── 480px: Small phone ── */
@media (max-width: 480px) {
  .logo-badge { font-size: 14px; padding: 5px 10px; }
  .logo-dot-com { font-size: 17px; }
  .top-bar-weather { display: none; }
  .breaking-label { font-size: 11px; padding: 2px 8px; }

  .post-title { font-size: 18px; }
  .post-body { font-size: 14px; }
  .post-body h2 { font-size: 17px; }
  .post-body h3 { font-size: 15px; }

  .archive-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .related-grid-premium { grid-template-columns: 1fr; }
}

/* ================================================================
   TOPTECHTRIKS — PERFORMANCE & MOBILE FIXES
   Lighthouse audit based: CLS, LCP, TBT, FCP improvements
   ================================================================ */

/* ── font-display: swap (Lighthouse font-display audit fix) ──── */
@font-face {
  font-family: 'Hind Siliguri';
  font-display: swap;
  src: local('Hind Siliguri');
}

/* ── CLS PREVENTION: Featured image ─────────────────────────── */
.post-featured-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  background: #f0f0f0;
}
.post-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── GenerateBlocks / Gutenberg overflow fix ─────────────────── */
/* Lighthouse-এ দেখা গেছে gb-container overflow করছে মোবাইলে */
.gb-container,
.gb-grid-wrapper,
.gb-grid-column,
[class*="gb-"] {
  max-width: 100% !important;
  overflow-wrap: break-word;
  word-break: break-word;
}
.gb-container img,
.gb-grid-column img,
[class*="gb-"] img {
  max-width: 100% !important;
  height: auto !important;
}

/* ── iframe responsive (YouTube embed, etc.) ─────────────────── */
.embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 20px 0;
}
.embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Table mobile scroll ─────────────────────────────────────── */
.post-body .table-overflow {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
}

/* ── Mobile — সব লেখা screen এর ভেতরে রাখো ─────────────────── */
@media (max-width: 768px) {

  /* GenerateBlocks override */
  .gb-container,
  .gb-grid-wrapper,
  .gb-grid-column,
  [class*="gb-container"],
  [class*="gb-grid"] {
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    box-sizing: border-box !important;
  }

  /* Post body সব element */
  .post-body,
  .post-body * {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* post-body এর ভেতরে explicit overflow */
  .post-body p,
  .post-body h2,
  .post-body h3,
  .post-body h4,
  .post-body li,
  .post-body span,
  .post-body blockquote {
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

  /* Table horizontal scroll */
  .post-body table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 13px;
  }

  /* Pre/Code block scroll */
  .post-body pre {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: pre-wrap;
    word-break: break-all;
  }

  /* Featured image */
  .post-featured-img {
    border-radius: 8px;
    margin-bottom: 16px;
  }

  /* Post title responsive */
  .post-title {
    font-size: 19px !important;
    line-height: 1.45;
    word-break: break-word;
  }

  /* Author box */
  .author-box-premium {
    overflow: hidden;
  }

  /* Related posts */
  .related-grid-premium {
    grid-template-columns: 1fr !important;
  }
  .related-card-premium {
    overflow: hidden;
    max-width: 100%;
  }

  /* Comment form */
  .premium-comment-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .premium-comment-meta input,
  .premium-comment-field textarea {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
  }

  /* Share bar */
  .share-bottom-bar {
    flex-wrap: wrap;
    gap: 8px;
  }
  .fb-share-btn, .copy-link-btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
    justify-content: center;
  }

  /* Meta bar */
  .post-meta-bar {
    flex-wrap: wrap;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .post-title { font-size: 17px !important; }
  .post-body  { font-size: 14px; line-height: 1.75; }
  .post-body h2 { font-size: 16px !important; }
  .post-body h3 { font-size: 15px !important; }

  /* Single column related */
  .related-grid-premium { grid-template-columns: 1fr !important; }

  /* Author box compact */
  .author-avatar { width: 60px !important; height: 60px !important; }
}

/* ================================================================
   SEARCH OVERLAY — HIDDEN BY DEFAULT, .open এ দেখা যাবে
   (এই CSS আগে ছিল না — এটাই সমস্যার মূল কারণ)
   ================================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 20px 40px;
  /* DEFAULT: hidden */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

/* .open class যুক্ত হলে দেখা যাবে */
.search-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.search-overlay-inner {
  width: 100%;
  max-width: 620px;
  position: relative;
}

.search-overlay-brand {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  opacity: 0.85;
}

.search-form-premium {
  position: relative;
  margin-bottom: 20px;
}

.search-form-premium form {
  display: flex;
  gap: 0;
}

.search-form-premium input[type="search"] {
  flex: 1;
  padding: 14px 18px;
  font-size: 16px;
  border: none;
  border-radius: 8px 0 0 8px;
  outline: none;
  font-family: inherit;
  color: #1a1a1a;
  background: #fff;
  min-width: 0;
}

.search-submit-btn {
  padding: 14px 20px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
}
.search-submit-btn:hover { background: var(--color-primary-dark); }

.search-hot-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}

.hot-label {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 600;
}

.hot-tag {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s;
  border: 1px solid rgba(255,255,255,0.2);
}
.hot-tag:hover { background: rgba(255,255,255,0.3); }

.close-search {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  font-family: inherit;
}
.close-search:hover { background: rgba(255,255,255,0.25); }

/* Mobile search overlay */
@media (max-width: 768px) {
  .search-overlay {
    padding: 60px 16px 30px;
    align-items: flex-start;
  }
  .search-form-premium input[type="search"] {
    font-size: 15px;
    padding: 12px 14px;
  }
  .search-overlay-brand { font-size: 15px; }
}

/* ============================================

/* ============================================
   TOPTECHTRIKS v2.1 — COMPLETE PREMIUM UPDATE
   ============================================ */

/* ── Meta author link (post header) ─────────── */
.meta-author-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--color-dark); font-weight: 600;
    text-decoration: none; transition: color .2s;
}
.meta-author-link:hover { color: var(--color-primary); }
.meta-author-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    vertical-align: middle; border: 2px solid var(--color-border);
    object-fit: cover;
}
.meta-sep { color: var(--color-gray); font-weight: 400; margin: 0 3px; }

/* ── Author post count badge ─────────────────── */
.author-post-count {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--color-light-gray);
    color: var(--color-gray);
    font-size: 11px; padding: 3px 10px; border-radius: 20px; margin-left: 6px;
}
.author-social-link.tw { background: #000 !important; }

/* ── ARCHIVE LAYOUT ─────────────────────────── */
.archive-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    margin-top: 16px;
}
.archive-main { min-width: 0; }
.archive-desc { font-size: 14px; color: var(--color-gray); margin-top: 8px; }

/* Featured first post */
.archive-featured-post {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--color-border);
}
.archive-featured-inner { display: flex; gap: 20px; align-items: flex-start; }
.archive-featured-thumb { flex-shrink: 0; border-radius: 6px; overflow: hidden; display: block; }
.archive-featured-thumb img { width: 300px; height: 200px; object-fit: cover; display: block; transition: transform .3s; }
.archive-featured-thumb:hover img { transform: scale(1.03); }
.archive-featured-body { flex: 1; min-width: 0; }
.archive-featured-title { font-size: 20px; font-weight: 800; line-height: 1.4; margin: 8px 0 10px; }
.archive-featured-title a { color: var(--color-dark); text-decoration: none; }
.archive-featured-title a:hover { color: var(--color-primary); }
.archive-featured-excerpt { font-size: 14px; color: var(--color-gray); line-height: 1.7; margin-bottom: 12px; }
.archive-featured-meta { display: flex; gap: 14px; font-size: 12px; color: var(--color-gray); margin-bottom: 14px; flex-wrap: wrap; }
.archive-featured-meta span { display: flex; align-items: center; gap: 4px; }

/* Read button */
.archive-read-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--color-primary); color: #fff !important;
    padding: 8px 20px; border-radius: 4px;
    font-size: 13px; font-weight: 700; text-decoration: none;
    transition: background .2s, transform .2s;
}
.archive-read-btn:hover { background: #1a7a2e; transform: translateY(-1px); }

/* Archive card improvements */
.archive-card-thumb { display: block; border-radius: 6px; overflow: hidden; margin-bottom: 0; }
.archive-card-thumb img { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform .3s; }
.archive-card-thumb:hover img { transform: scale(1.04); }
.archive-card-no-img {
    width: 100%; height: 180px;
    background: var(--color-light-gray);
    display: flex; align-items: center; justify-content: center;
    border-radius: 6px;
}
.archive-card-no-img i { font-size: 32px; color: #ccc; }
.archive-card-body { padding: 10px 0 0; }
.archive-card-title { font-size: 15px; font-weight: 700; line-height: 1.45; margin: 4px 0 6px; }
.archive-card-title a { color: var(--color-dark); text-decoration: none; }
.archive-card-title a:hover { color: var(--color-primary); }
.archive-card-excerpt { font-size: 12px; color: var(--color-gray); line-height: 1.6; margin-bottom: 8px; }
.archive-card-meta { display: flex; gap: 10px; font-size: 11px; color: var(--color-gray); flex-wrap: wrap; }
.archive-card-meta span { display: flex; align-items: center; gap: 3px; }

/* Load more */
.load-more-wrap { text-align: center; margin: 10px 0 30px; }
#loadMoreBtn {
    background: var(--color-primary); color: #fff;
    border: none; padding: 12px 36px;
    border-radius: 4px; font-size: 14px; font-weight: 700;
    cursor: pointer; font-family: var(--font-bangla);
    display: inline-flex; align-items: center; gap: 8px;
    transition: background .2s, transform .2s;
}
#loadMoreBtn:hover { background: #1a7a2e; transform: translateY(-1px); }

/* No posts */
.no-posts-found { text-align: center; padding: 60px 20px; }
.no-posts-found i { font-size: 52px; color: #ccc; margin-bottom: 16px; display: block; }
.no-posts-found h3 { color: var(--color-gray); margin-bottom: 8px; }
.no-posts-found p { font-size: 14px; color: var(--color-gray); }

/* ── PAGINATION — Premium ────────────────────── */
/* Override old pagination */
.pagination {
    display: flex !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 30px 0 !important;
    flex-wrap: wrap !important;
}
.pagination ul { display: flex; gap: 6px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.pagination li { display: flex; }
.pagination a,
.pagination span,
.pagination .page-numbers {
    min-width: 40px; height: 40px;
    display: flex !important; align-items: center; justify-content: center;
    border: 1.5px solid var(--color-border);
    border-radius: 6px !important;
    font-size: 14px; font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
    transition: all .2s;
    padding: 0 10px;
    background: #fff;
}
.pagination a:hover,
.pagination .current,
.pagination span.current {
    background: var(--color-primary) !important;
    color: #fff !important;
    border-color: var(--color-primary) !important;
    box-shadow: 0 3px 10px rgba(26,122,74,.3);
}
.pagination .prev, .pagination .next {
    background: var(--color-light-gray);
    font-size: 13px;
}
.pagination .prev:hover, .pagination .next:hover {
    background: var(--color-primary) !important;
    color: #fff !important;
    border-color: var(--color-primary) !important;
}
.pagination .dots { border: none; background: none; cursor: default; }

/* ── PREMIUM SIDEBAR WIDGETS ─────────────────── */
.widget-header { margin-bottom: 14px; }
.widget-title-premium {
    font-size: 15px; font-weight: 800;
    color: var(--color-dark);
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 10px; margin: 0;
    display: flex; align-items: center; gap: 8px;
    position: relative;
}
.wt-accent {
    display: inline-block;
    width: 4px; height: 16px;
    background: var(--color-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Sidebar premium item */
.sidebar-item-premium {
    display: flex; gap: 10px; align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    transition: background .15s;
}
.sidebar-item-premium:last-child { border-bottom: none; }
.sidebar-item-num {
    min-width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800;
    border-radius: 50%;
    background: var(--color-light-gray);
    color: var(--color-gray);
    flex-shrink: 0;
}
.sidebar-item-num.pop {
    background: var(--color-primary);
    color: #fff;
}
.sidebar-item-img { display: block; flex-shrink: 0; border-radius: 4px; overflow: hidden; }
.sidebar-item-img img { width: 65px; height: 50px; object-fit: cover; display: block; transition: transform .3s; }
.sidebar-item-img:hover img { transform: scale(1.05); }
.sidebar-item-text { flex: 1; min-width: 0; }
.sidebar-item-text h4 { font-size: 13px; font-weight: 600; line-height: 1.45; margin: 0 0 4px; }
.sidebar-item-text h4 a { color: var(--color-dark); text-decoration: none; }
.sidebar-item-text h4 a:hover { color: var(--color-primary); }
.sidebar-item-time { font-size: 11px; color: var(--color-gray); display: flex; align-items: center; gap: 4px; }

/* Category list in sidebar */
.sidebar-cat-list { list-style: none; padding: 0; margin: 0; }
.sidebar-cat-list li { border-bottom: 1px solid var(--color-border); }
.sidebar-cat-list li:last-child { border-bottom: none; }
.sidebar-cat-list li a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 4px; font-size: 13px; font-weight: 600;
    color: var(--color-dark); text-decoration: none;
    transition: color .2s, padding-left .2s;
}
.sidebar-cat-list li a:hover { color: var(--color-primary); padding-left: 8px; }
.sidebar-cat-list li a i { color: var(--color-primary); margin-right: 6px; font-size: 10px; }
.cat-count {
    background: var(--color-light-gray);
    padding: 2px 8px; border-radius: 20px;
    font-size: 11px; color: var(--color-gray); font-weight: 600;
}

/* Widget sticky box */
.right-sidebar .widget {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 1px 6px rgba(0,0,0,.04);
}
/* Old widget-title override inside right-sidebar */
.right-sidebar .widget-title {
    font-size: 15px; font-weight: 800;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 8px; margin-bottom: 12px;
}

/* ── AUTHOR PAGE ─────────────────────────────── */
.author-page-header {
    display: flex; gap: 28px; align-items: flex-start;
    background: linear-gradient(135deg, #fff 0%, #f0f7f3 100%);
    border: 1px solid var(--color-border);
    border-radius: 12px; padding: 28px;
    margin-bottom: 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    border-top: 3px solid var(--color-primary);
}
.author-page-avatar-wrap { position: relative; flex-shrink: 0; }
.author-page-avatar {
    width: 100px; height: 100px; border-radius: 50%;
    display: block; border: 3px solid var(--color-primary);
    object-fit: cover;
}
.author-page-verified {
    position: absolute; bottom: 4px; right: 4px;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--color-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; border: 2px solid #fff;
}
.author-page-info { flex: 1; min-width: 0; }
.author-page-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--color-primary); color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 20px; margin-bottom: 8px;
}
.author-page-name { font-size: 24px; font-weight: 900; margin: 0 0 8px; color: var(--color-dark); }
.author-page-bio { font-size: 14px; color: var(--color-gray); line-height: 1.7; margin-bottom: 14px; }
.author-page-stats { display: flex; gap: 20px; margin-bottom: 14px; }
.author-stat { text-align: center; }
.stat-num { display: block; font-size: 22px; font-weight: 900; color: var(--color-primary); }
.stat-label { font-size: 11px; color: var(--color-gray); font-weight: 600; }
.author-page-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.author-social-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 16px; border-radius: 4px;
    font-size: 12px; font-weight: 700; color: #fff !important; text-decoration: none;
    transition: opacity .2s, transform .2s;
}
.author-social-btn:hover { opacity: .85; transform: translateY(-1px); }
.author-social-btn.fb { background: #1877f2; }
.author-social-btn.tw { background: #000; }

/* Author page layout */
.author-page-layout {
    display: grid; grid-template-columns: 1fr 300px; gap: 30px;
}
.author-posts-main { min-width: 0; }
.author-posts-heading {
    border-bottom: 2px solid var(--color-primary);
    margin-bottom: 20px; padding-bottom: 10px;
}
.author-posts-heading h2 {
    font-size: 17px; font-weight: 800; color: var(--color-dark);
    display: flex; align-items: center; gap: 8px; margin: 0;
}
.author-posts-heading h2 i { color: var(--color-primary); }

/* Author post list items */
.author-posts-list { display: flex; flex-direction: column; }
.author-post-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 16px 0; border-bottom: 1px solid var(--color-border);
}
.author-post-item:last-child { border-bottom: none; }
.author-post-thumb { flex-shrink: 0; border-radius: 6px; overflow: hidden; display: block; }
.author-post-thumb img { width: 150px; height: 96px; object-fit: cover; display: block; transition: transform .3s; }
.author-post-thumb:hover img { transform: scale(1.04); }
.author-post-thumb-empty {
    width: 150px; height: 96px;
    background: var(--color-light-gray);
    display: flex; align-items: center; justify-content: center;
    border-radius: 6px; text-decoration: none;
}
.author-post-thumb-empty i { font-size: 28px; color: #ccc; }
.author-post-text { flex: 1; min-width: 0; }
.author-post-title { font-size: 15px; font-weight: 700; line-height: 1.45; margin: 4px 0 6px; }
.author-post-title a { color: var(--color-dark); text-decoration: none; }
.author-post-title a:hover { color: var(--color-primary); }
.author-post-excerpt { font-size: 12px; color: var(--color-gray); line-height: 1.6; margin-bottom: 6px; }
.author-post-meta { font-size: 11px; color: var(--color-gray); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

/* ── PAGE CONTENT ────────────────────────────── */
.page-content-wrap { min-width: 0; }
.page-title { font-size: 28px; font-weight: 900; margin-bottom: 20px; }
.page-featured-img { margin-bottom: 24px; }
.page-body { font-size: 15px; line-height: 1.85; }

/* ── RELATED CARD META ───────────────────────── */
.related-card-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 11px; margin-top: 4px; }

/* ── PREMIUM COMMENT SECTION ─────────────────── */
.comments-premium-wrap { margin-top: 40px; }

/* Comment title */
#comments .comments-title,
.comments-premium-wrap .comments-title {
    font-size: 18px; font-weight: 800;
    margin-bottom: 20px; padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
    display: flex; align-items: center; gap: 8px;
}

/* Comment list */
ol.comment-list { list-style: none; padding: 0; margin: 0 0 30px; }
ol.comment-list .children {
    list-style: none; padding-left: 48px; margin-top: 0;
    border-left: 2px solid var(--color-border);
}
.premium-comment-item { padding: 0; }
.premium-comment-body {
    display: flex; gap: 14px; padding: 18px 0;
    border-bottom: 1px solid var(--color-border);
}
.premium-comment-avatar { flex-shrink: 0; }
.comment-gravatar { width: 46px; height: 46px; border-radius: 50%; display: block; border: 2px solid var(--color-border); object-fit: cover; }
.premium-comment-content { flex: 1; min-width: 0; }
.premium-comment-header {
    display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap; margin-bottom: 8px;
}
.comment-author-name { font-weight: 700; font-size: 14px; color: var(--color-dark); }
.comment-author-name a { color: var(--color-dark); text-decoration: none; }
.comment-author-tag {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--color-primary); color: #fff;
    font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px;
}
.comment-date { font-size: 11px; color: var(--color-gray); margin-left: auto; display: flex; align-items: center; gap: 4px; }
.premium-comment-text { font-size: 14px; line-height: 1.7; color: var(--color-dark); }
.premium-comment-text p { margin: 0 0 6px; }
.premium-comment-actions { margin-top: 8px; display: flex; gap: 12px; }
.comment-reply-link, .comment-edit-link {
    font-size: 12px; font-weight: 600; color: var(--color-gray);
    display: inline-flex; align-items: center; gap: 4px;
    text-decoration: none; transition: color .2s;
    background: var(--color-light-gray);
    border: 1px solid var(--color-border);
    padding: 4px 12px; border-radius: 20px;
}
.comment-reply-link:hover, .comment-edit-link:hover { color: var(--color-primary); border-color: var(--color-primary); background: #f0faf4; }
.comment-awaiting {
    font-size: 12px; color: #92400e;
    background: #fffbeb; padding: 6px 12px; border-radius: 4px;
    border: 1px solid #fde68a; margin-bottom: 8px;
    display: inline-flex; align-items: center; gap: 6px;
}

/* Comment form */
.premium-comment-title { font-size: 18px !important; }
.premium-comment-field { margin-bottom: 16px; }
.comment-label {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--color-dark);
}
.premium-comment-field textarea {
    width: 100%; border: 1.5px solid var(--color-border);
    border-radius: 6px; padding: 12px 14px; font-size: 14px;
    font-family: var(--font-bangla); resize: vertical; min-height: 100px;
    transition: border-color .2s; box-sizing: border-box;
}
.premium-comment-field textarea:focus { border-color: var(--color-primary); outline: none; box-shadow: 0 0 0 3px rgba(26,122,74,.1); }
.premium-comment-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.comment-meta-field { display: flex; flex-direction: column; gap: 4px; }
.comment-meta-field label { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; }
.comment-meta-field input {
    border: 1.5px solid var(--color-border); border-radius: 6px;
    padding: 10px 12px; font-size: 14px; font-family: var(--font-bangla);
    transition: border-color .2s; width: 100%; box-sizing: border-box;
}
.comment-meta-field input:focus { border-color: var(--color-primary); outline: none; box-shadow: 0 0 0 3px rgba(26,122,74,.1); }
.premium-comment-submit { margin-top: 8px; }
.premium-submit-btn {
    background: var(--color-primary); color: #fff;
    border: none; padding: 12px 28px; border-radius: 6px;
    font-size: 14px; font-weight: 700; font-family: var(--font-bangla);
    cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
    transition: background .2s, transform .2s;
}
.premium-submit-btn:hover { background: #1a7a2e; transform: translateY(-1px); }
.comment-cookies-consent { font-size: 12px; color: var(--color-gray); margin-top: 10px; display: flex; align-items: center; gap: 6px; }
.comment-notes { font-size: 12px; color: var(--color-gray); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; background: var(--color-light-gray); padding: 8px 12px; border-radius: 4px; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
    .archive-layout,
    .author-page-layout { grid-template-columns: 1fr; }
    .archive-featured-inner { flex-direction: column; }
    .archive-featured-thumb img { width: 100%; height: 220px; }
    .author-page-header { flex-direction: column; align-items: center; text-align: center; }
    .author-page-socials { justify-content: center; }
    .author-page-stats { justify-content: center; }
}
@media (max-width: 640px) {
    .author-post-item { flex-direction: column; }
    .author-post-thumb img, .author-post-thumb-empty { width: 100%; height: 180px; }
    .premium-comment-meta { grid-template-columns: 1fr; }
    .author-page-header { padding: 18px; }
    .archive-featured-thumb img { height: 180px; }
}

/* ── AUTHOR BOX v2 (single post) ─────────────── */
.author-box-v2 {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, #f0faf4 0%, #fff 60%, #f5f5f5 100%);
    border: 1px solid #d4edda;
    border-left: 4px solid var(--color-primary);
    border-radius: 10px;
    padding: 24px;
    margin: 32px 0 0;
    box-shadow: 0 2px 12px rgba(26,122,74,.08);
    position: relative;
    overflow: hidden;
}
.author-box-v2::before {
    content: '\f4ff';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px; top: 16px;
    font-size: 60px;
    color: rgba(26,122,74,.06);
    line-height: 1;
}
.author-box-v2-left { flex-shrink: 0; }
.author-box-v2-avatar-wrap { position: relative; display: inline-block; }
.author-box-v2-avatar {
    width: 84px; height: 84px; border-radius: 50%;
    display: block; object-fit: cover;
    border: 3px solid var(--color-primary);
    box-shadow: 0 4px 12px rgba(26,122,74,.25);
}
.author-box-v2-verified {
    position: absolute; bottom: 2px; right: 2px;
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--color-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; border: 2px solid #fff;
}
.author-box-v2-body { flex: 1; min-width: 0; }
.author-box-v2-top {
    display: flex; align-items: center; gap: 8px; margin-bottom: 6px; flex-wrap: wrap;
}
.author-box-v2-badge {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--color-primary); color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
}
.author-box-v2-count {
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(26,122,74,.1); color: var(--color-primary);
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
}
.author-box-v2-name {
    font-size: 18px; font-weight: 900; margin: 0 0 8px; color: var(--color-dark);
}
.author-box-v2-name a { color: var(--color-dark); text-decoration: none; transition: color .2s; }
.author-box-v2-name a:hover { color: var(--color-primary); }
.author-box-v2-bio {
    font-size: 13.5px; color: var(--color-gray); line-height: 1.65; margin-bottom: 14px;
}
.author-box-v2-footer { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.author-box-v2-all-posts {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--color-primary); color: #fff !important;
    padding: 7px 18px; border-radius: 4px;
    font-size: 13px; font-weight: 700; text-decoration: none;
    transition: background .2s, transform .2s;
}
.author-box-v2-all-posts:hover { background: #1a7a2e; transform: translateY(-1px); }
.author-box-v2-social {
    width: 34px; height: 34px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff !important; font-size: 13px; text-decoration: none;
    transition: transform .2s, opacity .2s;
}
.author-box-v2-social:hover { transform: translateY(-2px); opacity: .9; }
.author-box-v2-social.fb { background: #1877f2; }
.author-box-v2-social.tw { background: #000; }

@media (max-width: 540px) {
    .author-box-v2 { flex-direction: column; align-items: center; text-align: center; }
    .author-box-v2-footer { justify-content: center; }
    .author-box-v2-top { justify-content: center; }
}

/* ── SIDEBAR WIDGET BOX (override) ───────────── */
.right-sidebar .widget {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 16px 16px 12px;
    margin-bottom: 20px;
    box-shadow: 0 1px 8px rgba(0,0,0,.05);
}
.right-sidebar .widget-title {
    font-size: 15px; font-weight: 800;
    color: var(--color-dark);
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 10px; margin: 0 0 14px;
    display: flex; align-items: center; gap: 7px;
    position: relative;
}

/* ── SIDEBAR WIDGET PREMIUM (sidebar-default.php) ── */
.sidebar-widget-premium {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 1px 6px rgba(0,0,0,.05);
}
.sidebar-widget-premium .widget-header { margin-bottom: 12px; }

.sidebar-ad-widget { margin-bottom: 20px; }
.sidebar-ad-placeholder {
    background: #f5f5f5;
    height: 250px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 6px; border: 1px dashed #ddd;
    color: #bbb; font-size: 13px;
}

/* ── HEADER SEARCH ALWAYS VISIBLE ───────────────── */
/* Ensure search icon never gets hidden or clipped */
#searchToggle {
    display: flex !important;
    align-items: center;
    flex-shrink: 0;
}

/* ============================================================
   TOPTECHTRIKS THEME — UPDATED STYLES
   ============================================================ */

/* ── 1. SEARCH BUTTON: আইকন সবসময় দেখাবে ──────────────── */
.search-icon {
    display: inline-block !important;
    flex-shrink: 0;
}

/* ── 2. HOMEPAGE CATEGORY SECTION TITLE VARIANTS ────────── */
.section-title--bar {
    border-left: 4px solid var(--color-primary);
    padding-left: 10px;
}
.section-title--line {
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 6px;
}
.section-title--bg {
    background: var(--color-primary);
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 4px;
    display: inline-block;
}
.section-title--bg a { color: #fff !important; }

/* ── 3. FOOTER FACEBOOK FOLLOW BUTTON ───────────────────── */
.footer-fb-follow { margin-top: 16px; }
.footer-fb-follow-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1877f2;
    color: #fff !important;
    border-radius: 8px;
    padding: 10px 16px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    max-width: 240px;
}
.footer-fb-follow-btn:hover {
    background: #1558b0;
    transform: translateY(-2px);
    color: #fff !important;
}
.footer-fb-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.footer-fb-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    flex: 1;
}
.footer-fb-label {
    font-size: 10px;
    opacity: 0.85;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.footer-fb-name {
    font-size: 14px;
    font-weight: 700;
}
.footer-fb-arrow {
    font-size: 12px;
    opacity: 0.7;
}

/* ── 4. POST TABLE: এড থাকলে মাঝখানে ফাঁকা না হওয়া ──── */
.post-body table {
    display: table !important;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
    font-size: 14px;
    margin: 20px 0;
    table-layout: auto;
    word-break: break-word;
}
/* wrapper দিয়ে overflow scroll */
.post-body .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    border-radius: 6px;
    box-shadow: 0 0 0 1px var(--color-border);
}
.post-body .table-wrap table {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
}
/* Single post layout — sidebar সহ table spacing */
.single-post-content .post-body table {
    width: 100%;
    max-width: 100%;
}

/* ── 5. SHARE BUTTONS — PROFESSIONAL ───────────────────── */
.share-bottom-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin: 24px 0;
}
.share-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    white-space: nowrap;
    margin-right: 4px;
}
.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.share-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-bangla);
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.share-pill--fb {
    background: #1877f2;
    color: #fff;
}
.share-pill--fb:hover { background: #1558b0; color: #fff; }
.share-pill--tw {
    background: #000;
    color: #fff;
}
.share-pill--tw:hover { background: #333; color: #fff; }
.share-pill--wa {
    background: #25d366;
    color: #fff;
}
.share-pill--wa:hover { background: #1da851; color: #fff; }
.share-pill--copy {
    background: #f0f0f0;
    color: var(--color-dark);
    border: 1px solid #ddd;
}
.share-pill--copy:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* ── 6. RELATED POSTS — DIVIDER STYLE ──────────────────── */
.related-section-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 32px 0 20px;
}
.related-divider-line {
    flex: 1;
    height: 1px;
    background: var(--color-border);
}
.related-divider-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    white-space: nowrap;
}
.related-divider-title i {
    color: var(--color-primary);
}
.related-divider-cat {
    background: var(--color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    letter-spacing: 0.2px;
}

/* Related posts grid — 2 col */
.related-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 540px) {
    .related-grid-premium { grid-template-columns: 1fr; }
}

/* ── 7. MOBILE SHARE BAR RESPONSIVE ────────────────────── */
@media (max-width: 600px) {
    .share-bottom-bar { flex-direction: column; align-items: flex-start; }
    .share-buttons { gap: 6px; }
    .share-pill { padding: 7px 12px; font-size: 12px; }
}

/* ── 8. TABLE FIX FOR SIDEBAR LAYOUT ───────────────────── */
@media (min-width: 769px) {
    .single-post-wrapper {
        grid-template-columns: 1fr 300px;
    }
    .single-post-content {
        min-width: 0;
        overflow: hidden;
    }
    .post-body {
        overflow-wrap: break-word;
        word-break: break-word;
        overflow: hidden;
    }
    .post-body table {
        display: block;
        overflow-x: auto;
    }
}

/* ── META BAR SHARE ICONS ───────────────────────────────── */
.post-meta-share-icons {
    display: flex;
    gap: 6px;
    margin-left: auto;
}
.meta-share-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #f0f0f0;
    border: 1px solid #ddd;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    color: var(--color-dark);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.meta-share-icon:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.meta-share-icon--fb { color: #1877f2; }
.meta-share-icon--fb:hover { background: #1877f2; color: #fff; }

/* ── CUSTOM SEARCH ICON ─────────────────────────────────── */
.search-custom-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: invert(1) brightness(10);
    display: inline-block;
    flex-shrink: 0;
}
