﻿.aveshost-widget-grid {
  display: grid;
  gap: var(--aveshost-widget-gap, 24px);
  grid-template-columns: repeat(var(--aveshost-widget-cols, 3), minmax(0, 1fr));
}

.aveshost-widget-grid .aveshost-widget-card {
  background: var(--aveshost-widget-bg, #ffffff);
  border-radius: var(--aveshost-widget-radius, 16px);
  overflow: hidden;
  border: 1px solid #e6ecf6;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
  display: grid;
  height: 100%;
}

.aveshost-widget-grid .aveshost-widget-media img {
  width: 100%;
  height: var(--aveshost-widget-image-height, 180px);
  object-fit: cover;
}

.aveshost-widget-grid .aveshost-widget-body {
  padding: 16px 18px 20px;
  display: grid;
  gap: 10px;
}

.aveshost-widget-grid .aveshost-widget-title {
  font-family: "Space Grotesk", "Onest", sans-serif;
  font-size: 1.05rem;
  margin: 0;
}

.aveshost-widget-grid .aveshost-widget-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #5b6b8a;
}

.aveshost-widget-grid .aveshost-widget-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1758ff;
  font-weight: 600;
}

.aveshost-widget-grid .aveshost-widget-body p {
  color: #4b5563;
  margin: 0;
}

.aveshost-widget-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.aveshost-widget-grid .aveshost-widget-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #1e40af;
  color: #1e40af;
  border-radius: 4px;
  padding: 2px 6px;
  letter-spacing: 0.04em;
}

.aveshost-widget-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #5b6b8a;
}

.aveshost-widget-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.aveshost-form {
  display: grid;
  gap: 18px;
}

.aveshost-form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.aveshost-form-field--full {
  grid-column: 1 / -1;
}

.aveshost-form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #111827;
}

.aveshost-form-required {
  color: #ef4444;
}

.aveshost-form input,
.aveshost-form textarea,
.aveshost-form select {
  width: 100%;
  border: 1px solid #cbd5f5;
  border-radius: 6px;
  background: #f5f6ff;
  color: #0f172a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.aveshost-form input:focus,
.aveshost-form textarea:focus,
.aveshost-form select:focus {
  outline: none;
  border-color: #1758ff;
  box-shadow: 0 0 0 2px rgba(23, 88, 255, 0.2);
}

.aveshost-form textarea {
  min-height: 120px;
  resize: vertical;
}

.aveshost-form-size-small input,
.aveshost-form-size-small textarea,
.aveshost-form-size-small select {
  padding: 8px 12px;
  font-size: 0.9rem;
}

.aveshost-form-size-medium input,
.aveshost-form-size-medium textarea,
.aveshost-form-size-medium select {
  padding: 12px 14px;
  font-size: 1rem;
}

.aveshost-form-size-large input,
.aveshost-form-size-large textarea,
.aveshost-form-size-large select {
  padding: 14px 16px;
  font-size: 1.05rem;
}

.aveshost-form-choice-group {
  display: grid;
  gap: 10px;
}

.aveshost-form-choice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #111827;
}

.aveshost-form-choice input {
  width: 16px;
  height: 16px;
  accent-color: #1758ff;
}

.aveshost-form-honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.aveshost-form-actions {
  display: block;
}

.aveshost-form-message {
  border: 1px solid #cbd5f5;
  background: #f8f9ff;
  color: #1f2937;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 600;
}

.aveshost-form-message.is-success {
  border-color: #86efac;
  background: #ecfdf5;
  color: #065f46;
}

.aveshost-form-message.is-error {
  border-color: #fca5a5;
  background: #fef2f2;
  color: #991b1b;
}

.aveshost-form-button {
  background: #1758ff;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.aveshost-form-button:hover {
  opacity: 0.9;
}

.aveshost-form-recaptcha {
  padding: 16px;
  border: 1px dashed #cbd5f5;
  background: #f8f9ff;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #4b5563;
}

@media (max-width: 720px) {
  .aveshost-form-fields {
    grid-template-columns: 1fr;
  }
}

.aveshost-rail-list {
  display: grid;
  gap: 28px;
}

.aveshost-rail-item {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.aveshost-rail-thumb img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.aveshost-rail-content {
  display: grid;
  gap: 10px;
}

.aveshost-rail-title {
  margin: 0;
  font-size: 1.2rem;
  font-family: "Space Grotesk", "Onest", sans-serif;
}

.aveshost-rail-content p {
  margin: 0;
  color: #4b5563;
}

.aveshost-rail-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #5b6b8a;
}

.aveshost-rail-meta img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.aveshost-variant-flat .aveshost-rail-thumb img {
  box-shadow: none;
  border: 1px solid #e6ecf6;
}

.aveshost-variant-outline .aveshost-rail-thumb img {
  box-shadow: none;
  border: 1px solid #b9c8ea;
}

.aveshost-variant-glass .aveshost-rail-content {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 14px 16px;
  border-radius: 12px;
  backdrop-filter: blur(16px);
}

@media (max-width: 900px) {
  .aveshost-rail-item {
    grid-template-columns: 1fr;
  }

  .aveshost-rail-thumb img {
    height: 220px;
  }
}

.aveshost-widget-taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aveshost-widget-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(23, 88, 255, 0.1);
  color: #1758ff;
  font-weight: 600;
  font-size: 0.8rem;
}

.aveshost-widget-tag a,
.aveshost-widget-tag a:visited,
.aveshost-widget-tag a:hover,
.aveshost-widget-tag a:focus {
  color: inherit !important;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .aveshost-widget-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .aveshost-widget-grid {
    grid-template-columns: 1fr;
  }

  .aveshost-widget-grid .aveshost-widget-media img {
    height: clamp(180px, 56vw, 240px);
  }

  .aveshost-widget-grid .aveshost-widget-body {
    padding: 14px 16px 18px;
  }

  .aveshost-widget-grid .aveshost-widget-title {
    font-size: 1rem;
  }

  .aveshost-widget-grid .aveshost-widget-meta,
  .aveshost-widget-grid .aveshost-widget-meta-row {
    font-size: 0.8rem;
  }
}
.aveshost-feature-rail {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  --aveshost-feature-main-height: 320px;
  --aveshost-feature-thumb: 120px;
}

.aveshost-feature-main {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d6dbe6;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.aveshost-feature-image img {
  width: 100%;
  height: var(--aveshost-feature-main-height, 320px);
  object-fit: cover;
}

.aveshost-feature-body {
  padding: 18px 20px 22px;
}

.aveshost-feature-title {
  font-family: "Space Grotesk", "Onest", sans-serif;
  font-size: 1.25rem;
  margin: 0 0 10px;
}

.aveshost-feature-date,
.aveshost-feature-item-date {
  font-size: 0.9rem;
  color: #5b6b8a;
}

.aveshost-feature-list {
  display: grid;
  gap: 18px;
}

.aveshost-feature-item {
  display: grid;
  grid-template-columns: var(--aveshost-feature-thumb) 1fr;
  gap: 14px;
  align-items: start;
}

.aveshost-feature-thumb img {
  width: var(--aveshost-feature-thumb);
  height: calc(var(--aveshost-feature-thumb) * 0.68);
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.aveshost-feature-body p {
  margin: 0;
  color: #4b5563;
}

.aveshost-search-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #d7e2f3;
  width: 100%;
  max-width: var(--aveshost-search-width, 520px);
  flex-wrap: wrap;
}


.elementor-widget-aveshost-nav-menu,
.elementor-widget-aveshost-search {
  min-width: 0;
  max-width: 100%;
}

.elementor-widget-aveshost-nav-menu {
  width: 100%;
}

.elementor-widget-aveshost-search .aveshost-search-widget {
  max-width: 100%;
}

.elementor-widget-aveshost-search .aveshost-search-popup-panel {
  z-index: 80;
}

.aveshost-footer-widget {
  background: linear-gradient(135deg, #04285e 0%, #031d72 50%, #033a92 100%);
  color: #d7d9dd;
}

.aveshost-footer {
  font-family: "Onest", "Space Grotesk", sans-serif;
  background: linear-gradient(135deg, #04285e 0%, #031d72 50%, #033a92 100%);
  color: #d7d9dd;
}

.aveshost-footer-inner {
  width: min(1320px, 92vw);
  margin: 0 auto;
  padding: 48px 24px;
}

.aveshost-footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.aveshost-footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.aveshost-footer-description {
  line-height: 1.6;
  margin-bottom: 16px;
}

.aveshost-footer-about-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aveshost-footer-about-links a {
  color: #d7d9dd;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.aveshost-footer-about-links a:hover {
  color: #3b82f6;
}

.aveshost-footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e5e3e3;
  margin-bottom: 16px;
}

.aveshost-footer-newsletter p {
  margin-bottom: 16px;
}

.aveshost-footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aveshost-footer-newsletter-input {
  background-color: transparent;
  border: 1px solid #b2b2b3;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.aveshost-footer-newsletter-input::placeholder {
  color: #bab8b8;
}

.aveshost-footer-newsletter-input:focus {
  border-color: #3b82f6;
}

.aveshost-footer-newsletter-input.is-error {
  border: 2px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(#031d72) padding-box,
    linear-gradient(90deg, #f84b3e, #0c75fe, #ee7f00) border-box;
}

.aveshost-footer-newsletter-button {
  background-color: #3b82f6;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 16px;
  border: 2px solid #3b82f6;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.aveshost-footer-newsletter-button:hover {
  background-color: #2563eb;
  border-color: #2563eb;
}

.aveshost-footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.aveshost-footer-accordion-item {
  border-bottom: 1px solid #053c7b;
}

.aveshost-footer-accordion-item:last-child {
  border-bottom: none;
}

.aveshost-footer-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.aveshost-footer-accordion-icon {
  display: inline-flex;
  transition: transform 0.25s ease;
}

.aveshost-footer-accordion-item.is-open .aveshost-footer-accordion-icon {
  transform: rotate(180deg);
}

.aveshost-footer-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.aveshost-footer-accordion-content ul {
  list-style: none;
  padding: 0 0 16px;
  margin: 0;
}

.aveshost-footer-accordion-content li {
  margin-bottom: 8px;
}

.aveshost-footer-accordion-content a {
  color: #d7d9dd;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.aveshost-footer-accordion-content a:hover {
  color: #3b82f6;
}

.aveshost-footer-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  color: #ffffff;
}

.aveshost-footer-badge-new {
  background: #3b82f6;
}

.aveshost-footer-badge-live {
  background: #16a34a;
}

.aveshost-footer-bottom {
  border-top: 1px solid #0a5499;
  padding-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.aveshost-footer-social-payment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.aveshost-footer-social {
  display: flex;
  gap: 20px;
  color: #9ca3af;
}

.aveshost-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: inherit;
  transition: color 0.2s ease;
}

.aveshost-footer-social svg,
.aveshost-footer-social i {
  width: 20px;
  height: 20px;
  display: block;
}

.aveshost-footer-social i {
  font-size: 20px;
  line-height: 1;
}

.aveshost-footer-social a:hover {
  color: #ffffff;
}

.aveshost-footer-payment img {
  height: 72px;
  width: auto;
  max-width: 100%;
}

.aveshost-footer-legal {
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aveshost-footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.aveshost-footer-legal-links a {
  color: #d7d9dd;
  text-decoration: none;
  transition: color 0.2s ease;
}

.aveshost-footer-legal-links a:hover {
  color: #ffffff;
}

@media (min-width: 768px) {
  .aveshost-footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
  }

  .aveshost-footer-about {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .aveshost-footer-newsletter {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .aveshost-footer-links {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    grid-template-columns: repeat(2, 1fr);
  }

  .aveshost-footer-accordion-header {
    pointer-events: none;
    padding: 0;
    margin-bottom: 16px;
  }

  .aveshost-footer-accordion-icon {
    display: none;
  }

  .aveshost-footer-accordion-content {
    max-height: none !important;
  }

  .aveshost-footer-accordion-item {
    border: none;
  }

  .aveshost-footer-accordion-content ul {
    padding: 0;
  }

  .aveshost-footer-social-payment {
    flex-direction: row;
    justify-content: space-between;
  }

  .aveshost-footer-legal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .aveshost-footer-main {
    grid-template-columns: 1.5fr 2.5fr;
  }

  .aveshost-footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .aveshost-footer-payment img {
    width: 300px;
  }
}

.aveshost-search-widget input[type="search"] {
  flex: 1 1 180px;
  border: none;
  outline: none;
  padding: 10px 12px;
  font-size: 0.95rem;
  background: transparent;
}

.aveshost-search-widget button {
  flex: 0 0 auto;
  border: none;
  background: #1758ff;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.aveshost-search-widget.no-button {
  padding: 8px 14px;
}

.aveshost-search-popup {
  position: relative;
  display: inline-flex;
  max-width: 100%;
}

html:not(.aveshost-ready) .aveshost-search-popup-panel {
  display: none;
}

.aveshost-search-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #1758ff;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.aveshost-search-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.aveshost-search-popup-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 240px;
  width: var(--aveshost-search-width, 320px);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.aveshost-search-popup-panel .aveshost-search-widget {
  width: 100%;
  max-width: none;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
}

.aveshost-search-popup.is-open .aveshost-search-popup-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.aveshost-search-popup:focus-within .aveshost-search-popup-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.aveshost-variant-pill .aveshost-search-widget {
  border-radius: 999px;
}

.aveshost-variant-pill .aveshost-search-widget button {
  border-radius: 999px;
}

.aveshost-variant-outline .aveshost-search-widget {
  background: transparent;
  border: 2px solid #1e40af;
}

.aveshost-variant-outline .aveshost-search-widget button {
  background: #1e40af;
}

.aveshost-variant-glass .aveshost-search-widget {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
}

.aveshost-variant-plain .aveshost-search-toggle {
  background: transparent;
  color: #0f172a;
}

.aveshost-variant-outline .aveshost-search-toggle {
  background: #1e40af;
}

.aveshost-variant-glass .aveshost-search-popup-panel .aveshost-search-widget {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

@media (max-width: 700px) {
  .aveshost-search-widget {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px;
    max-width: 100%;
  }

  .aveshost-search-widget input[type="search"] {
    flex: 1 1 auto;
    width: 100%;
    padding: 12px 14px;
  }

  .aveshost-search-widget button {
    width: 100%;
    padding: 12px 16px;
  }

  .aveshost-search-widget.no-button {
    padding: 12px 14px;
  }

  .aveshost-search-popup {
    width: auto;
    display: inline-flex;
  }

  .aveshost-search-popup-panel {
    position: fixed;
    right: 0;
    left: 0;
    top: var(--aveshost-search-popup-top, 72px);
    width: 100%;
    max-width: 100%;
    transform: translateY(-6px);
  }

  .aveshost-search-popup-panel .aveshost-search-widget {
    width: 100%;
  }

  .aveshost-search-popup.is-open .aveshost-search-popup-panel,
  .aveshost-search-popup:focus-within .aveshost-search-popup-panel {
    transform: translateY(0);
  }
}

.aveshost-nav-widget {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  justify-content: var(--aveshost-nav-align, center);
}

.aveshost-nav-panel {
  display: flex;
}

.aveshost-nav-panel-inner {
  display: flex;
}

.aveshost-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--aveshost-nav-gap, 16px);
  margin: 0;
  padding: 0;
  font-weight: 600;
  color: #5b6b8a;
}

.aveshost-nav-list a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.aveshost-nav-panel-overlay .aveshost-nav-list,
.aveshost-nav-panel-drawer .aveshost-nav-list {
  border: 0;
  background: transparent;
  padding: 4px;
  gap: 8px;
}

.aveshost-nav-panel-dropdown .aveshost-nav-list {
  border: 0;
  background: #ffffff;
  padding: 10px;
  gap: var(--aveshost-nav-gap, 8px);
  border-radius: 16px;
}

.aveshost-nav-panel-overlay .aveshost-nav-list a,
.aveshost-nav-panel-drawer .aveshost-nav-list a {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  color: #1f2a44;
  transition: color 0.2s ease;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.aveshost-nav-panel-dropdown .aveshost-nav-list a {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: #0f172a;
  transition: color 0.2s ease;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.aveshost-nav-panel-overlay .aveshost-nav-list a:hover,
.aveshost-nav-panel-drawer .aveshost-nav-list a:hover {
  background: transparent;
  color: #1758ff;
  border: 0;
  box-shadow: none;
}

.aveshost-nav-panel-dropdown .aveshost-nav-list a:hover {
  background: transparent;
  color: #1758ff;
  border: 0;
  box-shadow: none;
}

.aveshost-nav-panel-overlay .aveshost-nav-list a:focus-visible,
.aveshost-nav-panel-drawer .aveshost-nav-list a:focus-visible {
  outline: 2px solid #1758ff;
  outline-offset: 2px;
}

.aveshost-nav-panel-dropdown .aveshost-nav-list a:focus-visible {
  outline: 2px solid #1758ff;
  outline-offset: 2px;
}

.aveshost-nav-layout-stacked .aveshost-nav-list {
  flex-direction: column;
  align-items: flex-start;
}

.aveshost-nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid #d7e2f3;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  color: #0f172a;
  font-weight: 600;
  cursor: pointer;
}

.aveshost-nav-toggle-icon {
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  display: inline-block;
}

.aveshost-nav-toggle-icon::before,
.aveshost-nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.aveshost-nav-toggle-icon::before {
  top: -6px;
}

.aveshost-nav-toggle-icon::after {
  top: 6px;
}

.aveshost-nav-toggle-label {
  font-size: 0.9rem;
}

.aveshost-nav-close {
  border: 0;
  background: transparent;
  color: #0f172a;
  font-size: 24px;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.aveshost-nav-panel-overlay .aveshost-nav-panel-inner,
.aveshost-nav-panel-drawer .aveshost-nav-panel-inner {
  position: relative;
  padding-top: 0;
}

.aveshost-nav-panel-overlay .aveshost-nav-close,
.aveshost-nav-panel-drawer .aveshost-nav-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.aveshost-nav-widget.is-open .aveshost-nav-panel {
  display: flex;
}

.aveshost-nav-hamburger-1024,
.aveshost-nav-hamburger-900,
.aveshost-nav-hamburger-768,
.aveshost-nav-hamburger-600 {
  position: relative;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .aveshost-nav-hamburger-1024 .aveshost-nav-toggle {
    display: inline-flex;
  }

  .aveshost-nav-hamburger-1024 .aveshost-nav-toggle {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-overlay .aveshost-nav-close,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-drawer .aveshost-nav-close {
    display: inline-flex;
  }

  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-overlay .aveshost-nav-panel-inner,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-drawer .aveshost-nav-panel-inner {
    padding-top: 44px;
  }

  .aveshost-nav-hamburger-1024 .aveshost-nav-panel {
    width: 100%;
    display: none;
  }

  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-dropdown .aveshost-nav-panel,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: auto;
    min-width: 220px;
  }

  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown {
    left: 50%;
    right: auto;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    z-index: 9999;
    box-sizing: border-box;
  }

  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-dropdown .aveshost-nav-list,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-dropdown .aveshost-nav-list {
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }

  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-dropdown .aveshost-nav-list a,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-dropdown .aveshost-nav-list a {
    border-radius: 0;
  }

  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown .aveshost-nav-panel-inner,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-dropdown .aveshost-nav-panel-inner {
    width: 100%;
  }

  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown .aveshost-nav-list,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-dropdown .aveshost-nav-list {
    width: 100%;
  }

  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-drawer {
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .aveshost-nav-hamburger-1024.is-open .aveshost-nav-panel-drawer {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-dropdown .aveshost-nav-list,
  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-overlay .aveshost-nav-list,
  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-drawer .aveshost-nav-list,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-overlay .aveshost-nav-list,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-drawer .aveshost-nav-list {
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #d7e2f3;
    border-radius: 14px;
    padding: 12px;
    gap: var(--aveshost-nav-gap, 12px);
  }

  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown .aveshost-nav-list {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown .aveshost-nav-list a {
    border-radius: 0;
  }

  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-drawer .aveshost-nav-panel-drawer .aveshost-nav-list,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-drawer .aveshost-nav-list {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-drawer .aveshost-nav-panel-drawer .aveshost-nav-list a,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-drawer .aveshost-nav-list a {
    border-radius: 0;
  }

  .aveshost-nav-hamburger-1024.is-open .aveshost-nav-panel {
    display: flex;
  }

  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-overlay .aveshost-nav-panel,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-overlay,
  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-drawer .aveshost-nav-panel,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-drawer {
    position: fixed;
    inset: 0;
    width: auto;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
    z-index: 9999;
  }

  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-overlay .aveshost-nav-panel,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-overlay {
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-overlay .aveshost-nav-panel-inner,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-overlay .aveshost-nav-panel-inner {
    max-width: 520px;
    width: min(90vw, 520px);
    max-height: 90vh;
    overflow-y: auto;
  }

  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-overlay .aveshost-nav-list,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-overlay .aveshost-nav-list {
    align-items: center;
    text-align: center;
  }

  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-drawer .aveshost-nav-panel,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-drawer {
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
  }

  .aveshost-nav-hamburger-1024.aveshost-nav-mobile-drawer .aveshost-nav-panel-inner,
  .aveshost-nav-hamburger-1024 .aveshost-nav-panel-drawer .aveshost-nav-panel-inner {
    width: 280px;
    max-width: 82vw;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
    background: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }

  .aveshost-nav-hamburger-1024.is-open .aveshost-nav-panel-drawer .aveshost-nav-panel-inner {
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  .aveshost-nav-hamburger-900 .aveshost-nav-toggle {
    display: inline-flex;
  }

  .aveshost-nav-hamburger-900 .aveshost-nav-toggle {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .aveshost-nav-hamburger-900 .aveshost-nav-panel-overlay .aveshost-nav-close,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-drawer .aveshost-nav-close {
    display: inline-flex;
  }

  .aveshost-nav-hamburger-900 .aveshost-nav-panel-overlay .aveshost-nav-panel-inner,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-drawer .aveshost-nav-panel-inner {
    padding-top: 44px;
  }

  .aveshost-nav-hamburger-900 .aveshost-nav-panel {
    width: 100%;
    display: none;
  }

  .aveshost-nav-hamburger-900.aveshost-nav-mobile-dropdown .aveshost-nav-panel,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: auto;
    min-width: 220px;
  }

  .aveshost-nav-hamburger-900.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown {
    left: 50%;
    right: auto;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    z-index: 9999;
    box-sizing: border-box;
  }

  .aveshost-nav-hamburger-900.aveshost-nav-mobile-dropdown .aveshost-nav-list,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-dropdown .aveshost-nav-list {
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }

  .aveshost-nav-hamburger-900.aveshost-nav-mobile-dropdown .aveshost-nav-list a,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-dropdown .aveshost-nav-list a {
    border-radius: 0;
  }

  .aveshost-nav-hamburger-900.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown .aveshost-nav-panel-inner,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-dropdown .aveshost-nav-panel-inner {
    width: 100%;
  }

  .aveshost-nav-hamburger-900.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown .aveshost-nav-list,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-dropdown .aveshost-nav-list {
    width: 100%;
  }

  .aveshost-nav-hamburger-900 .aveshost-nav-panel-drawer {
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .aveshost-nav-hamburger-900.is-open .aveshost-nav-panel-drawer {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .aveshost-nav-hamburger-900.aveshost-nav-mobile-dropdown .aveshost-nav-list,
  .aveshost-nav-hamburger-900.aveshost-nav-mobile-overlay .aveshost-nav-list,
  .aveshost-nav-hamburger-900.aveshost-nav-mobile-drawer .aveshost-nav-list,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-overlay .aveshost-nav-list,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-drawer .aveshost-nav-list {
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #d7e2f3;
    border-radius: 14px;
    padding: 12px;
    gap: var(--aveshost-nav-gap, 12px);
  }

  .aveshost-nav-hamburger-900.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown .aveshost-nav-list {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .aveshost-nav-hamburger-900.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown .aveshost-nav-list a {
    border-radius: 0;
  }

  .aveshost-nav-hamburger-900.aveshost-nav-mobile-drawer .aveshost-nav-panel-drawer .aveshost-nav-list,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-drawer .aveshost-nav-list {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .aveshost-nav-hamburger-900.aveshost-nav-mobile-drawer .aveshost-nav-panel-drawer .aveshost-nav-list a,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-drawer .aveshost-nav-list a {
    border-radius: 0;
  }

  .aveshost-nav-hamburger-900.is-open .aveshost-nav-panel {
    display: flex;
  }

  .aveshost-nav-hamburger-900.aveshost-nav-mobile-overlay .aveshost-nav-panel,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-overlay,
  .aveshost-nav-hamburger-900.aveshost-nav-mobile-drawer .aveshost-nav-panel,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-drawer {
    position: fixed;
    inset: 0;
    width: auto;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
    z-index: 9999;
  }

  .aveshost-nav-hamburger-900.aveshost-nav-mobile-overlay .aveshost-nav-panel,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-overlay {
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .aveshost-nav-hamburger-900.aveshost-nav-mobile-overlay .aveshost-nav-panel-inner,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-overlay .aveshost-nav-panel-inner {
    max-width: 520px;
    width: min(90vw, 520px);
    max-height: 90vh;
    overflow-y: auto;
  }

  .aveshost-nav-hamburger-900.aveshost-nav-mobile-overlay .aveshost-nav-list,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-overlay .aveshost-nav-list {
    align-items: center;
    text-align: center;
  }

  .aveshost-nav-hamburger-900.aveshost-nav-mobile-drawer .aveshost-nav-panel,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-drawer {
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
  }

  .aveshost-nav-hamburger-900.aveshost-nav-mobile-drawer .aveshost-nav-panel-inner,
  .aveshost-nav-hamburger-900 .aveshost-nav-panel-drawer .aveshost-nav-panel-inner {
    width: 280px;
    max-width: 82vw;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
    background: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }

  .aveshost-nav-hamburger-900.is-open .aveshost-nav-panel-drawer .aveshost-nav-panel-inner {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .aveshost-nav-hamburger-768 .aveshost-nav-toggle {
    display: inline-flex;
  }

  .aveshost-nav-hamburger-768 .aveshost-nav-toggle {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .aveshost-nav-hamburger-768 .aveshost-nav-panel-overlay .aveshost-nav-close,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-drawer .aveshost-nav-close {
    display: inline-flex;
  }

  .aveshost-nav-hamburger-768 .aveshost-nav-panel-overlay .aveshost-nav-panel-inner,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-drawer .aveshost-nav-panel-inner {
    padding-top: 44px;
  }

  .aveshost-nav-hamburger-768 .aveshost-nav-panel {
    width: 100%;
    display: none;
  }

  .aveshost-nav-hamburger-768.aveshost-nav-mobile-dropdown .aveshost-nav-panel,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: auto;
    min-width: 220px;
  }

  .aveshost-nav-hamburger-768.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown {
    left: 50%;
    right: auto;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    z-index: 9999;
    box-sizing: border-box;
  }

  .aveshost-nav-hamburger-768.aveshost-nav-mobile-dropdown .aveshost-nav-list,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-dropdown .aveshost-nav-list {
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }

  .aveshost-nav-hamburger-768.aveshost-nav-mobile-dropdown .aveshost-nav-list a,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-dropdown .aveshost-nav-list a {
    border-radius: 0;
  }

  .aveshost-nav-hamburger-768.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown .aveshost-nav-panel-inner,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-dropdown .aveshost-nav-panel-inner {
    width: 100%;
  }

  .aveshost-nav-hamburger-768.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown .aveshost-nav-list,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-dropdown .aveshost-nav-list {
    width: 100%;
  }

  .aveshost-nav-hamburger-768 .aveshost-nav-panel-drawer {
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .aveshost-nav-hamburger-768.is-open .aveshost-nav-panel-drawer {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .aveshost-nav-hamburger-768.aveshost-nav-mobile-dropdown .aveshost-nav-list,
  .aveshost-nav-hamburger-768.aveshost-nav-mobile-overlay .aveshost-nav-list,
  .aveshost-nav-hamburger-768.aveshost-nav-mobile-drawer .aveshost-nav-list,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-overlay .aveshost-nav-list,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-drawer .aveshost-nav-list {
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #d7e2f3;
    border-radius: 14px;
    padding: 12px;
    gap: var(--aveshost-nav-gap, 12px);
  }

  .aveshost-nav-hamburger-768.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown .aveshost-nav-list {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .aveshost-nav-hamburger-768.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown .aveshost-nav-list a {
    border-radius: 0;
  }

  .aveshost-nav-hamburger-768.aveshost-nav-mobile-drawer .aveshost-nav-panel-drawer .aveshost-nav-list,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-drawer .aveshost-nav-list {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .aveshost-nav-hamburger-768.aveshost-nav-mobile-drawer .aveshost-nav-panel-drawer .aveshost-nav-list a,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-drawer .aveshost-nav-list a {
    border-radius: 0;
  }

  .aveshost-nav-hamburger-768.is-open .aveshost-nav-panel {
    display: flex;
  }

  .aveshost-nav-hamburger-768.aveshost-nav-mobile-overlay .aveshost-nav-panel,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-overlay,
  .aveshost-nav-hamburger-768.aveshost-nav-mobile-drawer .aveshost-nav-panel,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-drawer {
    position: fixed;
    inset: 0;
    width: auto;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
    z-index: 9999;
  }

  .aveshost-nav-hamburger-768.aveshost-nav-mobile-overlay .aveshost-nav-panel,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-overlay {
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .aveshost-nav-hamburger-768.aveshost-nav-mobile-overlay .aveshost-nav-panel-inner,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-overlay .aveshost-nav-panel-inner {
    max-width: 520px;
    width: min(90vw, 520px);
    max-height: 90vh;
    overflow-y: auto;
  }

  .aveshost-nav-hamburger-768.aveshost-nav-mobile-overlay .aveshost-nav-list,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-overlay .aveshost-nav-list {
    align-items: center;
    text-align: center;
  }

  .aveshost-nav-hamburger-768.aveshost-nav-mobile-drawer .aveshost-nav-panel,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-drawer {
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
  }

  .aveshost-nav-hamburger-768.aveshost-nav-mobile-drawer .aveshost-nav-panel-inner,
  .aveshost-nav-hamburger-768 .aveshost-nav-panel-drawer .aveshost-nav-panel-inner {
    width: 280px;
    max-width: 82vw;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
    background: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }

  .aveshost-nav-hamburger-768.is-open .aveshost-nav-panel-drawer .aveshost-nav-panel-inner {
    transform: translateX(0);
  }
}

@media (max-width: 600px) {
  .aveshost-nav-hamburger-600 .aveshost-nav-toggle {
    display: inline-flex;
  }

  .aveshost-nav-hamburger-600 .aveshost-nav-toggle {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .aveshost-nav-hamburger-600 .aveshost-nav-panel-overlay .aveshost-nav-close,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-drawer .aveshost-nav-close {
    display: inline-flex;
  }

  .aveshost-nav-hamburger-600 .aveshost-nav-panel-overlay .aveshost-nav-panel-inner,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-drawer .aveshost-nav-panel-inner {
    padding-top: 44px;
  }

  .aveshost-nav-hamburger-600 .aveshost-nav-panel {
    width: 100%;
    display: none;
  }

  .aveshost-nav-hamburger-600.aveshost-nav-mobile-dropdown .aveshost-nav-panel,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: auto;
    min-width: 220px;
  }

  .aveshost-nav-hamburger-600.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown {
    left: 50%;
    right: auto;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    z-index: 9999;
    box-sizing: border-box;
  }

  .aveshost-nav-hamburger-600.aveshost-nav-mobile-dropdown .aveshost-nav-list,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-dropdown .aveshost-nav-list {
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }

  .aveshost-nav-hamburger-600.aveshost-nav-mobile-dropdown .aveshost-nav-list a,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-dropdown .aveshost-nav-list a {
    border-radius: 0;
  }

  .aveshost-nav-hamburger-600.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown .aveshost-nav-panel-inner,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-dropdown .aveshost-nav-panel-inner {
    width: 100%;
  }

  .aveshost-nav-hamburger-600.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown .aveshost-nav-list,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-dropdown .aveshost-nav-list {
    width: 100%;
  }

  .aveshost-nav-hamburger-600 .aveshost-nav-panel-drawer {
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .aveshost-nav-hamburger-600.is-open .aveshost-nav-panel-drawer {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .aveshost-nav-hamburger-600.aveshost-nav-mobile-dropdown .aveshost-nav-list,
  .aveshost-nav-hamburger-600.aveshost-nav-mobile-overlay .aveshost-nav-list,
  .aveshost-nav-hamburger-600.aveshost-nav-mobile-drawer .aveshost-nav-list,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-overlay .aveshost-nav-list,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-drawer .aveshost-nav-list {
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #d7e2f3;
    border-radius: 14px;
    padding: 12px;
    gap: var(--aveshost-nav-gap, 12px);
  }

  .aveshost-nav-hamburger-600.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown .aveshost-nav-list {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .aveshost-nav-hamburger-600.aveshost-nav-mobile-dropdown .aveshost-nav-panel-dropdown .aveshost-nav-list a {
    border-radius: 0;
  }

  .aveshost-nav-hamburger-600.aveshost-nav-mobile-drawer .aveshost-nav-panel-drawer .aveshost-nav-list,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-drawer .aveshost-nav-list {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .aveshost-nav-hamburger-600.aveshost-nav-mobile-drawer .aveshost-nav-panel-drawer .aveshost-nav-list a,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-drawer .aveshost-nav-list a {
    border-radius: 0;
  }

  .aveshost-nav-hamburger-600.is-open .aveshost-nav-panel {
    display: flex;
  }

  .aveshost-nav-hamburger-600.aveshost-nav-mobile-overlay .aveshost-nav-panel,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-overlay,
  .aveshost-nav-hamburger-600.aveshost-nav-mobile-drawer .aveshost-nav-panel,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-drawer {
    position: fixed;
    inset: 0;
    width: auto;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
    z-index: 9999;
  }

  .aveshost-nav-hamburger-600.aveshost-nav-mobile-overlay .aveshost-nav-panel,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-overlay {
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .aveshost-nav-hamburger-600.aveshost-nav-mobile-overlay .aveshost-nav-panel-inner,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-overlay .aveshost-nav-panel-inner {
    max-width: 520px;
    width: min(90vw, 520px);
    max-height: 90vh;
    overflow-y: auto;
  }

  .aveshost-nav-hamburger-600.aveshost-nav-mobile-overlay .aveshost-nav-list,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-overlay .aveshost-nav-list {
    align-items: center;
    text-align: center;
  }

  .aveshost-nav-hamburger-600.aveshost-nav-mobile-drawer .aveshost-nav-panel,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-drawer {
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
  }

  .aveshost-nav-hamburger-600.aveshost-nav-mobile-drawer .aveshost-nav-panel-inner,
  .aveshost-nav-hamburger-600 .aveshost-nav-panel-drawer .aveshost-nav-panel-inner {
    width: 280px;
    max-width: 82vw;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
    background: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }

  .aveshost-nav-hamburger-600.is-open .aveshost-nav-panel-drawer .aveshost-nav-panel-inner {
    transform: translateX(0);
  }
}

.aveshost-variant-pill .aveshost-nav-list a {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #d7e2f3;
}

.aveshost-variant-pill .aveshost-nav-list a:hover {
  color: #1758ff;
  border-color: #1758ff;
}

.aveshost-variant-underline .aveshost-nav-list a {
  position: relative;
  padding-bottom: 6px;
}

.aveshost-variant-underline .aveshost-nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #1758ff;
  transition: width 0.2s ease;
}

.aveshost-variant-underline .aveshost-nav-list a:hover::after {
  width: 100%;
}

.aveshost-mega-menu,
.aveshost-mega-menu * {
  box-sizing: border-box;
}

.aveshost-mega-menu {
  position: relative;
  width: 100%;
  z-index: 50;
  overflow: visible;
}

.aveshost-mega-nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  z-index: 60;
}

.aveshost-mega-nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  width: 100%;
}

.aveshost-mega-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1f2937;
  font-weight: 600;
}

.aveshost-mega-logo img {
  height: 32px;
  display: block;
  max-width: 100%;
}

.aveshost-mega-logo-text {
  font-size: 1.1rem;
}

.aveshost-mega-links {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-self: center;
}

.aveshost-mega-trigger,
.aveshost-mega-link {
  background: transparent;
  border: 0;
  color: #212324;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 0.98rem;
}

.aveshost-mega-trigger:hover,
.aveshost-mega-link:hover {
  color: #0f172a;
}

.aveshost-mega-arrow {
  color: #9ca3af;
  transition: transform 0.2s ease;
}

.aveshost-mega-trigger.is-active .aveshost-mega-arrow {
  transform: rotate(180deg);
}

.aveshost-mega-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.aveshost-mega-login {
  color: #212324;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 14px;
}

.aveshost-mega-signup {
  background: linear-gradient(135deg, #0080ff, #053f96);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  padding: 8px 18px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 128, 255, 0.2);
}

.aveshost-mega-panels {
  position: absolute;
  left: 0;
  transform: none;
  width: 100%;
  top: 100%;
  z-index: 40;
  pointer-events: none;
  height: 0;
}

.aveshost-mega-panel {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.aveshost-mega-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.aveshost-mega-panel-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.aveshost-mega-column h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: #1f2937;
}

.aveshost-mega-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aveshost-mega-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  transition: transform 0.2s ease, background 0.2s ease;
}

.aveshost-mega-item:hover {
  background: #f3f6fb;
  transform: translateX(4px);
}

.aveshost-mega-item-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.aveshost-mega-item-desc {
  font-size: 0.78rem;
  color: #6b7280;
}

.aveshost-mega-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.aveshost-mega-hamburger span {
  width: 22px;
  height: 2px;
  background: #374151;
  display: block;
  transition: transform 0.2s ease;
}

.aveshost-mega-mobile {
  position: fixed;
  inset: 0;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.aveshost-mega-mobile.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.aveshost-mega-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.aveshost-mega-mobile-logo img {
  height: 30px;
}

.aveshost-mega-mobile-close {
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
}

.aveshost-mega-mobile-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}

.aveshost-mega-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aveshost-mega-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #f3f4f6;
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  background: transparent;
  border: 0;
}

.aveshost-mega-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aveshost-mega-mobile-login,
.aveshost-mega-mobile-signup {
  text-align: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.aveshost-mega-mobile-login {
  border: 1px solid #e5e7eb;
  color: #374151;
}

.aveshost-mega-mobile-signup {
  background: #0080ff;
  color: #ffffff;
}

.aveshost-mega-mobile-secondary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #f3f4f6;
}

.aveshost-mega-mobile-secondary-link {
  text-align: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  font-weight: 600;
}

.aveshost-mega-submenu {
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  z-index: 10001;
}

.aveshost-mega-submenu.is-open {
  transform: translateX(0);
}

.aveshost-mega-submenu-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.aveshost-mega-submenu-header h3 {
  margin: 0;
  font-size: 1rem;
}

.aveshost-mega-submenu-back {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  cursor: pointer;
}

.aveshost-mega-submenu-body {
  padding: 16px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aveshost-mega-submenu-section h4 {
  margin: 0 0 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f2937;
}

.aveshost-mega-submenu-link {
  display: block;
  text-decoration: none;
  color: #374151;
  padding: 10px 0;
}

@media (max-width: 1024px) {
  .aveshost-mega-links,
  .aveshost-mega-actions {
    display: none;
  }

  .aveshost-mega-hamburger {
    display: flex;
  }

  .aveshost-mega-panels {
    display: none;
  }
}

.aveshost-feature-item-title {
  font-size: 0.98rem;
  margin: 0 0 6px;
}

.aveshost-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.aveshost-feature-tag {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #1e40af;
  color: #1e40af;
  border-radius: 4px;
  padding: 2px 6px;
  letter-spacing: 0.04em;
}

.aveshost-feature-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #5b6b8a;
}

.aveshost-feature-meta img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.aveshost-feature-item-body {
  display: grid;
  gap: 6px;
}

.aveshost-feature-item-date {
  font-size: 0.82rem;
  color: #5b6b8a;
}

@media (max-width: 980px) {
  .aveshost-feature-rail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .aveshost-feature-item {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .aveshost-feature-thumb img {
    width: 100%;
    height: 160px;
  }
}

/* Variant styles */
.aveshost-variant-flat .aveshost-widget-card,
.aveshost-variant-flat .aveshost-widget-rail-item,
.aveshost-variant-flat .aveshost-feature-main,
.aveshost-variant-flat .aveshost-feature-item {
  box-shadow: none;
  background: #ffffff;
  border: 1px solid #e6ecf6;
}

.aveshost-variant-flat .aveshost-widget-tag {
  background: #ffffff;
  color: #1758ff;
  border: 1px solid #d6e1fb;
}

.aveshost-variant-plain .aveshost-widget-card,
.aveshost-variant-plain .aveshost-widget-rail-item,
.aveshost-variant-plain .aveshost-feature-main,
.aveshost-variant-plain .aveshost-feature-item {
  box-shadow: none;
  border: none;
  background: transparent;
}

.aveshost-variant-plain .aveshost-rail-thumb img,
.aveshost-variant-plain .aveshost-feature-thumb img {
  box-shadow: none;
}

.aveshost-variant-outline .aveshost-widget-card,
.aveshost-variant-outline .aveshost-widget-rail-item,
.aveshost-variant-outline .aveshost-feature-main,
.aveshost-variant-outline .aveshost-feature-item {
  box-shadow: none;
  background: transparent;
  border: 1px solid #d4def3;
}

.aveshost-variant-outline .aveshost-widget-tag {
  background: transparent;
  color: #1e3a8a;
  border: 1px solid #b9c8ea;
}

.aveshost-variant-glass .aveshost-widget-card,
.aveshost-variant-glass .aveshost-widget-rail-item,
.aveshost-variant-glass .aveshost-feature-main,
.aveshost-variant-glass .aveshost-feature-item {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(16px);
}

.aveshost-variant-glass .aveshost-widget-tag {
  background: rgba(23, 88, 255, 0.12);
  color: #1443c7;
  border: 1px solid rgba(23, 88, 255, 0.2);
  backdrop-filter: blur(12px);
}
