:root {
  --acaw-bg: #fff;
  --acaw-fg: #111;
  --acaw-border: #eee;
  --acaw-subtle: #666;
}

.acaw-widget {
  /*font-family: system-ui, Arial, sans-serif;
  border: 1px solid var(--acaw-border);
  border-radius: 12px;*/
  padding: 4px 0;
  /*color: var(--acaw-fg);*/
  border-bottom: 1px solid #dddee2;
}

.acaw-header {
  display: none;
  /*justify-content: space-between;
  margin-bottom: 8px;*/
}

.acaw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.acaw-card {
  /*border: 1px solid var(--acaw-border);
  border-radius: 10px;*/
  padding: 8px 4px 8px 4px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.acaw-icon-col {
  flex: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.acaw-icon {
  width: 28px;
  height: 28px;
  color: var(--wp--preset--color--primary, #329B6B);
}

.acaw-body {
  display: flex;
  flex-direction: column;
  /*gap: 4px;*/
  flex: 1 1 auto;
}

.acaw-day {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--wp--preset--color--slate-700, #56565F);
  font-size: 14px;
  font-family: "Sentient", Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.acaw-day__label {
  color: var(--wp--preset--color--slate-700, #56565F);
  font-size: 14px;
  font-family: "Sentient", Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.acaw-day__sep {
  color: var(--wp--preset--color--slate-700, #56565F);
  font-size: 14px;
  font-family: "Sentient", Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.acaw-day__phrase {
  color: var(--wp--preset--color--slate-700, #56565F);
  font-size: 12px;
  font-family: "Atkinson Hyperlegible Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
}

.acaw-temp {
  color: var(--wp--preset--color--slate-700, #56565F);
  font-size: 12px;
  font-family: "Atkinson Hyperlegible Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
}

.acaw-meta {
  font-size: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--wp--preset--color--slate-500, #8F8F9E);
  font-family: "Atkinson Hyperlegible Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.acaw-meta span {
  white-space: nowrap;
}

@media (max-width: 1239px) {
  .acaw-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .acaw-grid::-webkit-scrollbar {
    display: none;
  }

  .acaw-card {
    flex: 0 0 auto;
    min-width: 220px;
    scroll-snap-align: start;
  }
}

@media (max-width: 768px) {
  .acaw-card {
    min-width: 250px;
  }

  .acaw-icon-col {
    display: none;
  }

  .acaw-day,
  .acaw-day__label,
  .acaw-day__phrase,
  .acaw-day__sep {
    font-size: 15px;
    line-height: 140%;
    font-weight: 300;
  }

  .acaw-day__label {
  color: var(--wp--preset--color--slate-700, #56565F);
  font-family: "Atkinson Hyperlegible Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

  .acaw-temp,
  .acaw-meta {
    font-size: 13px;
    line-height: 140%;
    font-weight: 300;

  }
  .acaw-temp {
    color: var(--wp--preset--color--slate-500, #8F8F9E);
  }  
}

.acaw-skeleton .acaw-shimmer {
  height: 16px;
  background: linear-gradient(90deg, #eee, #f7f7f7, #eee);
  background-size: 200% 100%;
  animation: acawShim 1.4s infinite;
  border-radius: 6px;
}

@keyframes acawShim {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}
