/* Shoqata Kulturore e Shpenadisë — LEKË DUKAGJINI
   Phase 1 Coming Soon — Albanian-inspired palette */

:root,
[data-theme="light"] {
  --bg-page: #ffffff;
  --bg-surface: #ffffff;
  --bg-elevated: #ffffff;
  --text-primary: #0d0d0d;
  --text-secondary: #444444;
  --text-inverse: #ffffff;
  --border: #e8e6e2;
  --header-bg: rgba(255, 255, 255, 0.94);
  --card-bg: #ffffff;
  --input-bg: #ffffff;
}

:root {
  --color-brand: #0055a4;
  --color-brand-dark: #003d78;
  --color-brand-light: #1a75c4;
  --color-black: #0d0d0d;
  --color-white: #ffffff;
  --color-gold: #c9a227;
  --color-gold-muted: #b8922a;

  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.18);

  --transition: 0.2s ease;
  --container: min(1120px, 92vw);
}

[data-theme="light"] {
  --bg-page: #ffffff;
  --bg-surface: var(--color-white);
  --bg-elevated: var(--color-white);
  --bg-hero-overlay: linear-gradient(
    105deg,
    rgba(13, 13, 13, 0.38) 0%,
    rgba(13, 13, 13, 0.12) 45%,
    rgba(13, 13, 13, 0.22) 100%
  );
  --text-primary: var(--color-black);
  --text-secondary: #444444;
  --text-inverse: var(--color-white);
  --border: #e0ddd8;
  --header-bg: rgba(255, 255, 255, 0.92);
  --card-bg: var(--color-white);
  --input-bg: var(--color-white);
}

[data-theme="dark"] {
  --bg-page: #0d0d0d;
  --bg-surface: #1a1a1a;
  --bg-elevated: #242424;
  --bg-hero-overlay: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 45%,
    rgba(0, 0, 0, 0.35) 100%
  );
  --text-primary: #f5f5f5;
  --text-secondary: #b0b0b0;
  --text-inverse: var(--color-white);
  --border: #333333;
  --header-bg: rgba(13, 13, 13, 0.94);
  --card-bg: #1a1a1a;
  --input-bg: #242424;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  transition: background var(--transition), color var(--transition);
}

main {
  background: var(--bg-page);
}

.section {
  background: var(--bg-page);
}

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

a {
  color: var(--color-brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-brand-light);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--color-brand);
  color: var(--color-white);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  min-width: 0;
  flex: 1;
  max-width: 36rem;
}

.brand:hover .brand-primary {
  color: var(--color-brand);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand-primary {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.brand-secondary {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  line-height: 1.3;
}

.brand-ngo,
.brand-location {
  font-size: 0.68rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.brand-ngo {
  font-weight: 600;
}

.brand-logo,
.footer-logo {
  height: auto;
  display: block;
  max-height: 48px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switcher {
  display: flex;
  gap: 2px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 3px;
}

.lang-btn {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.6rem;
  border: none;
  border-radius: calc(var(--radius-md) - 2px);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.lang-btn:hover {
  color: var(--text-primary);
}

.lang-btn.is-active,
.lang-btn[aria-pressed="true"],
a.lang-btn.is-active,
a.lang-btn[aria-current="true"] {
  background: var(--color-brand);
  color: var(--color-white);
}

a.lang-btn {
  text-decoration: none;
  display: inline-block;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1rem;
  transition: border-color var(--transition), background var(--transition);
}

.theme-toggle:hover {
  border-color: var(--color-gold);
}

[data-theme="light"] .theme-icon--dark,
[data-theme="dark"] .theme-icon--light {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-black);
  background-image: var(--ld-hero-desktop, url("../assets/images/lekdukagjini.jpg"));
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-hero-overlay);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 5rem;
  color: var(--text-inverse);
  max-width: 44rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.hero-official {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 0.35rem;
}

.hero-ngo {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  opacity: 0.92;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 0.5rem;
}

.hero-identity {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 0.65rem;
}

.hero-location {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
  opacity: 0.95;
}

.hero-pillars {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  margin: 0 0 1.25rem;
  opacity: 0.95;
}

.hero-mission {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.65;
  margin: 0 0 1.75rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.95;
  max-width: 38rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-inverse);
  background: rgba(0, 85, 164, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
  opacity: 0.92;
}

.hero-sub {
  font-size: 1rem;
  margin: 0;
  opacity: 0.82;
  line-height: 1.7;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.section-title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, var(--color-brand), var(--color-gold));
  margin-top: 0.75rem;
  border-radius: 2px;
}

.section-intro {
  color: var(--text-secondary);
  margin: 0 0 2rem;
  max-width: 36rem;
}

/* Features */
.features {
  background: var(--bg-page);
  border-block: none;
}

.ld-admin-edit {
  margin: 0 0 1rem;
  font-size: 0.875rem;
}

.ld-admin-edit a {
  color: var(--color-brand);
  font-weight: 600;
}

.public-news-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem 1.5rem;
  align-items: start;
  max-width: 66rem;
  margin-inline: auto;
}

.public-news-featured {
  display: grid;
  gap: 1rem;
  min-width: 0;
  width: 100%;
}

.public-news-title {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.public-news-toggle {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.public-news-toggle:hover {
  color: var(--color-brand);
}

.public-news-excerpt {
  margin: 0.75rem 0 0;
}

.public-news-full {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.public-news-more-btn {
  margin-top: 0.65rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-brand);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.public-news-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.public-news-thumb {
  width: 4.25rem;
  height: 4.25rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-elevated);
}

.public-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-news-thumb.is-active {
  border-color: var(--color-gold);
}

.public-news-older {
  display: grid;
  gap: 0.75rem;
}

.public-news-older-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.public-news-teaser {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.65rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
}

.public-news-teaser > div {
  flex: 1;
  min-width: 0;
}

.public-news-teaser-img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.public-news-teaser strong {
  display: block;
  font-size: 0.85rem;
  line-height: 1.3;
}

.public-news-teaser p {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.public-news-card .feed-card-photo {
  margin-bottom: 0.25rem;
}

.public-news-video {
  margin: 0.65rem 0 0;
}

.public-news-video video {
  display: block;
  width: 100%;
  max-height: 420px;
  background: #111;
  border-radius: var(--radius-md);
}

.home-feed-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem 1.5rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.home-panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.15rem 1.25rem 1.1rem;
  min-width: 0;
}

.home-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.home-panel-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}

.home-panel-more {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-brand);
  text-decoration: none;
}

.home-panel-more:hover {
  text-decoration: underline;
}

.home-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.home-news-item,
.home-event-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.home-news-item:hover .home-news-item-title,
.home-event-item:hover .home-event-title {
  color: var(--color-brand);
}

.home-news-thumb {
  width: 4.25rem;
  height: 4.25rem;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: var(--bg-elevated);
}

.home-news-thumb--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  object-fit: unset;
  background: #111;
  border: 1px solid var(--color-gold-muted);
}

.home-news-thumb--placeholder img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.home-news-copy,
.home-event-item {
  min-width: 0;
}

.home-news-item-title,
.home-event-title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
}

.home-event-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.35rem 0;
}

.home-event-date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-gold);
}

.home-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.home-post-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  transition: transform var(--transition), border-color var(--transition);
}

.home-post-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-gold-muted);
}

.home-post-photo {
  margin: 0;
  padding: 0.85rem 0.85rem 0.25rem;
  background: var(--card-bg);
}

.home-post-photo img {
  display: block;
  width: 100%;
  height: 10.5rem;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-sm);
}

.home-post-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10.5rem;
  min-height: 10.5rem;
  padding: 0.85rem;
  background: var(--card-bg);
  border-bottom: 0;
}

.home-post-photo--placeholder img {
  width: auto;
  height: 5.75rem;
  max-height: 5.75rem;
  object-fit: contain;
}

.feed-card-photo.home-post-photo--placeholder {
  margin: 0.5rem 0 0;
}

.home-posts-head {
  align-items: flex-end;
  margin: 0 0 1.25rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.home-posts-head .section-title {
  margin: 0;
}

.home-post-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  padding: 0.9rem 1rem 1.1rem;
}

.feed-edit-menu {
  margin-left: auto;
  position: relative;
  flex-shrink: 0;
}

.feed-edit-menu-toggle {
  list-style: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-brand);
  border: 1px solid var(--color-brand);
  border-radius: 999px;
  padding: 0.12rem 0.65rem;
  line-height: 1.45;
  user-select: none;
}

.feed-edit-menu-toggle::-webkit-details-marker,
.feed-edit-menu-toggle::marker {
  display: none;
  content: "";
}

.feed-edit-menu[open] .feed-edit-menu-toggle {
  background: var(--color-brand);
  color: var(--color-white);
}

.feed-edit-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  z-index: 4;
  min-width: 8.5rem;
  padding: 0.4rem 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.feed-edit-menu .feed-delete-form {
  margin-left: 0;
}

.feed-edit-menu .feed-delete {
  width: 100%;
  text-align: left;
  padding: 0.25rem 0.15rem;
}

.features-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.features-grid > li {
  min-width: 0;
  display: flex;
}

.features-grid > li > .feature-card {
  flex: 1;
  width: 100%;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

a.feature-card {
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold-muted);
}

.feature-icon {
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 0.1rem;
}

.feature-icon svg {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.feature-title {
  font-weight: 600;
  line-height: 1.3;
}

.feature-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin: 0 0 0.35rem;
}

.contact-link {
  font-weight: 500;
  font-size: 1.05rem;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-text {
  margin: 0;
  color: var(--text-secondary);
}

.contact-cta {
  margin: 1.5rem 0 0;
}

.info-page-inner,
.info-feed {
  max-width: 40rem;
  margin-inline: auto;
}

.info-feed-list {
  display: grid;
  gap: 1rem;
}

.info-feed .feed-card-time {
  display: block;
  margin: 0 0 0.35rem;
}

.info-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 0 1.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.info-events {
  margin: 0.75rem 0 0;
}

.info-form-title {
  margin: 2.25rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.donations-page {
  max-width: 40rem;
  margin-inline: auto;
}

.donations-edit-bar {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 1rem;
}

.donations-page .entry-content {
  font-size: 1.05rem;
  line-height: 1.55;
}

.donations-page .entry-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 1.75rem 0 0.6rem;
}

.donors-page {
  max-width: 46rem;
  margin-inline: auto;
}

.donors-admin-bar {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 1.25rem;
}

.donors-sum {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem 1.5rem 2.25rem;
  text-align: center;
  margin: 0 0 2.5rem;
}

.donors-sum-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 0.85rem;
}

.donors-sum-amount {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.15;
}

.donors-sum-note,
.donors-sum-goal {
  color: var(--text-secondary);
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
}

.donors-sum-goal {
  margin-top: 0.35rem;
}

.donors-heading {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.donors-hint {
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
  max-width: 40rem;
  line-height: 1.5;
}

.donors-names {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

.donors-names li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}

.donors-names-anon {
  grid-column: 1 / -1;
  font-style: italic;
  color: var(--text-secondary);
}

.donors-editor label {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.donors-editor input[type="number"],
.donors-editor input[type="text"],
.donors-editor select,
.donors-editor textarea {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--input-bg);
  color: var(--text-primary);
}

.donors-editor textarea {
  min-height: 4.5rem;
  resize: vertical;
}

.donors-table-wrap {
  overflow-x: auto;
  margin: 0 0 1rem;
}

.donors-admin-table {
  width: 100%;
  border-collapse: collapse;
}

.donors-admin-table th {
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.4rem 0.35rem;
}

.donors-admin-table td {
  padding: 0.35rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.donors-delete {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .donors-names {
    grid-template-columns: 1fr;
  }
}

.donations-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.donations-editor .wp-editor-wrap {
  margin: 0.35rem 0 1rem;
}

.member-mini-form textarea {
  width: 100%;
  min-height: 4.5rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--input-bg);
  color: var(--text-primary);
  resize: vertical;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links--footer {
  margin-top: 0.75rem;
}

.footer-contact {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
}

.footer-contact-link {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-contact-link:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.footer-contact-address {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.45;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-primary);
  transition: background var(--transition), color var(--transition),
    border-color var(--transition);
}

.social-link:hover {
  background: var(--color-brand);
  color: var(--color-white);
  border-color: var(--color-brand);
}

/* Newsletter */
.newsletter {
  background: var(--bg-page);
  border-top: none;
}

.newsletter-inner {
  max-width: 32rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.newsletter-input {
  flex: 1 1 200px;
  min-width: 0;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--input-bg);
  color: var(--text-primary);
  transition: border-color var(--transition);
}

.newsletter-input:focus {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
  border-color: var(--color-brand);
}

.btn {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary {
  background: var(--color-brand);
  color: var(--color-white);
}

.btn-primary:hover:not(:disabled) {
  background: var(--color-brand-dark);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.form-message {
  margin-top: 1rem;
  font-size: 0.95rem;
  min-height: 1.4em;
}

.form-message--success {
  color: #1a7f4b;
}

[data-theme="dark"] .form-message--success {
  color: #5ecf8a;
}

.form-message--error {
  color: var(--color-brand);
}

.form-message--warning {
  color: var(--color-gold);
}

/* Footer — dark band only at the bottom (like reference layout) */
.site-footer {
  background: #1e1e1e;
  color: #cccccc;
  padding: 2.5rem 0;
}

[data-theme="dark"] .site-footer {
  background: var(--color-black);
}

.footer-inner {
  text-align: center;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  color: var(--color-white);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-brand-primary {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.footer-brand-secondary {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.footer-brand-ngo,
.footer-brand-meta,
.footer-brand-pillars {
  font-size: 0.75rem;
  opacity: 0.75;
}

.footer-brand-ngo {
  font-weight: 600;
}

.footer-brand-pillars {
  color: var(--color-gold);
  opacity: 0.9;
}

.footer-domain {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  opacity: 0.45;
  letter-spacing: 0.04em;
}

.lang-switcher--footer {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.lang-switcher--footer .lang-btn {
  color: #aaaaaa;
}

.lang-switcher--footer .lang-btn.is-active,
.lang-switcher--footer .lang-btn[aria-pressed="true"] {
  background: var(--color-brand);
  color: var(--color-white);
}

.footer-nav {
  margin-bottom: 1rem;
}

.footer-link {
  color: #aaaaaa;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--color-gold);
}

.footer-sep {
  margin: 0 0.5rem;
  opacity: 0.4;
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.7;
}

/* WordPress forms — keep association styling */
.ld-form-wrap {
  margin-top: 1.5rem;
  max-width: 32rem;
}

.ld-form-wrap input[type="text"],
.ld-form-wrap input[type="email"],
.ld-form-wrap textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
}

.ld-form-wrap .wpcf7-submit,
.ld-form-wrap input[type="submit"] {
  background: var(--color-brand);
  color: var(--color-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
}

/* Responsive — portrait hero on phones / narrow screens */
@media (max-width: 1000px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .public-news-split,
  .home-feed-split,
  .home-posts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-bg {
    background-image: var(--ld-hero-mobile, url("../assets/images/lekdukagjini-mobile-vertical.jpg"));
    background-position: center center;
    background-size: cover;
  }
}

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

  .header-inner {
    flex-wrap: wrap;
  }

  .brand {
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    min-height: 70vh;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .btn-primary {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
  }
}

/* Member header (login / dropdown) */
.member-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.member-nav-link {
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-secondary);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: color var(--transition), border-color var(--transition);
}

.member-nav-link:hover {
  color: var(--text-primary);
  border-color: var(--color-gold);
}

.member-nav-link--primary {
  background: var(--color-brand);
  color: var(--color-white);
  border-color: var(--color-brand);
}

.member-nav-link--primary:hover {
  color: var(--color-white);
  filter: brightness(1.08);
}

.member-menu {
  position: relative;
}

.member-menu-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  padding: 0.2rem 0.45rem 0.2rem 0.2rem;
  cursor: pointer;
  font: inherit;
  color: var(--text-primary);
}

.member-menu-user {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.member-avatar {
  border-radius: 50%;
  width: 28px;
  height: 28px;
}

.member-menu-name {
  font-size: 0.8125rem;
  font-weight: 600;
  max-width: 8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-menu-caret {
  font-size: 0.65rem;
  opacity: 0.7;
}

.member-menu-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 12rem;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md, 0 8px 24px rgba(0, 0, 0, 0.12));
  z-index: 50;
}

.member-menu-dropdown a {
  display: block;
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  color: var(--text-primary);
  text-decoration: none;
}

.member-menu-dropdown a:hover {
  background: var(--bg-muted, rgba(0, 0, 0, 0.04));
}

.member-menu-logout {
  border-top: 1px solid var(--border);
  margin-top: 0.25rem;
  padding-top: 0.5rem !important;
}

.member-panel {
  padding: 2.5rem 0 4rem;
}

.member-panel--narrow {
  max-width: 28rem;
}

.member-panel--forum .bbp-breadcrumb,
.member-panel--forum .bbp-template-notice {
  margin-bottom: 1rem;
}

.member-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin-top: 1.5rem;
}

.member-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  background: var(--bg-elevated);
}

.member-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.member-card h2,
.member-card-head h2 {
  font-size: 1.05rem;
  margin: 0;
}

.member-card-edit {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-brand);
  text-decoration: none;
  border: 1px solid var(--color-brand);
  border-radius: 999px;
  padding: 0.12rem 0.65rem;
  line-height: 1.45;
}

.member-card-edit:hover,
.member-card-edit:focus-visible {
  background: var(--color-brand);
  color: var(--color-white);
}

.member-mini-form {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.member-mini-form label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.member-mini-form input[type="text"],
.member-mini-form input[type="date"],
.member-mini-form input[type="file"] {
  width: 100%;
  max-width: 100%;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--input-bg);
  color: var(--text-primary);
}

.member-mini-form .btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  justify-self: start;
}

.feed-composer:target,
.member-mini-form:target {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
}

.member-list {
  margin: 0;
  padding-left: 1.1rem;
}

.member-list li {
  margin-bottom: 0.35rem;
}

.member-notice {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.member-notice--success {
  border-color: var(--color-brand);
}

.member-notice--error {
  border-color: #d63638;
}

.feed-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: start;
}

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

.member-grid--side {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.feed-composer {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  padding: 1.25rem 1.25rem 1rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.feed-composer--official {
  border-color: var(--color-gold);
}

.feed-composer-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.feed-composer-lead {
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.feed-title-field {
  display: grid;
  gap: 0.3rem;
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.feed-title-field input {
  width: 100%;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--input-bg);
  color: var(--text-primary);
}

.feed-composer .wp-editor-wrap,
.feed-edit-form .wp-editor-wrap {
  width: 100%;
}

.feed-composer .wp-media-buttons,
.feed-edit-form .wp-media-buttons {
  margin: 0 0 0.5rem;
}

.feed-composer .wp-media-buttons .button,
.feed-edit-form .wp-media-buttons .button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--color-brand);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  color: var(--color-brand);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.feed-composer .mce-edit-area iframe,
.feed-edit-form .mce-edit-area iframe {
  min-height: 220px;
}

.feed-composer .wp-editor-tabs,
.feed-edit-form .wp-editor-tabs {
  float: right;
}

.feed-composer .wp-switch-editor,
.feed-edit-form .wp-switch-editor {
  font-size: 0.8rem;
}

.info-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.5rem;
}

.feed-composer-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.feed-composer-form {
  flex: 1;
  min-width: 0;
}

.feed-composer-form .wp-editor-wrap {
  width: 100%;
}

.feed-composer-form .mce-tinymce {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md);
  box-shadow: none !important;
}

.feed-composer-form .wp-editor-area {
  background: var(--input-bg);
  color: var(--text-primary);
}

.feed-composer-form textarea,
.feed-comment-form textarea {
  width: 100%;
  resize: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: var(--input-bg);
  color: var(--text-primary);
  min-height: 4.5rem;
}

.feed-composer-form textarea:focus,
.feed-comment-form textarea:focus {
  outline: 2px solid var(--color-brand);
  outline-offset: 1px;
}

.feed-composer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.feed-photo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand);
}

.feed-photo-btn input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.feed-official {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.feed-submit {
  margin-left: auto;
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem;
}

.feed-composer-preview {
  margin-top: 0.75rem;
  position: relative;
}

.feed-composer-preview img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 240px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.feed-preview-remove {
  margin-top: 0.4rem;
  background: none;
  border: 0;
  color: var(--text-secondary);
  cursor: pointer;
  font: inherit;
  font-size: 0.8125rem;
  text-decoration: underline;
}

.feed-avatar {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.feed-avatar--sm {
  width: 28px;
  height: 28px;
}

.feed-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  padding: 1rem 1.1rem 0.85rem;
  margin-bottom: 1rem;
}

.feed-card--official {
  border-color: var(--color-gold);
}

.feed-pending {
  margin-bottom: 1.5rem;
}

.feed-pending-title {
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}

.feed-card--pending {
  border-style: dashed;
  opacity: 0.96;
}

.feed-badge--pending {
  color: #7a5b00;
  background: rgba(201, 162, 39, 0.28);
}

.feed-composer-hint {
  margin: 0.65rem 0 0;
}

.feed-review-form {
  display: inline-flex;
}

.feed-approve {
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
}

.feed-card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.feed-card-head .feed-avatar {
  width: 40px;
  height: 40px;
}

.feed-card-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.feed-card-name {
  font-size: 0.95rem;
}

.feed-card-time {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.feed-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-brand-dark);
  background: rgba(201, 162, 39, 0.18);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.feed-card-body {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.feed-card-body p:last-child {
  margin-bottom: 0;
}

.feed-card-photo {
  margin: 0.75rem 0 0;
  text-align: center;
}

.feed-card-photo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 420px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-md);
}

.feed-card-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.7rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.feed-edit-form {
  margin-top: 0.75rem;
}

.feed-edit-form .wp-editor-wrap {
  width: 100%;
}

.feed-delete-form {
  margin-left: auto;
}

.feed-delete {
  background: none;
  border: 0;
  color: #d63638;
  cursor: pointer;
  font: inherit;
  font-size: 0.8125rem;
}

.feed-comments {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.feed-comment {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.875rem;
}

.feed-comment p {
  margin: 0.15rem 0 0;
}

.feed-comment-form {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  margin: 0.5rem 0 0.25rem;
}

.feed-comment-form textarea {
  min-height: 2.4rem;
  flex: 1;
}

.feed-comment-form .btn {
  padding: 0.4rem 0.8rem;
  font-size: 0.8125rem;
}

.feed-pager {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin: 0.5rem 0 1rem;
}

.feed-pager-link {
  display: inline-flex;
  min-width: 2rem;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.feed-pager-link[aria-current="page"] {
  background: var(--color-brand);
  color: var(--color-white);
  border-color: var(--color-brand);
}

.member-form label {
  display: block;
  margin-bottom: 0.85rem;
}

.member-form label span {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.member-form input,
.member-form textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font: inherit;
  background: var(--input-bg, var(--bg));
  color: var(--text-primary);
}

.member-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.member-form label em {
  font-style: normal;
  font-weight: 400;
  color: var(--text-secondary);
}

.contact-form {
  position: relative;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

.ld-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 36rem) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

.member-hint {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.member-form-footer {
  margin-top: 1.25rem;
  font-size: 0.875rem;
}

.member-profile dt {
  font-weight: 600;
  margin-top: 0.75rem;
}

.member-profile dd {
  margin: 0.15rem 0 0;
}

#loginform {
  margin-top: 1rem;
}

#loginform label {
  display: block;
  margin-bottom: 0.65rem;
}

#loginform input[type="text"],
#loginform input[type="password"] {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

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

@media (max-width: 640px) {
  .member-nav {
    order: 3;
    width: 100%;
    justify-content: flex-end;
  }

  .feed-composer-row {
    flex-direction: column;
  }

  .feed-submit {
    margin-left: 0;
    width: 100%;
  }

  .feed-comment-form {
    flex-direction: column;
    align-items: stretch;
  }

  .header-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}