.history {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 10rem;
  overflow: hidden;
  container-type: inline-size;
}
.history .breadcrumb {
  max-width: 100rem;
  width: calc(100% - 6rem);
  margin: 0 auto 1.5rem;
}
.history .page-banner {
  max-width: 100rem;
  width: calc(100% - 6rem);
  margin: 0 auto;
}
.history_tabs {
  max-width: 100rem;
  width: calc(100% - 6rem);
  margin: 4rem auto 2.5rem;
}
.history_tabs_btns {
  padding: 1.5rem 2rem;
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: -5px 5px 10px rgba(76, 172, 226, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.history_tabs_btn {
  padding: 1rem 3rem;
  background: #FFFFFF;
  border: 1px solid #4CACE2;
  border-radius: 0.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  color: #4CACE2;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.history_tabs_btn:hover {
  background: rgba(76, 172, 226, 0.1);
}
.history_tabs_btn.is-active {
  background: #4CACE2;
  color: #FFFFFF;
}
.history_tabs_select {
  display: none;
  width: 100%;
  padding: 1.4rem 5rem 1.4rem 2rem;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'><path fill='none' stroke='%234CACE2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 2rem;
  border: 1px solid #4CACE2;
  border-radius: 1rem;
  box-shadow: -5px 5px 10px rgba(76, 172, 226, 0.2);
  font-size: 1.6rem;
  font-weight: 700;
  color: #4CACE2;
  letter-spacing: 0.05em;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.history_tabs_select:focus-visible {
  outline: 2px solid #4CACE2;
  outline-offset: 2px;
}
@media (max-width: 800px) {
  .history_tabs .history_tabs_btns {
    display: none;
  }
  .history_tabs .history_tabs_select {
    display: block;
  }
}
.history_list {
  max-width: 100rem;
  width: calc(100% - 6rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.history_list_item {
  display: grid;
  grid-template-columns: 1rem 1fr auto;
  grid-template-areas: "bar content image";
  background: #FFFFFF;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: -5px 5px 10px rgba(76, 172, 226, 0.2);
  min-height: 12rem;
}
@container (max-width: 70rem) {
  .history_list_item {
    grid-template-columns: 1rem 1fr;
    grid-template-areas: "bar content" "bar image";
  }
}
.history_list_item_bar {
  grid-area: bar;
  background: #4CACE2;
}
.history_list_item_content {
  grid-area: content;
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-self: start;
}
@container (max-width: 70rem) {
  .history_list_item_content {
    padding: 2rem 2.5rem;
  }
}
.history_list_item_date {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #202020;
}
.history_list_item_title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #202020;
}
.history_list_item_image {
  grid-area: image;
  padding: 2rem 2.5rem 2rem 0;
  display: flex;
  align-items: center;
}
@container (max-width: 70rem) {
  .history_list_item_image {
    padding: 0 2.5rem 2rem;
  }
}
.history_list_item_image_pic {
  width: 35rem;
  max-width: 100%;
  aspect-ratio: 350/200;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.7rem;
  display: block;
}
@container (max-width: 70rem) {
  .history_list_item_image_pic {
    width: 100%;
  }
}
.history_list_item--no-image {
  grid-template-columns: 1rem 1fr;
}
.history_list_item--skeleton {
  min-height: 12rem;
  background: rgba(255, 255, 255, 0.5);
}
.history_list_message {
  padding: 3rem;
  text-align: center;
  color: #707070;
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: -5px 5px 10px rgba(76, 172, 226, 0.2);
}
.history_list_message--error {
  color: #E04343;
}/*# sourceMappingURL=history.css.map */