
.page-content {
  flex: 1;
  padding: 32px 20px 48px;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  gap: 24px;
  margin: 0 auto;
  position: relative;
  align-items: flex-start;
  justify-content: flex-start;
  height: auto;
}

@media (max-width: 900px) {
  .page-content {
    padding: 24px 20px 32px;
    margin-top: 0;
  }
}

.bg-hero.center {
  width: 100%;
  min-height: auto;
  padding: 0;
}

.ita {
  font-style: italic;
  text-decoration: underline;
}

.month-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0 6px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.month-left {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.month-right {
  font-weight: 800;
  color: var(--text-muted);
  text-align: center;
}

.month-right img {
  width: 60px;
  display: block;
  margin: 0 auto 6px;
}


.details-panel {
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr);
  gap: 18px;
}

.text-practice{
  padding-top: 30px ;
    padding-bottom: 30px ;
padding-left: 30px;;
  font-weight: 500;
}

@media (min-width: 900px) {
  .details-panel {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: flex-start;
  }
  .text-practice{
  padding-top: 20px ;
    padding-bottom: 20px ;
padding-left: 20px;;
  font-weight: 500;
}
}



.details-side {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.details-side strong {
  color: var(--accent);
  font-weight: 600;
}

.footer-eyes {
  width: 50%;
}

.calendar-card {
  overflow: hidden;
  width: 100%;
}

.calendar-inner {
  display: flex;
  flex-direction: column;
}

.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 2px solid var(--accent2);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.weekday {
  padding: 6px 8px;
  text-align: center;
  color: var(--text-muted);
  font-family: var(--font-hand);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: 108px;
}

@media (min-width: 768px) {
  .calendar-grid {
    grid-auto-rows: 160px;
    grid-template-columns: repeat(7, 1fr);
  }
}

.calendar-cell {
  border-right:2px solid var(--accent2);
  border-bottom: 2px solid var(--accent2);

  position: relative;
  overflow: hidden;
}

.calendar-cell:nth-child(7n) {
  border-right: none;
}

.calendar-cell.empty {
  cursor: default;
   border: none
}

.day-number-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  z-index: 2;
  color: rgb(184, 5, 71);
  font-family: var(--font-hand);
}


.small-normal {
  width: 70%;
}

.small {
  width: 40%;
  transform: rotate(20deg);
}

.hm-small {
  width: 30%;
  padding: 2px;
}


.really-small {
  width: 10%;
}

.bottom-align {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.day-photo-wrapper {
  width: 100%;
  height: 100%;
  padding: 20px 6px 6px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.day-photo-wrapper.yoga {
  width: 100%;
  height: 100%;
  padding: 20px 6px 6px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.day-photo-wrapper.yoga img {
  max-width: 100%;
  max-height: 50%;
  object-fit: contain;
  display: block;
}
.day-photo-wrapper.left{
    justify-content: left;

}
.day-photo-wrapper.right{
    justify-content: right;

}

/* .day-photo-wrapper {
  display: none;
} */
.day-photo-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.day-photo-placeholder {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  padding: 6px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-family: var(--font-hand);
}

.calendar-cell[data-day] {
  cursor: pointer;
  transition: transform 0.15s ease, border 0.15s ease;
}

.calendar-cell.unlocked:hover {
  transform: translateY(-1px);
  z-index: 2;
  border: 6px solid var(--accent);
}

.calendar-cell.selected {
  border: 6px solid var(--accent);
}

.calendar-cell.locked {
  opacity: 0.4;
  cursor: default;
  box-shadow: none;

}

.calendar-cell.locked .day-photo-wrapper {
  display: none
}

@media (max-width: 1040px) {
  .practice-container{
    width: 100%;
  }
  .weekdays{
    display: none
}


.calendar-cell {
  border-right: none;
  border-bottom: 1px solid black;
  position: relative;
  overflow: hidden;
}
.day-photo-wrapper{
/* justify-content: center; */

}
}
