div.weather2-item {
  border: none;
  background: rgb(var(--c-neutral-lightest));
  padding: 2rem;
  margin: 0;
  color: rgb(var(--c-neutral-dark));
}

div.weather2-item .primary {
  display: grid;
  grid-template-columns:  120px 1fr;
  grid-gap: var(--g-gap-s);
}

div.weather2-item .weather-header h3 {
  text-align: left;
  color: rgb(var(--c-primary));
  font-size: var(--f-size-l-2);
  font-weight: var(--f-weight-sb);
}

div.weather2-item .primary .weather-data {
  padding: 0;
  align-self: end;
}

div.weather2-item .weather-data-temperature {
  color: rgb(var(--c-secondary));
  font-size: var(--f-size-l-3);
  font-family: var(--f-family-2);
  font-weight: var(--f-weight-sb);
}

div.weather2-item .primary .weather-icon {
  padding: 0;
  display: flex;
  min-height: 7.15rem;
}

.weather-icon img {
  align-self: flex-end;
  max-height: 120px;
  object-fit: none;
  height: auto;
  width: auto;
}

.tx-weather2 .secondary,
.page.-sub .tx-weather2 .font__speciallink {
  display: none;
}

.page.-sub .tx-weather2 .secondary {
  display: block;
}

.page.-sub div.weather2-item {
  background: rgb(var(--c-neutral-lighter));
}

.page.-sub .weather-header {
  grid-column: span 2;
}

.page.-sub .weather-icon {
  grid-row: span 2;
}

/* =============================================================================
   Media Queries
   ========================================================================== */


@media (min-width: 1024px) {
  .page.-sub .primary {
    grid-template-columns: 120px 1fr 1fr;
  }

  .page.-sub .tx-weather2 .secondary {
    text-align: left;
  }

  .page.-sub .weather-header {
    grid-column: span 3;
  }

  .page.-sub .weather-icon {
    grid-row: auto;
  }
}