.today-share-page {
  min-height: calc(100vh - 120px);
  padding: clamp(84px, 8vw, 118px) 16px 72px;
  background:
    linear-gradient(180deg, rgba(239, 247, 255, 0.9), rgba(255, 255, 255, 0.96) 42%),
    #f7fbff;
}

.today-share-shell {
  width: min(100%, 880px);
  margin: 0 auto;
}

.today-share-card {
  overflow: hidden;
  border: 1px solid #dbe6f2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.13);
}

.today-share-intro,
.today-share-list,
.today-share-empty {
  margin-right: 28px;
  margin-left: 28px;
}

.today-share-intro {
  padding: 28px 0 22px;
  border-bottom: 1px solid #d7e0ea;
}

.today-share-intro h1 {
  margin: 0;
  color: #050505;
  font-size: 28px;
  line-height: 1.28;
  letter-spacing: 0;
}

.today-schedule-summary {
  margin: 0 28px;
  padding: 22px 0 24px;
  border-bottom: 1px solid #d7e0ea;
}

.today-schedule-card {
  width: 100%;
  box-sizing: border-box;
  padding: 18px 22px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.today-schedule-card:hover {
  transform: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.today-schedule-row {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
}

.today-schedule-row + .today-schedule-row {
  margin-top: 14px;
}

.today-schedule-row__time {
  width: auto;
  margin-bottom: 0;
  text-align: center;
  white-space: nowrap;
}

.today-schedule-row__body {
  min-width: 0;
  padding-top: 2px;
}

.today-schedule-row__body h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.38;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.today-schedule-row__body .event-location {
  margin-top: 8px;
  line-height: 1.45;
}

.today-share-list {
  display: grid;
}

.today-share-item {
  display: grid;
  gap: 14px;
  padding: 26px 0 28px;
  border-bottom: 1px solid #dfe7ef;
}

.today-share-item:last-child {
  border-bottom: 0;
}

.today-share-thumbnail {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 12px;
  background: #f8fafc;
  color: inherit;
  text-decoration: none;
}

.today-share-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% var(--today-thumbnail-position-y, 50%);
}

.today-share-thumbnail:focus-visible {
  outline: 3px solid rgba(22, 121, 210, 0.34);
  outline-offset: 3px;
}

.today-share-item-title {
  margin: 0;
  color: #050505;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: 0;
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.today-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.today-share-button {
  display: inline-flex;
  min-width: 112px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #3aa0f3, #1679d2);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1), 0 8px 16px rgba(15, 23, 42, 0.13);
}

.today-share-button:hover,
.today-share-button:focus-visible {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.today-share-button--youtube {
  background: linear-gradient(180deg, #ff4b4b, #d7193f);
}

.today-share-button--instagram {
  background: linear-gradient(135deg, #f97316, #db2777 48%, #7c3aed);
}

.today-share-button--x {
  background: #050505;
}

.today-share-button--blog {
  background: linear-gradient(180deg, #23c55e, #159447);
}

.today-share-button--news {
  background: linear-gradient(180deg, #64748b, #475569);
}

.today-share-button--facebook {
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
}

.today-share-button--threads {
  background: linear-gradient(180deg, #333333, #111111);
}

.today-share-empty {
  margin-top: 24px;
  margin-bottom: 8px;
  padding: 34px 20px;
  border: 1px dashed #b9c7d8;
  border-radius: 12px;
  background: #f8fbff;
  text-align: center;
}

.today-share-empty h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 24px;
  line-height: 1.35;
}

.today-share-empty p {
  margin: 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .today-share-shell {
    width: min(100%, 720px);
  }

  .today-share-intro,
  .today-schedule-summary,
  .today-share-list,
  .today-share-empty {
    margin-right: 18px;
    margin-left: 18px;
  }

  .today-share-intro h1 {
    font-size: 24px;
  }

  .today-share-item-title {
    font-size: 21px;
  }
}

@media (max-width: 560px) {
  .today-share-page {
    padding: 78px 10px 48px;
  }

  .today-share-card {
    border-radius: 15px;
  }

  .today-share-intro {
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .today-share-intro h1 {
    font-size: 22px;
  }

  .today-schedule-summary {
    padding: 18px 0 20px;
  }

  .today-schedule-card {
    padding: 16px 16px;
  }

  .today-schedule-row {
    column-gap: 10px;
  }

  .today-schedule-row + .today-schedule-row {
    margin-top: 13px;
  }

  .today-schedule-row__body h4 {
    font-size: 17px;
  }

  .today-share-item {
    gap: 12px;
    padding: 22px 0 24px;
  }

  .today-share-thumbnail {
    border-radius: 10px;
  }

  .today-share-item-title {
    font-size: 19px;
  }

  .today-share-button {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    min-height: 46px;
    padding: 0 10px;
    font-size: 16px;
  }
}
