/* =====================================================================
   Your Grants Mega Menu — Header v5
   Mobile-first from 320px, desktop mega menu at 992px+
   ===================================================================== */

/* ── Wrapper ── */
.gud-hdr__your-grants {
  position: relative;
  display: flex;
  align-items: center;
}

/* ── Trigger Button ── */
.gud-hdr__yg-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: none;
  border: 1.5px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--grantaura-gray-800, #1f2937);
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.gud-hdr__yg-trigger:hover,
.gud-hdr__yg-trigger:focus-visible {
  color: var(--grantaura-primary, #5a3b8c);
  background: rgba(90, 59, 140, 0.07);
  border-color: rgba(90, 59, 140, 0.18);
  outline: none;
}

.gud-hdr__yg-trigger:active {
  background: rgba(90, 59, 140, 0.12);
}

.gud-hdr__your-grants.is-open .gud-hdr__yg-trigger {
  color: var(--grantaura-primary, #5a3b8c);
  background: rgba(90, 59, 140, 0.09);
  border-color: rgba(90, 59, 140, 0.22);
}

.gud-hdr__yg-trigger-icon {
  font-size: 13px;
  color: var(--grantaura-primary, #5a3b8c);
}

/* Desktop label hidden on mobile, mobile label hidden on desktop */
.gud-hdr__yg-trigger-label {
  display: none;
}

.gud-hdr__yg-trigger-label--mobile {
  display: inline;
}

/* Trigger badge (matched count) */
.gud-hdr__yg-trigger-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--grantaura-primary, #5a3b8c);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  line-height: 1;
}

/* ── Overlay (mobile only) ── */
.gud-hdr__yg-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.gud-hdr__your-grants.is-open .gud-hdr__yg-overlay {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* ── Panel ── */
.gud-hdr__yg-panel {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gud-hdr__your-grants.is-open .gud-hdr__yg-panel {
  transform: translateY(0);
}

.gud-hdr__yg-panel[hidden] {
  display: none;
}

/* ── Panel Header (mobile) ── */
.gud-hdr__yg-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.gud-hdr__yg-panel-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
}

.gud-hdr__yg-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: #f3f4f6;
  border-radius: 999px;
  cursor: pointer;
  color: #6b7280;
  font-size: 14px;
  transition: background 0.15s ease, color 0.15s ease;
}

.gud-hdr__yg-close:hover,
.gud-hdr__yg-close:focus-visible {
  background: #e5e7eb;
  color: #111827;
  outline: none;
}

/* ── Body ── */
.gud-hdr__yg-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  flex: 1;
  overflow-y: auto;
}

/* ── Columns ── */
.gud-hdr__yg-col {
  padding: 16px;
}

.gud-hdr__yg-col + .gud-hdr__yg-col {
  border-top: 1px solid #f0f0f5;
}

/* ── Column A: Hero ── */
.gud-hdr__yg-hero {
  background: linear-gradient(158deg, rgba(90, 59, 140, 0.06) 0%, rgba(247, 176, 107, 0.08) 100%);
  border: 1px solid rgba(90, 59, 140, 0.1);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Hero badges */
.gud-hdr__yg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

.gud-hdr__yg-hero-badge--ready {
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
}

.gud-hdr__yg-hero-badge--incomplete {
  background: rgba(245, 158, 11, 0.12);
  color: #92400e;
}

.gud-hdr__yg-hero-badge--guest {
  background: rgba(90, 59, 140, 0.1);
  color: #4e327d;
}

.gud-hdr__yg-hero-title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.gud-hdr__yg-hero-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #4b5563;
}

/* Primary CTA */
.gud-hdr__yg-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: linear-gradient(118deg, #5a3b8c 0%, #7248b4 52%, #8454cc 100%);
  color: #ffffff !important;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(90, 59, 140, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.gud-hdr__yg-hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 100%);
  pointer-events: none;
}

.gud-hdr__yg-hero-cta:hover,
.gud-hdr__yg-hero-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(90, 59, 140, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  outline: none;
}

.gud-hdr__yg-hero-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(90, 59, 140, 0.24);
}

.gud-hdr__yg-cta-arrow {
  font-size: 12px;
  transition: transform 0.18s ease;
}

.gud-hdr__yg-hero-cta:hover .gud-hdr__yg-cta-arrow {
  transform: translateX(3px);
}

/* Secondary CTA */
.gud-hdr__yg-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(90, 59, 140, 0.06);
  border: 1px solid rgba(90, 59, 140, 0.14);
  border-radius: 10px;
  color: var(--grantaura-primary, #5a3b8c) !important;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.gud-hdr__yg-hero-secondary:hover,
.gud-hdr__yg-hero-secondary:focus-visible {
  background: rgba(90, 59, 140, 0.1);
  border-color: rgba(90, 59, 140, 0.22);
  outline: none;
}

.gud-hdr__yg-hero-secondary i {
  font-size: 10px;
}

/* Guest auth alternative */
.gud-hdr__yg-hero-auth-alt {
  font-size: 12px;
  color: #6b7280;
}

.gud-hdr__yg-hero-auth-alt a {
  color: var(--grantaura-primary, #5a3b8c);
  font-weight: 600;
  text-decoration: none;
}

.gud-hdr__yg-hero-auth-alt a:hover {
  text-decoration: underline;
}

/* Trust cues */
.gud-hdr__yg-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-top: 2px;
}

.gud-hdr__yg-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
  white-space: nowrap;
}

.gud-hdr__yg-trust-item i {
  font-size: 10px;
  color: #16a34a;
}

/* ── Column Head (title + view-all inline) ── */
.gud-hdr__yg-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.gud-hdr__yg-col-title {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gud-hdr__yg-col-title i {
  font-size: 11px;
  color: var(--grantaura-primary, #5a3b8c);
}

/* View all link */
.gud-hdr__yg-view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--grantaura-primary, #5a3b8c) !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: gap 0.15s ease;
}

.gud-hdr__yg-view-all:hover,
.gud-hdr__yg-view-all:focus-visible {
  gap: 7px;
  text-decoration: underline !important;
  outline: none;
}

.gud-hdr__yg-view-all i {
  font-size: 9px;
  transition: transform 0.15s ease;
}

.gud-hdr__yg-view-all:hover i {
  transform: translateX(2px);
}

/* ── Scrollable area ── */
.gud-hdr__yg-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(90, 59, 140, 0.15) transparent;
}

.gud-hdr__yg-scroll::-webkit-scrollbar {
  width: 4px;
}

.gud-hdr__yg-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.gud-hdr__yg-scroll::-webkit-scrollbar-thumb {
  background: rgba(90, 59, 140, 0.15);
  border-radius: 4px;
}

.gud-hdr__yg-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(90, 59, 140, 0.28);
}

/* ── Grant List ── */
.gud-hdr__yg-list {
  list-style: none;
  margin: 0;
  padding: 0 2px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gud-hdr__yg-item {
  margin: 0;
  padding: 0;
}

/* ── Grant Card (image + urgency-first) ── */
.gud-hdr__yg-item-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  text-decoration: none !important;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.gud-hdr__yg-item-link:hover,
.gud-hdr__yg-item-link:focus-visible {
  border-color: rgba(90, 59, 140, 0.28);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(90, 59, 140, 0.08);
  outline: none;
}

/* Image container */
.gud-hdr__yg-item-img {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: #e5e7eb;
  flex-shrink: 0;
}

.gud-hdr__yg-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Amount overlay on image */
.gud-hdr__yg-item-amount {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 150, 105, 0.9);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  padding: 1px 0;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/* Body: signals → tagline → name (hierarchy: triggers first, name last) */
.gud-hdr__yg-item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Signals row: tier, category, deadline */
.gud-hdr__yg-item-signals {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

/* Tagline — the emotional hook, most prominent text */
.gud-hdr__yg-item-tagline {
  font-size: 12.5px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gud-hdr__yg-item-link:hover .gud-hdr__yg-item-tagline {
  color: var(--grantaura-primary, #5a3b8c);
}

/* Grant name — de-emphasized, tertiary info */
.gud-hdr__yg-item-name {
  font-size: 10.5px;
  font-weight: 500;
  color: #9ca3af;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Category chip */
.gud-hdr__yg-item-cat {
  display: inline-flex;
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 600;
  background: rgba(90, 59, 140, 0.08);
  color: #5a3b8c;
  line-height: 1.3;
  white-space: nowrap;
}

/* Chevron affordance */
.gud-hdr__yg-item-chevron {
  font-size: 10px;
  color: #d1d5db;
  flex-shrink: 0;
  margin-top: 4px;
  transition: transform 0.15s ease, color 0.15s ease;
}

.gud-hdr__yg-item-link:hover .gud-hdr__yg-item-chevron {
  transform: translateX(2px);
  color: var(--grantaura-primary, #5a3b8c);
}

/* Match tier badges */
.gud-hdr__yg-item-tier {
  display: inline-flex;
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.gud-hdr__yg-tier--eligible {
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
}

.gud-hdr__yg-tier--strong {
  background: rgba(59, 130, 246, 0.12);
  color: #1e40af;
}

.gud-hdr__yg-tier--good {
  background: rgba(245, 158, 11, 0.12);
  color: #92400e;
}

.gud-hdr__yg-tier--basic {
  background: rgba(107, 114, 128, 0.1);
  color: #4b5563;
}

/* Deadline chips — urgency is the loudest signal */
.gud-hdr__yg-deadline-chip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 700;
  background: rgba(107, 114, 128, 0.1);
  color: #4b5563;
  line-height: 1.3;
  white-space: nowrap;
}

.gud-hdr__yg-deadline-chip i {
  font-size: 8px;
}

.gud-hdr__yg-deadline--urgent {
  background: rgba(245, 158, 11, 0.14);
  color: #92400e;
}

.gud-hdr__yg-deadline--critical {
  background: rgba(239, 68, 68, 0.12);
  color: #991b1b;
  animation: ygDeadlinePulse 2s ease-in-out infinite;
}

@keyframes ygDeadlinePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* Empty state */
.gud-hdr__yg-empty {
  margin: 0;
  padding: 14px;
  font-size: 12.5px;
  color: #9ca3af;
  text-align: center;
  background: #f9fafb;
  border-radius: 10px;
  border: 1px dashed #e5e7eb;
}

.gud-hdr__yg-view-all:hover i {
  transform: translateX(2px);
}

/* ── Auth buttons responsive hiding ── */
/* On small screens (< 768px), hide sign-in and add-business buttons
   since they are accessible through the mobile drawer and Your Grants menu */
@media (max-width: 767px) {
  .gud-hdr__auth {
    display: none;
  }
}

/* =====================================================================
   Tablet: 768px+
   ===================================================================== */
@media (min-width: 768px) {
  .gud-hdr__yg-trigger {
    padding: 6px 12px;
    font-size: 14px;
  }

  .gud-hdr__yg-trigger-label--mobile {
    display: none;
  }

  .gud-hdr__yg-trigger-label {
    display: inline;
  }

  .gud-hdr__yg-col {
    padding: 18px;
  }

  .gud-hdr__yg-hero-title {
    font-size: 18px;
  }
}

/* =====================================================================
   Desktop: 992px+ — Mega Menu Panel
   ===================================================================== */
@media (min-width: 992px) {
  .gud-hdr__yg-overlay {
    display: none !important;
  }

  .gud-hdr__yg-panel {
    position: fixed;
    top: var(--grantaura-main-header-height, 56px);
    right: 16px;
    left: auto;
    bottom: auto;
    width: min(780px, calc(100vw - 32px));
    max-width: 780px;
    background: linear-gradient(180deg, #f8f8fc 0%, #ffffff 100%);
    border: 1px solid #e3e7f1;
    border-radius: 18px;
    box-shadow:
      0 24px 64px rgba(30, 25, 53, 0.14),
      0 8px 24px rgba(30, 25, 53, 0.06),
      0 0 0 1px rgba(90, 59, 140, 0.04);
    overflow: hidden;
    margin-top: 8px;
    transform: translateY(6px) scale(0.985);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.22s ease,
      transform 0.26s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0s linear 0.26s;
    max-height: calc(100vh - var(--grantaura-main-header-height, 56px) - 24px);
    flex-direction: column;
    z-index: 1001;
  }

  .gud-hdr__your-grants.is-open .gud-hdr__yg-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .gud-hdr__yg-panel[hidden] {
    display: flex;
  }

  /* Hover bridge — not needed with fixed positioning; hover delay handles gap */
  .gud-hdr__yg-panel::before {
    display: none;
  }

  /* Caret — hidden with fixed positioning; proximity + animation indicate origin */
  .gud-hdr__yg-panel::after {
    display: none;
  }

  /* Hide mobile header on desktop */
  .gud-hdr__yg-panel-header {
    display: none;
  }

  /* 3-column grid */
  .gud-hdr__yg-body {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    overflow: visible;
  }

  .gud-hdr__yg-col {
    padding: 18px;
  }

  .gud-hdr__yg-col + .gud-hdr__yg-col {
    border-top: none;
    border-left: 1px solid #f0f0f5;
  }

  /* Hero column — purple gradient background on desktop */
  .gud-hdr__yg-col--hero {
    padding: 0;
  }

  .gud-hdr__yg-hero {
    background: linear-gradient(172deg, #4b2393 0%, #6034b5 52%, #6e43c7 100%);
    border: none;
    border-radius: 0;
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
    gap: 12px;
  }

  .gud-hdr__yg-hero-badge {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
  }

  .gud-hdr__yg-hero-badge--ready,
  .gud-hdr__yg-hero-badge--incomplete,
  .gud-hdr__yg-hero-badge--guest {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
  }

  .gud-hdr__yg-hero-title {
    font-size: 20px;
    color: #ffffff;
  }

  .gud-hdr__yg-hero-desc {
    color: rgba(255, 255, 255, 0.88);
    max-width: 22ch;
  }

  .gud-hdr__yg-hero-cta {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24), 0 4px 12px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    backdrop-filter: blur(8px);
  }

  .gud-hdr__yg-hero-cta::before {
    display: none;
  }

  .gud-hdr__yg-hero-cta:hover,
  .gud-hdr__yg-hero-cta:focus-visible {
    background: rgba(255, 255, 255, 0.26);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32), 0 8px 20px rgba(0, 0, 0, 0.16);
  }

  .gud-hdr__yg-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .gud-hdr__yg-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .gud-hdr__yg-hero-auth-alt {
    color: rgba(255, 255, 255, 0.7);
  }

  .gud-hdr__yg-hero-auth-alt a {
    color: #ffffff;
  }

  .gud-hdr__yg-trust {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .gud-hdr__yg-trust-item {
    color: rgba(255, 255, 255, 0.72);
  }

  .gud-hdr__yg-trust-item i {
    color: rgba(255, 255, 255, 0.6);
  }

  /* Grant columns — flex layout so scroll wrapper fills remaining space */
  .gud-hdr__yg-col--grants,
  .gud-hdr__yg-col--closing {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: calc(100vh - var(--grantaura-main-header-height, 56px) - 40px);
  }

  /* Scroll wrapper — constrained height activates vertical scroll */
  .gud-hdr__yg-scroll {
    max-height: none;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
  }

  /* Grant list cards — slightly more spacious on desktop */
  .gud-hdr__yg-item-link {
    padding: 10px 13px;
  }

  .gud-hdr__yg-item-title {
    font-size: 13.5px;
  }
}

/* =====================================================================
   Large Desktop: 1280px+
   ===================================================================== */
@media (min-width: 1280px) {
  .gud-hdr__yg-panel {
    width: min(820px, calc(100vw - 48px));
    max-width: 820px;
  }

  .gud-hdr__yg-body {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr) minmax(0, 1fr);
  }

  .gud-hdr__yg-hero {
    padding: 22px;
  }

  .gud-hdr__yg-hero-title {
    font-size: 22px;
  }
}

/* =====================================================================
   Narrow Desktop: Shrink panel width to fit viewport
   ===================================================================== */
@media (min-width: 992px) and (max-width: 1180px) {
  .gud-hdr__yg-panel {
    width: min(92vw, 720px);
  }
}

/* =====================================================================
   Reduced Motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  .gud-hdr__yg-trigger,
  .gud-hdr__yg-panel,
  .gud-hdr__yg-overlay,
  .gud-hdr__yg-hero-cta,
  .gud-hdr__yg-cta-arrow,
  .gud-hdr__yg-item-link,
  .gud-hdr__yg-view-all,
  .gud-hdr__yg-view-all i,
  .gud-hdr__yg-deadline-chip {
    transition: none !important;
    animation: none !important;
  }
}
