.hours-page {
  font-family: 'Inter', Arial, sans-serif;
  color: #0b2d3a;
  background: #fff;
}

.hours-main-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  margin-top: 35px;
}

.hours-info-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}

/* ==========================
   TITRE
========================== */

.hours-title-row{
  display:grid;
  grid-template-columns:58px 1fr auto;
  align-items:center;
  gap:22px;
  margin-bottom:35px;
}

.hours-title-row h2{
  margin:0;
  font-size:32px;
}

.hours-title-row p{
  margin:6px 0 0;
  color:#687985;
}

.hours-status{
  display:flex;
  align-items:center;
  gap:10px;

  font-size:18px;
  font-weight:700;

  color:#159a83;

  white-space:nowrap;
}

.led-dot-page{
  width:12px;
  height:12px;

  border-radius:50%;

  background:#54df7a;
  box-shadow:0 0 10px rgba(84,223,122,.5);

  flex-shrink:0;
}

/* ==========================
   LISTE HORAIRES
========================== */

.hours-list-page{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.hours-page-row{
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:22px 30px;

  border-radius:15px;

  background:#fff;
  border:1px solid #edf1f2;

  transition:.25s ease;
}

.hours-page-row:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(0,0,0,.05);
}

.hours-page-row strong{
  font-size:22px;
  font-weight:700;
}

.hours-time{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
}

.hours-time span{
  font-size:20px;
  font-weight:700;
  line-height:1.2;
}

.hours-time em{
  margin-top:6px;

  font-style:normal;
  font-size:14px;
  font-weight:700;

  color:#159a83;

  text-align:right;
}

.hours-page-row.today{
  background:#eefaf8;
  border:1px solid #8fded2;
}

.hours-page-row.closed .hours-time span{
  color:#e04848;
}

/* ==========================
   NOTE
========================== */

.hours-note{
  margin-top:30px;
  padding:20px;

  display:flex;
  gap:15px;

  border-radius:18px;
  background:#f7fbfb;
}

.hours-note i{
  color:#159a83;
  font-size:22px;
}

.hours-note p{
  margin:0;
  line-height:1.7;
  color:#4d5c67;
}

/* ==========================
   COLONNE INFORMATIONS
========================== */

.hours-info-card h2{
  margin:0 0 30px;
  font-size:25px;
}

.hours-info-card h2 i{
  color:#159a83;
}

.hours-info-item{
  display:flex;
  gap:18px;
  margin-bottom:28px;
}

.hours-info-item > div:first-child{
  width:58px;
  height:58px;

  border-radius:50%;
  background:linear-gradient(135deg,#159a83,#62beaf);

  display:flex;
  justify-content:center;
  align-items:center;

  flex-shrink:0;
}

.hours-info-item i{
  color:#fff;
  font-size:22px;
}

.hours-info-item h3{
  margin:0 0 8px;
}

.hours-info-item p{
  margin:0;
  line-height:1.7;
  color:#50606b;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1050px){

  .hours-main-card{
    grid-template-columns:1fr;
  }

  .hours-title-row{
    grid-template-columns:58px 1fr;
  }

  .hours-status{
    grid-column:2;
    margin-top:8px;
  }

}

@media(max-width:700px){

  .hours-title-row{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hours-status{
    grid-column:auto;
    justify-content:center;
  }

  .hours-page-row{
    flex-direction:column;
    text-align:center;
    gap:14px;
  }

  .hours-time{
    align-items:center;
  }

  .hours-time em{
    text-align:center;
  }

  .hours-note{
    flex-direction:column;
    text-align:center;
  }

  .hours-info-item{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

}