.cw-historia {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  align-items: flex-end;
  min-height: var(--cw-historia-min-height, 200px);
  margin-top: calc((var(--cw-historia-min-height, 200px) - 250px) * -1);
}

.cw-historia__item {
  flex: 0 0 calc((100% / var(--cw-historia-count, 1)) * 1.1);
  padding: 16px 64px 16px 16px;
  min-width: 0;
  border-radius: 999px;
  border-bottom-left-radius: 0;
  border: 2px solid currentColor;
  margin-left: calc(-1 * (100% / var(--cw-historia-count, 1)) * 0.1);
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: height 0.2s ease;
}

.cw-historia__item:first-child {
  margin-left: 0;
}

.cw-historia__item:hover {
  height: 300px;
}

.cw-historia__year {
  font-weight: 700;
  margin-bottom: 8px;
}

.cw-historia__text {
  font-size: 14px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.2s ease,
    opacity 0.2s ease;
}

.cw-historia__item:hover .cw-historia__text {
  max-height: 200px;
  opacity: 1;
}

.cw-obra-social-card {
  overflow: hidden;
}

.cw-obra-social-card__top {
  background-size: cover;
  background-position: center;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 30px 20px;
  border-radius: 108px 108px 108px 0;
  cursor: pointer;
  user-select: none;
}

.cw-obra-social-card__title {
  background: none;
  color: #fff;
  padding: 0;
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Monda", sans-serif;
  font-size: 58px;
  line-height: 1.1;
  font-weight: 400;
  margin-right: 0.5em;
}

.cw-obra-social-card__chevron {
  width: 50px;
  height: 50px;
  display: inline-block;
  background: url("../images/chevron-top-panel.svg") no-repeat center / contain;
  transform: rotate(-90deg);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}

.cw-obra-social-card.is-open .cw-obra-social-card__chevron {
  transform: rotate(0deg);
}

.cw-obra-social-card__bottom {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease,
    opacity 100ms ease;
  opacity: 0;
  padding: 0 30px;
  background: #fff;
  border: 1px solid #d24930;
  box-sizing: content-box;
  position: relative;
  font-family: "Century Gothic Regular", sans-serif;
}

.cw-obra-social-card__bottom:not([hidden]) {
  margin-top: 15px;
  padding: 40px 30px;
  overflow: visible;
}

.cw-obra-social-card__bottom:not([hidden])::before {
  content: "";
  position: absolute;
  top: -68.76px;
  right: -1px;
  width: 94.23px;
  height: 76.11px;
  background: url("../images/bottom-panel-tr-corner.svg") no-repeat;
  pointer-events: none;
}
