.newsSwitcher {
  width: 100%;
  background: #1e1e1e;
  color: #ffffff;
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.newsSwitcher__inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  padding: 26px 107px;
  box-sizing: border-box;
}

.newsSwitcher__divider {
  width: 1px;
  height: 109.5px;
  background: rgba(255, 255, 255, 0.55);
  justify-self: center;
}

.newsSwitcher__item {
  display: block;
  text-decoration: none;
  color: inherit;
  max-width: 533px;
}

.newsSwitcher__cap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.newsSwitcher__cap--right {
  justify-content: flex-end;
  width: 100%;
}

.newsSwitcher__capLabel {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #ffffff;
}

.newsSwitcher__capIcon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.newsSwitcher__row {
  display: grid;
  grid-template-columns: 91px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.newsSwitcher__row--right {
  grid-template-columns: minmax(0, 1fr) 91px;
}

.newsSwitcher__thumb {
  width: 91px;
  height: 91px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.newsSwitcher__thumbImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.newsSwitcher__thumbPh {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
}

.newsSwitcher__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.newsSwitcher__item--right .newsSwitcher__content {
  align-items: flex-end;
  text-align: right;
  grid-column: 1;
  grid-row: 1;
}

.newsSwitcher__item--right .newsSwitcher__thumb {
  grid-column: 2;
}

.newsSwitcher__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
}

.newsSwitcher__excerpt {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  opacity: 0.95;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newsSwitcher__date {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #ff8000;
}

.newsSwitcher__spacer {
  height: 1px;
}

@media (max-width: 1024px) {
  .newsSwitcher__inner {
    padding: 24px 32px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .newsSwitcher__divider {
    display: none;
  }

  .newsSwitcher__item {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .newsSwitcher__inner {
    padding: 20px;
    min-height: auto;
  }

  .newsSwitcher__row {
    gap: 16px;
  }

  .newsSwitcher__thumb {
    width: 72px;
    height: 72px;
  }

  .newsSwitcher__row {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .newsSwitcher__row--right {
    grid-template-columns: minmax(0, 1fr) 72px;
  }
}
