/* i-Aspect palette only:
  #FFFFFF, #F5FFF5, #61CE70, #84E592, #26B569,
  #2C2C2C, #424242, #FFFFFF0D, #505050, #CE6E5F
*/

.iaspect-scan {
  --ias-white: #ffffff;
  --ias-mint: #f5fff5;
  --ias-green: #61ce70;
  --ias-green-2: #84e592;
  --ias-green-dark: #26b569;
  --ias-charcoal: #2c2c2c;
  --ias-gray: #424242;
  --ias-white-0d: #ffffff0d;
  --ias-gray-2: #505050;
  --ias-salmon: #ce6e5f;

  color: var(--ias-white);
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--ias-charcoal), #1f1f1f);
  border: 1px solid var(--ias-gray);
}

.iaspect-muted {
  color: rgba(255, 255, 255, 0.75);
}
.iaspect-link {
  color: var(--ias-green-2);
  text-decoration: none;
}
.iaspect-link:hover {
  text-decoration: underline;
}

/* ---------- form (matches class-shortcode.php markup) ---------- */
.iaspect-scan__form {
  display: grid;
  grid-template-columns: 1fr;
  padding: 16px;
  background: var(--ias-white-0d);
  border: 1px solid var(--ias-gray);
  border-radius: 8px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
}

.iaspect-scan__form label {
  display: block;
  font-size: 0.92rem;
  font-weight: 650;
  margin: 0 0 6px 0;
  color: rgba(255, 255, 255, 0.92);
}

.iaspect-scan__form input[type="text"],
.iaspect-scan__form input[type="email"],
.iaspect-scan__form input[type="url"],
.iaspect-scan__form select,
.iaspect-scan__form textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 999px;
  border: 1px solid var(--ias-gray);
  background: rgba(0, 0, 0, 0.25);
  color: var(--ias-white);
  outline: none;
  margin-bottom: 22px;
}

.iaspect-scan__form textarea {
  border-radius: 8px;
}

/* custom select arrow + padding (white arrow, moved inward) */
.iaspect-scan__form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 44px; /* room for arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFFFFF' d='M7 10l5 5l5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center; /* move arrow inward */
  background-size: 20px 20px;

  /* Theme-friendly border color; Elementor tokens might exist on the page */
  border-color: var(--e-global-color-0141b49, var(--ias-gray));
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
}

.iaspect-scan__form select::-ms-expand {
  display: none;
}

.iaspect-scan__form input,
.iaspect-scan__form select,
.iaspect-scan__form textarea {
  background-color: var(--ias-gray);
}
.iaspect-scan__form input:focus,
.iaspect-scan__form select:focus,
.iaspect-scan__form textarea:focus {
  border-color: var(--ias-green) !important;
  background-color: var(--ias-gray) !important;
}

.iaspect-scan__consent {
  margin-top: 6px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--ias-gray);
  background: rgba(0, 0, 0, 0.18);
}

.iaspect-scan__consent_marketing {
  margin-right: 4px;
}

.iaspect-scan__form label.iaspect-consent {
  margin: 0;
  accent-color: var(--ias-green-dark);
}

.iaspect-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.iaspect-consent a {
  color: var(--ias-green-2);
}

.iaspect-scan__goals-wrap {
  margin-top: 4px;
  margin-bottom: 14px;
}

/* scan mode (radio buttons, styled like goals) */
.iaspect-mode-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 22px;
}
@media (min-width: 640px) {
  .iaspect-mode-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.iaspect-mode {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ias-gray);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  position: relative;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
}
.iaspect-mode:hover {
  border-color: var(--ias-gray-2);
  background: rgba(255, 255, 255, 0.07);
}
.iaspect-mode input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.iaspect-mode__label {
  line-height: 2;
  display: flex;
  align-items: center;
}
.iaspect-mode__label::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid var(--ias-gray-2);
  background: rgba(0, 0, 0, 0.25);
  display: inline-block;
  margin-right: 10px;
}
.iaspect-mode input:checked + .iaspect-mode__label::before {
  background: var(--ias-green-dark);
  border-color: var(--ias-green-dark);
  box-shadow: 0 0 0 4px rgba(38, 181, 105, 0.22);
}
.iaspect-mode:has(input:checked) {
  border-color: var(--ias-green-dark);
  background: rgba(38, 181, 105, 0.18);
}

/* goals are rendered inside .iaspect-scan__goals by scan.js */
.iaspect-goals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 640px) {
  .iaspect-goals-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 980px) {
  .iaspect-goals-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.iaspect-goal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ias-gray);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  position: relative;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 0 !important;
}
.iaspect-goal:hover {
  border-color: var(--ias-gray-2);
  background: rgba(255, 255, 255, 0.07);
}
.iaspect-goal input {
  /* hide native checkbox but keep it accessible */
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.iaspect-goal__label {
  line-height: 2;
  display: flex;
  align-items: center;
}

/* custom check indicator */
.iaspect-goal__label::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--ias-gray-2);
  background: rgba(0, 0, 0, 0.25);
  display: inline-block;
  margin-right: 10px;
}

/* checked state: dark green */
.iaspect-goal input:checked + .iaspect-goal__label::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' height='10px' viewBox='0 0 9.12 8.5' fill='%233b3b3b'%3E%3Cpolygon points='7.62 0 3.12 5.62 1.38 3.88 0 5.25 3.25 8.5 9.12 1.21 7.62 0'/%3E%3C/svg%3E");
  padding: 2px;
  line-height: 0;
  border-color: var(--ias-green-dark);
  background: var(--ias-green-dark);
  box-shadow: 0 0 0 4px rgba(38, 181, 105, 0.22);
}

.iaspect-goal input:checked + .iaspect-goal__label {
  color: var(--ias-mint);
}

/* highlight the whole card when selected (supported in modern browsers) */
.iaspect-goal:has(input:checked) {
  border-color: var(--ias-green-dark);
  background: rgba(38, 181, 105, 0.18);
}

.iaspect-goals-hint {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.iaspect-scan .iaspect-scan__start {
  margin-top: 16px;
  border-color: var(--ias-green-dark);
  background-color: transparent !important;
  transition: 150ms;
  color: var(--ias-green-dark);
}
.iaspect-scan .iaspect-scan__start:hover {
  border-color: var(--ias-green) !important;
  background-color: var(--ias-green) !important;
  color: var(--ias-white);
}
.iaspect-scan .iaspect-scan__start:active {
  transform: translateY(1px);
}
.iaspect-scan .iaspect-scan__start:disabled,
.iaspect-scan .iaspect-scan__start:disabled:hover {
  cursor: not-allowed;
  border-color: var(--ias-gray-2) !important;
  background: var(--ias-charcoal) !important;
  color: var(--ias-gray-2) !important;
}

.iaspect-scan__status {
  margin-top: 0;
  font-weight: 650;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--ias-white-0d);
  border: 1px solid var(--ias-gray);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
}

/* nicer status layout (phase line + subline) */
.iaspect-status__row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.iaspect-status__text {
  font-weight: 750;
  letter-spacing: 0.1px;
  display: flex;
}

.iaspect-status__text::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 20 20' fill='%23fff'%3E%3Cpath d='M18.36,10c-.74,0-1.34.55-1.48,1.28-.26,1.42-.95,2.69-1.94,3.67-1.27,1.27-3.02,2.05-4.95,2.05h0c-3.87,0-7-3.13-7-7s3.13-7,7-7c1.39,0,2.78.41,3.97,1.23.61.42,1.42.38,1.95-.14.67-.67.55-1.78-.23-2.32C13.98.59,11.99,0,10,0,4.48,0,0,4.48,0,10s4.48,10,10,10c4.91,0,8.99-3.53,9.84-8.2.17-.93-.53-1.8-1.48-1.8Z'/%3E%3C/svg%3E");
  height: 20px;
  width: 20px;
  margin-right: 8px;
  animation-name: loader;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/* if scan is stopped/blocked: replace spinner with a warning icon */
.iaspect-status__text.iaspect-status__text--stopped::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23CE6E5F' d='M1 21h22L12 2 1 21z'/%3E%3Cpath fill='%232C2C2C' d='M12 16.3c-.55 0-1 .45-1 1v.4c0 .55.45 1 1 1s1-.45 1-1v-.4c0-.55-.45-1-1-1zm-1-7.9.25 6h1.5l.25-6h-2z'/%3E%3C/svg%3E");
  animation: none;
}
@keyframes loader {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.iaspect-status__sub {
  width: 100%;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 2px;
}

.iaspect-spinner {
  /* progress bar driven by JS via --iaspect-progress */
  display: inline-block;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  position: relative;
  margin: 8px;
}

.iaspect-spinner::after {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(var(--iaspect-progress, 0) * 100%);
  background: linear-gradient(90deg, var(--ias-green-dark), var(--ias-green-2));
  border-radius: 999px;
  transition: width 220ms ease;
}

/* ---------- result / cards ---------- */
.iaspect-scan__result {
  margin-top: 16px;
}

.iaspect-result {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}

.iaspect-card {
  background: var(--ias-white-0d);
  border: 1px solid var(--ias-gray);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
}

.iaspect-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.iaspect-card__header .iaspect-pagehead {
  word-break: break-word;
}

.iaspect-card__title {
  margin: 0;
  font-size: 1.15rem;
  margin-top: 4px;
}

.iaspect-pagehead {
  margin-top: 4px;
}

.iaspect-card__subtitle {
  margin-top: 4px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

.iaspect-card__body {
  padding: 16px;
}

.iaspect-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 750;
  border: 1px solid var(--ias-gray);
  background-color: transparent;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  margin-left: auto;
}

.iaspect-badge--info {
  border: 1px solid var(--ias-gray-2);
  background-color: transparent;
  color: var(--ias-mint);
}

.iaspect-badge--neutral {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.iaspect-badge--danger {
  border-color: rgba(206, 110, 95, 0.85);
  background: rgba(206, 110, 95, 0.14);
  color: rgba(255, 255, 255, 0.95);
}

.iaspect-card--blocked .iaspect-card__header {
  justify-content: start;
  border-bottom-color: rgba(206, 110, 95, 0.22);
}

.iaspect-card--blocked .iaspect-card__header::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23CE6E5F' d='M1 21h22L12 2 1 21z'/%3E%3Cpath fill='%232C2C2C' d='M12 16.3c-.55 0-1 .45-1 1v.4c0 .55.45 1 1 1s1-.45 1-1v-.4c0-.55-.45-1-1-1zm-1-7.9.25 6h1.5l.25-6h-2z'/%3E%3C/svg%3E");
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.iaspect-card--blocked .iaspect-card__headgroup {
  display: flex;
  flex-direction: column;
}

.iaspect-prose p {
  margin: 0 0 10px 0;
}
.iaspect-prose p:last-child {
  margin-bottom: 0;
}

.iaspect-bullets {
  margin-top: 16px;
  padding-left: 30px;
}
.iaspect-bullets li {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.9);
}

.iaspect-tldr {
  margin-top: 12px;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(97, 206, 112, 0.6);
  background: rgba(97, 206, 112, 0.1);
}
.iaspect-tldr h4,
.iaspect-tldr h5 {
  margin: 0 0 8px 0;
}

.iaspect-pages__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-top: 6px;
}

.iaspect-grid {
  margin-top: 12px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

/* Elementor theme: avoid extra margin under result lists */
.page-content .elementor-element .elementor-widget-container ul {
  margin-bottom: 0;
}

.iaspect-grid__item {
  display: flex;
}

.iaspect-card--page {
  width: 100%;
}

.iaspect-prose {
  padding: 8px;
}

/* accordion for full page analysis */
.iaspect-accordion {
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.iaspect-accordion__summary {
  cursor: pointer;
  user-select: none;
  padding: 10px 12px;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.9);
  list-style: none;
}
.iaspect-accordion__summary::-webkit-details-marker {
  display: none;
}
.iaspect-accordion__summary::after {
  content: "▾";
  float: right;
  opacity: 0.8;
  transform: translateY(-1px);
}
.iaspect-accordion[open] .iaspect-accordion__summary::after {
  content: "▴";
}
.iaspect-accordion__body {
  padding-top: 6px;
}

/* featured first page spans 2 columns on 2-col layout */
@media (min-width: 860px) {
  .iaspect-grid__item.iaspect-card--featured {
    grid-column: span 2;
  }
}

/* visitor meta card */
.iaspect-meta {
  margin: 11px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 860px) {
  .iaspect-meta {
    grid-template-columns: 1fr 1fr;
  }
}
.iaspect-meta__row {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--ias-gray);
  background: rgba(0, 0, 0, 0.18);
}
.iaspect-meta__label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
}
.iaspect-meta__value {
  font-weight: 650;
  word-break: break-word;
}

/* other-goal input */
.iaspect-goal-other {
  margin-top: 10px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--ias-gray);
  background: rgba(0, 0, 0, 0.18);
}
.iaspect-goal-other label {
  display: block;
  font-size: 0.92rem;
  font-weight: 650;
  margin: 0 0 6px 0;
}
.iaspect-goal-other__input {
  width: 100%;
  padding: 11px 12px;
  border-radius: 999px;
  border: 1px solid var(--ias-gray);
  background: rgba(0, 0, 0, 0.25);
  color: var(--ias-white);
  outline: none;
}
.iaspect-goal-other__input:focus {
  border-color: var(--ias-green);
}
@media (min-width: 860px) {
  .iaspect-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1180px) {
  .iaspect-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.iaspect-pagehead__title {
  font-weight: 850;
}
/* scan.js no longer outputs these elements */
.iaspect-pagehead__url {
  display: none;
}
.iaspect-pagehead__badges {
  display: none;
}

.iaspect-debug {
  margin-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  padding-top: 10px;
}
.iaspect-debug summary {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.75);
}
.iaspect-debug-pre {
  margin-top: 8px;
  font-size: 12px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: auto;
}

/* subtle error tint if needed */
.iaspect-error {
  color: var(--ias-salmon);
}

/* inline notices (replaces browser alert()) */
.iaspect-scan__notice {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
}
.iaspect-scan__noticeTitle {
  font-weight: 850;
  margin-bottom: 4px;
}
.iaspect-scan__noticeText {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  line-height: 1.35;
}
.iaspect-scan__notice--error {
  border-color: rgba(206, 110, 95, 0.8);
  background: rgba(206, 110, 95, 0.12);
}
.iaspect-scan__notice--success {
  border-color: rgba(97, 206, 112, 0.55);
  background: rgba(97, 206, 112, 0.1);
}
.iaspect-scan__notice--info {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

/* --- customer-mode (whitelist) styling --- */
.iaspect-card--customer .iaspect-card__header {
  justify-content: start;
  border-bottom-color: rgba(97, 206, 112, 0.22);
}

.iaspect-card--customer .iaspect-card__header::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2384E592' d='M12 12c2.21 0 4-1.79 4-4S14.21 4 12 4 8 5.79 8 8s1.79 4 4 4zm0 2c-3.33 0-8 1.67-8 5v1h16v-1c0-3.33-4.67-5-8-5z'/%3E%3C/svg%3E");
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  opacity: 0.95;
}

.iaspect-customer-message {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(97, 206, 112, 0.45);
  background: rgba(97, 206, 112, 0.1);
}

/* customer-mode topics */
.iaspect-topics {
  margin-top: 16px;
}
.iaspect-topics h4 {
  margin: 0 0 10px 0;
}
.iaspect-topics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 860px) {
  .iaspect-topics__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.iaspect-topic {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.12);
}
.iaspect-topic__title {
  font-weight: 850;
  margin-bottom: 6px;
}
.iaspect-topic__desc {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}

/* customer-mode CTA (distinct from TLDR) */
.iaspect-cta {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(132, 229, 146, 0.65);
  background: rgba(132, 229, 146, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 640px) {
  .iaspect-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.iaspect-cta__text {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}
.iaspect-cta__btn,
a.iaspect-cta__btn,
.iaspect-download__btn,
a.iaspect-download__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ias-green-dark);
  background: var(--ias-green-dark);
  color: var(--ias-white);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: 150ms ease;
}
.iaspect-cta__btn:hover,
a.iaspect-cta__btn:hover,
.iaspect-download__btn:hover,
a.iaspect-download__btn:hover {
  background: var(--ias-green);
  border-color: var(--ias-green);
}

/* Download report callout */
.iaspect-download {
  margin: 0 0 12px 0;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--ias-gray);
  background: rgba(255, 255, 255, 0.06);
}

.iaspect-download__label {
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.iaspect-download__row {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 640px) {
  .iaspect-download__row {
    flex-direction: column-reverse;
  }
  .iaspect-download__hint {
    margin-right: 0;
    margin-bottom: 6px;
  }
}

.iaspect-download__hint {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-right: 10px;
}
