/*
Theme Name: Times of Cockroach
Theme URI: https://timesofcockroach.com
Author: Times of Cockroach
Description: India's Finest Satire Source — survives anything, reports everything.
Version: 1.3.0
Text Domain: timesofcockroach
*/

/* -------------------------------------------------------------------------- */
/* Design tokens                                                              */
/* -------------------------------------------------------------------------- */

:root {
  --toc-accent: #c41e3a;
  --toc-accent-soft: #fce8ec;
  --toc-dark: #121212;
  --toc-surface: #ffffff;
  --toc-surface-2: #f8f6f2;
  --toc-cream: #f3f1ec;
  --toc-border: #e6e2da;
  --toc-muted: #5c5c5c;
  --toc-link: #0b57d0;
  --toc-gold: #c9920a;

  --font-headline: "Source Serif 4", "Noto Sans Devanagari", Georgia, serif;
  --font-ui: "Inter", "Noto Sans Devanagari", system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgb(18 18 18 / 0.06);
  --shadow-md: 0 8px 24px rgb(18 18 18 / 0.08);
  --shadow-lg: 0 16px 40px rgb(18 18 18 / 0.1);

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;

  --container: min(1280px, 100% - 2rem);
  --header-h: auto;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Base                                                                       */
/* -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  line-height: 1.6;
  color: var(--toc-dark);
  background: var(--toc-cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--toc-link);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover { color: var(--toc-accent); }

.site-container {
  width: var(--container);
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.main-content { padding-block: var(--space-lg) var(--space-2xl); }

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(255 255 255 / 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--toc-border);
  box-shadow: var(--shadow-sm);
}

.header-inner { padding-block: var(--space-sm) var(--space-md); }

.header-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid var(--toc-border);
  font-size: 0.75rem;
  color: var(--toc-muted);
}

.header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
}

.header-chip {
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--toc-surface-2);
  border: 1px solid var(--toc-border);
  font-weight: 600;
  color: var(--toc-dark);
  white-space: nowrap;
}

.header-chip:hover {
  background: var(--toc-accent-soft);
  border-color: var(--toc-accent);
  color: var(--toc-accent);
  text-decoration: none;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.site-branding {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  text-align: left;
}

.site-branding-text { min-width: 0; }

.site-logo-link {
  display: flex;
  flex-shrink: 0;
  line-height: 0;
  border-radius: var(--radius-sm);
  transition: transform 0.15s ease;
}

.site-logo-link:hover { transform: scale(1.04); }

.site-logo {
  width: 52px;
  height: 52px;
  display: block;
}

.site-title {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.03em;
}

.site-title a {
  color: var(--toc-dark);
  text-decoration: none;
}

.site-title a:hover { color: var(--toc-accent); }

.site-tagline {
  margin: 0.35rem 0 0;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  color: var(--toc-muted);
  max-width: 42ch;
  margin-inline: auto;
}

/* Language switcher — sharp segmented control (no list bullets) */
.lang-switch { line-height: 1; }

.lang-switch-track {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid var(--toc-dark);
  border-radius: 4px;
  overflow: hidden;
  background: var(--toc-surface);
  box-shadow: var(--shadow-sm);
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  padding: 0.4rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--toc-dark);
  background: var(--toc-surface);
  border: none;
  border-right: 1.5px solid var(--toc-dark);
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

.lang-switch-btn:last-child { border-right: none; }

.lang-switch-btn:hover {
  background: var(--toc-accent-soft);
  color: var(--toc-accent);
  text-decoration: none;
}

.lang-switch-btn.is-active {
  background: var(--toc-dark);
  color: #fff;
}

.lang-switch-btn.is-active:hover {
  background: var(--toc-accent);
  color: #fff;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--toc-border);
  border-radius: var(--radius-sm);
  background: var(--toc-surface);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--toc-dark);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-icon {
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  position: relative;
  border-radius: 1px;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.nav-toggle-icon::before { top: -5px; }
.nav-toggle-icon::after { top: 5px; }

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: var(--space-md) 0 0;
  padding: 0;
}

.main-nav a {
  display: block;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--toc-dark);
}

.main-nav a:hover {
  background: var(--toc-accent-soft);
  color: var(--toc-accent);
  text-decoration: none;
}

@media (max-width: 768px) {
  .header-meta .header-weather { display: none; }

  .header-main { align-items: flex-start; }

  .site-branding {
    justify-content: flex-start;
    text-align: left;
  }

  .site-tagline { margin-inline: 0; }

  .site-logo { width: 44px; height: 44px; }

  .nav-toggle { display: inline-flex; }

  .main-nav {
    display: none;
    margin-top: var(--space-sm);
  }

  .main-nav.is-open { display: block; }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: var(--space-sm);
    background: var(--toc-surface-2);
    border-radius: var(--radius-md);
    border: 1px solid var(--toc-border);
  }

  .main-nav a { text-align: center; }
}

/* -------------------------------------------------------------------------- */
/* Layout                                                                     */
/* -------------------------------------------------------------------------- */

.layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: var(--space-xl);
  align-items: start;
}

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

.content-main { min-width: 0; }

.sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (max-width: 960px) {
  .sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: var(--space-md);
  }
}

/* -------------------------------------------------------------------------- */
/* Cards & shared components                                                  */
/* -------------------------------------------------------------------------- */

.card {
  background: var(--toc-surface);
  border: 1px solid var(--toc-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.post-card:hover,
.hero-story:hover { box-shadow: var(--shadow-md); }

.cat-badge {
  display: inline-block;
  margin-bottom: var(--space-xs);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--toc-accent);
  background: var(--toc-accent-soft);
}

.panel-title,
.section-block h2 {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--toc-accent);
  margin: 0;
}

.disclaimer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  align-items: baseline;
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #fff8e6 0%, #fff3cd 100%);
  border: 1px solid #f0d78c;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #5c4a12;
}

/* -------------------------------------------------------------------------- */
/* Homepage hero + newswire                                                   */
/* -------------------------------------------------------------------------- */

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 900px) {
  .home-hero-grid { grid-template-columns: 1fr; }
}

.hero-story { overflow: hidden; }

.hero-story .thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-story .content { padding: var(--space-lg); }

.hero-title {
  font-family: var(--font-headline);
  font-size: clamp(1.35rem, 3.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-sm);
}

.hero-title a { color: var(--toc-dark); }
.hero-title a:hover { color: var(--toc-accent); text-decoration: none; }

.hero-story .excerpt {
  color: var(--toc-muted);
  margin: 0 0 var(--space-md);
  font-size: 1rem;
  line-height: 1.65;
}

.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--toc-accent);
}

.read-more:hover { text-decoration: underline; }

.newswire { padding: var(--space-lg); }

.newswire-list {
  list-style: none;
  margin: var(--space-md) 0 0;
  padding: 0;
}

.newswire-list li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--toc-border);
  font-size: 0.9rem;
  line-height: 1.45;
}

.newswire-list li:last-child { border-bottom: none; }

.newswire-list a {
  color: var(--toc-dark);
  font-weight: 500;
}

.newswire-list a:hover { color: var(--toc-accent); }

/* -------------------------------------------------------------------------- */
/* Section blocks & post grid                                                 */
/* -------------------------------------------------------------------------- */

.section-block { margin-bottom: var(--space-2xl); }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--toc-dark);
}

.section-header h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--toc-dark);
  margin: 0;
}

.section-header h2 a { color: inherit; }
.section-header h2 a:hover { color: var(--toc-accent); text-decoration: none; }

.section-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--toc-muted);
  white-space: nowrap;
}

.section-more:hover { color: var(--toc-accent); }

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: var(--space-md);
}

.post-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.post-card-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card-thumb {
  display: block;
  overflow: hidden;
  line-height: 0;
  background: var(--toc-surface-2);
}

.post-card-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.post-card:hover .post-card-thumb img { transform: scale(1.03); }

.post-card-body h3 {
  font-family: var(--font-headline);
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 var(--space-xs);
  flex: 1;
}

.post-card-body h3 a { color: var(--toc-dark); }
.post-card-body h3 a:hover { color: var(--toc-accent); text-decoration: none; }

.post-card-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--toc-muted);
  line-height: 1.55;
}

/* -------------------------------------------------------------------------- */
/* Sidebar widgets                                                            */
/* -------------------------------------------------------------------------- */

.sidebar-widget {
  padding: var(--space-lg);
}

.sidebar-widget h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--toc-accent);
  margin: 0 0 var(--space-md);
}

.whatsapp-bubble {
  background: #dcf8c6;
  border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
}

.linkedin-fake {
  border-left: 3px solid #0a66c2;
  padding-left: var(--space-md);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--toc-muted);
}

/* -------------------------------------------------------------------------- */
/* Single post & archive                                                      */
/* -------------------------------------------------------------------------- */

.single-article { padding: clamp(var(--space-lg), 4vw, var(--space-2xl)); }

.entry-header { margin-bottom: var(--space-lg); }

.entry-title {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: var(--space-sm) 0;
}

.dateline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  font-size: 0.9rem;
  color: var(--toc-muted);
  margin: 0;
}

.dateline-city {
  font-weight: 600;
  font-style: italic;
  color: var(--toc-dark);
}

.entry-thumb {
  margin: 0 0 var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.entry-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.entry-content {
  font-family: var(--font-headline);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
  max-width: 65ch;
}

.entry-content p { margin: 0 0 1.25em; }

.archive-header {
  padding: clamp(var(--space-lg), 4vw, var(--space-xl));
  margin-bottom: var(--space-lg);
  border-left: 4px solid var(--toc-accent);
}

.archive-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--toc-accent);
  margin: 0 0 var(--space-xs);
}

.archive-title {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin: 0;
  line-height: 1.2;
}

.archive-desc {
  margin-top: var(--space-md);
  color: var(--toc-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 55ch;
}

.archive-desc p { margin: 0; }

.archive-count {
  margin: var(--space-md) 0 0;
  font-size: 0.85rem;
  color: var(--toc-muted);
  font-style: italic;
}

/* Archive list (not grid) */
.archive-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.post-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-md);
  padding: var(--space-lg);
  overflow: hidden;
}

@media (min-width: 640px) {
  .post-list-item:has(.post-card-thumb) {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
  }
}

.post-list-item .post-card-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.post-list-title {
  font-family: var(--font-headline);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  margin: var(--space-xs) 0;
  line-height: 1.25;
}

.post-list-title a { color: inherit; }

.post-list-excerpt {
  margin: var(--space-sm) 0;
  color: var(--toc-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.post-list-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--toc-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}

/* Reporter byline */
.story-byline {
  margin: var(--space-xs) 0 var(--space-sm);
  font-size: 0.88rem;
  color: var(--toc-muted);
  line-height: 1.4;
}

.byline-label {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--toc-accent);
}

.byline-name {
  font-weight: 600;
  color: var(--toc-dark);
  font-style: italic;
}

.byline-desk {
  color: var(--toc-muted);
}

.post-card .story-byline {
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
}

/* Sidebar block widgets (Recent Posts, Comments, Archives, Categories) */
.sidebar-widget .wp-block-heading,
.sidebar-widget .wp-block-group h2 {
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--toc-accent) !important;
  margin: 0 0 var(--space-md) !important;
  font-family: var(--font-ui) !important;
}

.toc-sidebar-block {
  margin: 0;
}

.toc-sidebar-list,
.toc-recent-posts .wp-block-latest-posts__list,
.toc-recent-comments .wp-block-latest-comments__list,
.toc-archives .wp-block-archives-list,
.toc-archives .wp-block-archives-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-sidebar-list li,
.toc-recent-posts .wp-block-latest-posts__list li,
.toc-recent-comments .wp-block-latest-comments__list li,
.toc-archives .wp-block-archives-list li {
  margin: 0;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--toc-border);
}

.toc-sidebar-list li:last-child,
.toc-recent-posts .wp-block-latest-posts__list li:last-child,
.toc-recent-comments .wp-block-latest-comments__list li:last-child,
.toc-archives .wp-block-archives-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.toc-recent-posts .wp-block-latest-posts__post-title,
.toc-recent-comments .wp-block-latest-comments__comment-link,
.toc-recent-comments .wp-block-latest-comments__comment-author,
.toc-archives .wp-block-archives-list a,
.toc-cat-list a {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--toc-dark);
  text-decoration: none;
}

.toc-recent-posts .wp-block-latest-posts__post-title:hover,
.toc-recent-comments a:hover,
.toc-archives .wp-block-archives-list a:hover,
.toc-cat-list a:hover {
  color: var(--toc-accent);
  text-decoration: underline;
}

.toc-recent-posts .wp-block-latest-posts__post-date,
.toc-recent-posts .wp-block-latest-posts__post-author,
.toc-recent-comments .wp-block-latest-comments__comment-date,
.toc-recent-comments .wp-block-latest-comments__comment-excerpt {
  display: none;
}

.toc-recent-comments .wp-block-latest-comments__no-comments,
.toc-recent-comments .wp-block-latest-comments__no-comments p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--toc-muted);
  font-style: italic;
}

.toc-archives .wp-block-archives-list a {
  font-weight: 500;
}

.pagination {
  margin-top: var(--space-xl);
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--toc-border);
  background: var(--toc-surface);
  font-size: 0.85rem;
}

.pagination a:hover {
  background: var(--toc-accent-soft);
  border-color: var(--toc-accent);
  text-decoration: none;
}

.empty-state {
  padding: var(--space-2xl);
  text-align: center;
  color: var(--toc-muted);
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.site-footer {
  margin-top: var(--space-2xl);
  padding: var(--space-2xl) 0;
  background: var(--toc-dark);
  color: #b8b8b8;
  font-size: 0.875rem;
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-brand {
  margin: 0;
  font-size: 1rem;
  color: #f0f0f0;
}

.footer-disclaimer {
  margin: 0 auto;
  max-width: 52ch;
  line-height: 1.6;
  color: #9a9a9a;
}

.footer-copy { margin: 0; color: #777; }

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a { color: #e0e0e0; font-weight: 500; }
.footer-nav a:hover { color: #fff; }

/* -------------------------------------------------------------------------- */
/* WordPress block / misc overrides                                           */
/* -------------------------------------------------------------------------- */

.wp-block-search__button,
button[type="submit"] {
  border-radius: var(--radius-sm);
}

.custom-logo-link {
  display: inline-block;
  line-height: 0;
}
