.tmw-watch {
  --tmw-green: #2f7d4f;
  --tmw-border: #dfe8df;
  --tmw-bg: #f8fbf7;
  --tmw-text: #26362c;
  --tmw-muted: #6c7a70;
  background: var(--tmw-bg);
  border: 1px solid var(--tmw-border);
  border-radius: 8px;
  color: var(--tmw-text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  margin: 0 auto 18px;
  max-width: 1080px;
  padding: 14px;
}

.tmw-watch *,
.tmw-watch *::before,
.tmw-watch *::after {
  box-sizing: border-box;
}

.tmw-watch__head {
  align-items: baseline;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.tmw-watch__title {
  color: var(--tmw-green);
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.tmw-watch__list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tmw-watch__item {
  margin: 0;
}

.tmw-watch__link {
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--tmw-border);
  border-radius: 8px;
  color: inherit;
  display: flex;
  gap: 12px;
  min-height: 78px;
  overflow: hidden;
  padding: 10px 12px;
  text-decoration: none;
  transition: box-shadow .15s ease, transform .15s ease;
}

.tmw-watch__link:hover {
  box-shadow: 0 2px 9px rgba(0,0,0,.07);
  color: inherit;
  text-decoration: none;
  transform: translateY(-1px);
}

.tmw-watch__thumb {
  aspect-ratio: 16 / 9;
  background-color: #e8eee8;
  background-position: center;
  background-size: cover;
  border-radius: 6px;
  flex: 0 0 118px;
}

.tmw-watch__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.tmw-watch__meta {
  color: var(--tmw-muted);
  display: flex;
  font-size: 12px;
  gap: 8px;
}

.tmw-watch__item-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.tmw-watch__summary {
  color: var(--tmw-muted);
  font-size: 12px;
  line-height: 1.5;
}

.tmw-watch--empty {
  color: var(--tmw-muted);
  font-size: 14px;
}

@media (max-width: 640px) {
  .tmw-watch {
    padding: 10px;
  }

  .tmw-watch__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .tmw-watch__link {
    gap: 9px;
    padding: 9px;
  }

  .tmw-watch__thumb {
    flex-basis: 92px;
  }

  .tmw-watch__item-title {
    font-size: 14px;
  }
}
