.ski-openings-head {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
    max-width: 980px;
    margin: 0 auto 28px;
  }
  
  .ski-status {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    padding: 14px 18px;
    border-radius: 12px;
  }
  
  .ski-status span {
    font-size: 13px;
  }
  
  .ski-status strong {
    font-size: 18px;
  }
  
  .ski-status.is-open {
    background: #e6f6ea;
    color: #098c35;
  }
  
  .ski-status.is-closed {
    background: #fae4e8;
    color: #8b2330;
  }
  
  .ski-updates {
    padding: 14px 18px;
    border-radius: 12px;
    background: #f7f3f4;
    border-left: 5px solid #7b4a5d;
  }
  
  .ski-updates__title {
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #7b4a5d;
  }
  
  .ski-updates__content {
    font-size: 16px;
    line-height: 1.45;
  }
  
  .ski-updates__content p {
    margin: 0;
  }
  
  .calendars__container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 150px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .cmonth__title {
    margin: 0 0 18px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
  }
  
  .cmonth__grid {
    display: grid;
    grid-template-columns: repeat(7, 34px);
    gap: 8px;
    justify-content: center;
  }
  
  .cmonth__label {
    text-align: center;
    font-weight: 800;
    color: #7d858b;
  }
  
  .cmonth__day {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 800;
    color: #fff;
    transition: transform .15s ease;
  }
  
  .cmonth__day:hover {
    transform: scale(1.08);
  }
  
  .cmonth__day--empty {
    background: transparent;
  }
  
  .cmonth__day.is-open {
    background: #18a94c;
  }
  
  .cmonth__day.is-info {
    background: #d49a22;
  }
  
  .cmonth__day.is-closed {
    background: #f3dbe1;
    color: #a37885;
  }
  
  .calendars-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 42px;
    margin-top: 34px;
    font-size: 12px;
    text-transform: uppercase;
  }
  
  .calendars-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .calendars-legend i {
    width: 13px;
    height: 13px;
    border-radius: 50%;
  }
  
  .legend-open {
    background: #18a94c;
  }
  
  .legend-info {
    background: #d49a22;
  }
  
  .legend-closed {
    background: #f3a6b7;
  }
  
  @media (max-width: 900px) {
    .calendars__container {
      grid-template-columns: 1fr;
    }
  
    .ski-openings-head {
      grid-template-columns: 1fr;
    }
  }