:root {
  --sky-a: #05070f;
  --sky-b: #0c1730;
  --sky-c: #16264a;
  --card-bg: rgba(18, 28, 58, 0.72);
  --card-bg-2: rgba(10, 18, 40, 0.85);
  --card-border: rgba(150, 190, 255, 0.35);
  --accent: #6ea8ff;
  --text-shadow-soft: -2px 2px 6px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background:
    /* moon glow, top right */
    radial-gradient(
      circle at 88% 8%,
      rgba(255, 255, 240, 0.55) 0%,
      rgba(255, 255, 240, 0.12) 6%,
      transparent 16%
    ),
    radial-gradient(
      circle at 88% 8%,
      rgba(160, 190, 255, 0.25) 0%,
      transparent 30%
    ),
    /* scattered stars */
    radial-gradient(1.5px 1.5px at 10% 15%, #fff, transparent),
    radial-gradient(1px 1px at 22% 40%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 35% 12%, #fff, transparent),
    radial-gradient(1px 1px at 48% 30%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 60% 60%, #fff, transparent),
    radial-gradient(1px 1px at 72% 22%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 15% 70%, #fff, transparent),
    radial-gradient(1px 1px at 30% 85%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 78% 78%, #fff, transparent),
    radial-gradient(1px 1px at 92% 55%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 55% 88%, #fff, transparent),
    radial-gradient(1px 1px at 5% 50%, #fff, transparent),
    /* base sky */
    linear-gradient(
        165deg,
        var(--sky-a) 0%,
        var(--sky-b) 55%,
        var(--sky-c) 100%
      );
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  width: 100%;
  min-height: 100vh;
  padding: 40px;
  position: relative;
  z-index: 1;
}

/* soft drifting clouds, purely decorative */
body::before,
body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 160px;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 45% 100% at 20% 50%,
      rgba(160, 185, 230, 0.1),
      transparent 70%
    ),
    radial-gradient(
      ellipse 35% 100% at 55% 50%,
      rgba(160, 185, 230, 0.08),
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 100% at 85% 50%,
      rgba(160, 185, 230, 0.09),
      transparent 70%
    );
  filter: blur(4px);
}

body::before {
  top: 22%;
}

body::after {
  bottom: 12%;
  opacity: 0.8;
}

header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.weather-type {
  color: rgba(210, 225, 255, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.weather-type p {
  font-size: 12px;
  margin: 0;
}

#weather-icon {
  font-size: 40px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.degree-switch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100px;
  width: 100%;
  height: 40px;
  padding: 4px;
  background: rgba(10, 18, 40, 0.55);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.degree-switch__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  font-size: 18px;
  font-weight: 400;
  color: rgba(210, 225, 255, 0.55);
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.25s ease;
  user-select: none;
}

.degree-switch__btn:hover {
  color: #ffffff;
}

.degree-switch__btn.active {
  background: linear-gradient(135deg, var(--accent), #4a7de0);
  color: #ffffff;
  box-shadow: 0 3px 14px rgba(90, 140, 255, 0.5);
}

.main {
  position: relative;
  z-index: 2;
  flex: 1;
}

.weather-today {
  background: linear-gradient(165deg, var(--card-bg) 0%, var(--card-bg-2) 100%);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 40px;
  position: relative;
  box-shadow:
    0 30px 70px -20px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.weather-today::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(140, 190, 255, 0.7),
    transparent
  );
  border-radius: 100%;
}

.weather-today::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 35%
  );
  pointer-events: none;
}

.city-today {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.favorite-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: rgba(210, 225, 255, 0.45);
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.favorite-toggle:hover {
  color: #ffd66b;
  background: rgba(255, 214, 107, 0.12);
}

.favorite-toggle.active {
  color: #ffd66b;
}

.favorite-toggle.active svg {
  fill: #ffd66b;
}

.city-today__name--error {
  color: #ff8a8a;
}

.favorites-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.favorites-bar.hidden {
  display: none;
}

.favorite-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px 7px 14px;
  background: rgba(110, 168, 255, 0.12);
  border: 1px solid rgba(140, 180, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  color: #dce6ff;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.favorite-chip:hover {
  background: rgba(110, 168, 255, 0.22);
  border-color: rgba(140, 180, 255, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(20, 40, 90, 0.35);
}

.favorite-chip__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: rgba(220, 230, 255, 0.6);
  font-size: 14px;
  line-height: 1;
  transition: all 0.2s ease;
}

.favorite-chip__remove:hover {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.15);
}

.city-today p {
  font-size: 16px;
  color: rgba(210, 225, 255, 0.55);
  margin: 0;
}

.city-today__pin {
  font-size: 14px;
  opacity: 0.85;
}

.city-today__name {
  color: #dce6ff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: var(--text-shadow-soft);
}

.degree-today {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #f4f8ff;
}

.degree-today__number {
  font-size: 148px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(180deg, #ffffff 0%, #a9c6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: var(--text-shadow-soft);
}

.degree-today__icon {
  margin-top: 14px;
  font-size: 30px;
  font-weight: 400;
  color: #a9c6ff;
  opacity: 0.95;
  text-shadow: var(--text-shadow-soft);
}

.date-today {
  display: flex;
  flex-direction: column;
  color: #f4f8ff;
  margin-bottom: 30px;
}

.date-today__month {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-shadow: var(--text-shadow-soft);
}

.date-today__day-and-time {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 300;
  font-size: 20px;
  color: rgba(220, 230, 255, 0.9);
  text-shadow: var(--text-shadow-soft);
  flex-wrap: wrap;
}

.separator {
  color: rgba(140, 170, 230, 0.45);
  font-size: 15px;
  font-weight: 400;
}

.info-today {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.info-today__block {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f4f8ff;
  background: rgba(120, 160, 255, 0.1);
  border: 1px solid rgba(140, 180, 255, 0.2);
  padding: 10px 16px;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.info-today__block:hover {
  transform: translateY(-2px);
  background: rgba(120, 160, 255, 0.2);
}

.info-today__block img {
  width: 20px;
  height: 20px;
  opacity: 0.9;
  filter: brightness(0) saturate(100%) invert(85%) sepia(15%) saturate(600%)
    hue-rotate(180deg);
}

.info-today__block svg {
  width: 20px;
  height: 20px;
  opacity: 0.9;
  flex-shrink: 0;
  color: #a9c6ff;
}

.info-today__text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(225, 235, 255, 0.92);
  text-shadow: var(--text-shadow-soft);
  white-space: nowrap;
}

.clothing-advice {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(120, 160, 255, 0.08);
  border: 1px solid rgba(140, 180, 255, 0.18);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  color: rgba(225, 235, 255, 0.92);
  font-size: 14px;
  font-weight: 300;
  text-shadow: var(--text-shadow-soft);
  transition: all 0.2s ease;
}

.clothing-advice:hover {
  background: rgba(120, 160, 255, 0.14);
  border-color: rgba(140, 180, 255, 0.32);
}

.clothing-advice__icon {
  flex-shrink: 0;
  color: var(--accent);
}

.sun-path {
  margin-top: 14px;
  padding: 16px 20px 12px;
  background: rgba(120, 160, 255, 0.06);
  border: 1px solid rgba(140, 180, 255, 0.14);
  backdrop-filter: blur(12px);
  border-radius: 16px;
}

.sun-path__track-wrap {
  position: relative;
  width: 100%;
  height: 60px;
}

.sun-path__track {
  width: 100%;
  height: 100%;
  display: block;
}

.sun-path__track path {
  stroke: rgba(255, 255, 255, 0.15);
  transition: stroke 0.4s ease;
}

.sun-path__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffd66b;
  box-shadow: 0 0 8px rgba(255, 214, 107, 0.8);
  transform: translate(-50%, -50%);
  transition: left 0.6s ease, top 0.6s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.sun-path--night .sun-path__track path {
  stroke: rgba(255, 255, 255, 0.08);
}

.sun-path--night .sun-path__dot {
  background: #b8c6e6;
  box-shadow: 0 0 8px rgba(184, 198, 230, 0.6);
}

.sun-path__times {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(210, 225, 255, 0.65);
}

.sun-path__times b {
  color: #dce6ff;
  font-weight: 500;
}

/* ====== ПОДСКАЗКИ (TOOLTIP) ====== */
[data-tooltip] {
  position: relative;
  cursor: help;
  outline: none;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: max-content;
  max-width: 200px;
  padding: 10px 12px;
  background: rgba(12, 20, 42, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(140, 180, 255, 0.28);
  border-radius: 12px;
  color: #dce6ff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  text-shadow: none;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
  z-index: 50;
}

[data-tooltip]:hover::after,
[data-tooltip]:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ====== SEARCH ====== */
.city-search {
  flex: 1;
  max-width: 180px;
  margin: 0 12px;
}

.city-search__wrapper {
  display: flex;
  align-items: center;
  background: rgba(10, 18, 40, 0.55);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 2px;
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.06);
}

.city-search__wrapper:focus-within {
  border-color: var(--accent);
  box-shadow:
    0 0 24px rgba(110, 168, 255, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.06);
}

.city-search__input {
  flex: 1;
  padding: 8px 16px;
  background: transparent;
  border: none;
  outline: none;
  color: #dce6ff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  min-width: 80px;
}

.city-search__input::placeholder {
  color: rgba(210, 225, 255, 0.35);
  font-weight: 300;
}

.city-search__input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.city-search__btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(110, 168, 255, 0.15);
  border: none;
  color: #a9c6ff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-right: 2px;
}

.city-search__btn:hover {
  background: rgba(110, 168, 255, 0.3);
  transform: scale(1.05);
}

.city-search__btn:active {
  transform: scale(0.92);
}

.feels-like-block {
  color: var(--accent);
  font-size: 14px;
}

.forecast-hours-wrap {
  margin-top: 24px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(210, 225, 255, 0.55);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(110, 168, 255, 0.8);
}

.forecast-hours {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 6px 2px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.forecast-hour {
  flex: 0 0 auto;
  min-width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 10px 8px;
  border-radius: 12px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  transition: all 0.25s ease;
}

.forecast-hour:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(140, 180, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(20, 40, 90, 0.35);
}

.forecast-hour__time {
  color: rgba(210, 225, 255, 0.7);
  font-size: 11px;
}

.forecast-hour__icon {
  width: 28px;
  height: 28px;
}

.forecast-hour__temp {
  font-weight: 500;
}

.forecast-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.forecast-day {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 10px 5px;
  border-radius: 12px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  transition: all 0.25s ease;
}

.forecast-day:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(140, 180, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(20, 40, 90, 0.35);
}

/* ======================================== */
/* ====== ТОЛЬКО ТЕЛЕФОНЫ ====== */
/* ======================================== */

@media screen and (max-width: 768px) {
  .container {
    padding: 20px;
  }

  .weather-today {
    padding: 28px;
  }

  .degree-today__number {
    font-size: 100px;
  }
}

/* ГЛАВНЫЙ АДАПТИВ ДЛЯ ТЕЛЕФОНОВ */
@media screen and (max-width: 600px) {
  body {
    align-items: stretch;
  }

  .container {
    padding: 16px;
    min-height: 100vh;
    max-width: 100%;
  }

  .weather-today {
    padding: 24px;
    border-radius: 24px;
  }

  /* Хедер - перестраиваем под телефон */
  header {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
  }

  .weather-type {
    gap: 8px;
  }

  .weather-type p {
    font-size: 11px;
  }

  #weather-icon {
    font-size: 32px;
  }

  .degree-switch {
    max-width: 80px;
    height: 34px;
  }

  .degree-switch__btn {
    font-size: 15px;
  }

  /* Поиск - на всю ширину */
  .city-search {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin: 4px 0 0;
  }

  .city-search__input {
    font-size: 14px;
    padding: 10px 16px;
    min-width: 50px;
  }

  .city-search__btn {
    width: 36px;
    height: 36px;
  }

  /* Город */
  .city-today {
    gap: 10px;
    margin-bottom: 12px;
  }

  .city-today p {
    font-size: 13px;
  }

  .city-today__name {
    font-size: 14px;
    letter-spacing: 1px;
  }

  /* Температура */
  .degree-today {
    gap: 6px;
  }

  .degree-today__number {
    font-size: 80px;
    letter-spacing: -2px;
  }

  .degree-today__icon {
    margin-top: 8px;
    font-size: 24px;
  }

  /* Дата */
  .date-today {
    margin-bottom: 20px;
  }

  .date-today__month {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .date-today__day-and-time {
    font-size: 16px;
    gap: 8px;
  }

  .separator {
    display: none;
  }

  /* Инфо блоки */
  .info-today {
    gap: 8px;
  }

  .info-today__block {
    padding: 8px 14px;
    border-radius: 14px;
    gap: 8px;
  }

  .info-today__text {
    font-size: 13px;
  }

  [data-tooltip]::after {
    max-width: min(180px, 60vw);
    font-size: 11px;
    padding: 8px 10px;
  }

  .info-today__wind[data-tooltip]::after {
    left: 0;
    transform: translateX(0) translateY(4px);
  }

  .info-today__wind[data-tooltip]:hover::after,
  .info-today__wind[data-tooltip]:focus-visible::after {
    transform: translateX(0) translateY(0);
  }

  .info-today__block img {
    width: 18px;
    height: 18px;
  }

  /* Прогноз */
  .forecast-week {
    gap: 6px;
    margin-top: 16px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 2px 8px;
    -webkit-overflow-scrolling: touch;
  }

  .forecast-day {
    padding: 8px 4px;
    font-size: 11px;
    gap: 6px;
    min-width: 46px;
  }
}

/* МАЛЕНЬКИЕ ТЕЛЕФОНЫ (до 400px) */
@media screen and (max-width: 400px) {
  .container {
    padding: 12px;
  }

  .weather-today {
    padding: 18px;
    border-radius: 20px;
  }

  .degree-today__number {
    font-size: 60px;
  }

  .degree-today__icon {
    font-size: 20px;
    margin-top: 6px;
  }

  .date-today__month {
    font-size: 18px;
  }

  .date-today__day-and-time {
    font-size: 14px;
  }

  .info-today__block {
    padding: 6px 12px;
    border-radius: 12px;
  }

  .info-today__text {
    font-size: 12px;
  }

  .info-today__block img {
    width: 16px;
    height: 16px;
  }

  .city-today__name {
    font-size: 13px;
  }

  #weather-icon {
    font-size: 28px;
  }

  .degree-switch {
    max-width: 70px;
    height: 30px;
  }

  .degree-switch__btn {
    font-size: 13px;
  }

  .city-search__input {
    font-size: 13px;
    padding: 8px 12px;
  }

  .forecast-day {
    font-size: 10px;
    padding: 6px 3px;
    min-width: 40px;
  }
}

/* ОЧЕНЬ МАЛЕНЬКИЕ (до 350px) */
@media screen and (max-width: 350px) {
  .container {
    padding: 8px;
  }

  .weather-today {
    padding: 14px;
    border-radius: 16px;
  }

  .degree-today__number {
    font-size: 48px;
    letter-spacing: -1px;
  }

  .degree-today__icon {
    font-size: 16px;
    margin-top: 4px;
  }

  .date-today__month {
    font-size: 16px;
  }

  .date-today__day-and-time {
    font-size: 12px;
    gap: 6px;
  }

  .separator {
    font-size: 10px;
  }

  .info-today {
    gap: 6px;
  }

  .info-today__block {
    padding: 4px 10px;
    border-radius: 10px;
    gap: 6px;
  }

  .info-today__text {
    font-size: 11px;
  }

  .info-today__block img {
    width: 14px;
    height: 14px;
  }

  .city-today p {
    font-size: 11px;
  }

  .city-today__name {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  #weather-icon {
    font-size: 24px;
  }

  .weather-type p {
    font-size: 10px;
  }

  .degree-switch {
    max-width: 60px;
    height: 26px;
    padding: 3px;
  }

  .degree-switch__btn {
    font-size: 12px;
  }

  .city-search__input {
    font-size: 12px;
    padding: 6px 10px;
  }

  .city-search__btn {
    width: 30px;
    height: 30px;
  }

  .forecast-week {
    gap: 4px;
  }

  .forecast-day {
    font-size: 9px;
    padding: 4px 2px;
    gap: 4px;
    min-width: 34px;
    border-radius: 8px;
  }
}

/* АЛЬБОМНАЯ ОРИЕНТАЦИЯ */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .container {
    padding: 12px 20px;
    min-height: auto;
  }

  .weather-today {
    padding: 16px 20px;
    border-radius: 20px;
  }

  .degree-today__number {
    font-size: 64px;
  }

  .degree-today__icon {
    font-size: 20px;
    margin-top: 4px;
  }

  .date-today {
    margin-bottom: 12px;
  }

  .date-today__month {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .date-today__day-and-time {
    font-size: 14px;
  }

  .info-today__block {
    padding: 4px 12px;
  }

  .city-today {
    margin-bottom: 8px;
  }

  .forecast-week {
    margin-top: 12px;
  }
}
