.pod {
  width: 100%;
  padding: var(--pod-pad-top, 28px) 20px var(--pod-pad-bottom, 28px);
  background: var(--pod-section-bg, #f7f4ee);
  box-sizing: border-box;
}

.pod__inner {
  width: 100%;
  max-width: var(--pod-max-width, 1440px);
  margin: 0 auto;
  padding: var(--pod-card-pad, 28px);
  background: var(--pod-card-bg, #ffffff);
  border: 1px solid var(--pod-card-border, #e8e2d8);
  border-radius: var(--pod-radius, 20px);
  box-shadow: 0 8px 28px rgba(33, 79, 47, 0.06);
  box-sizing: border-box;
}

.pod__header {
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: center;
}

.pod__title {
  margin: 0;
  color: var(--pod-title, #1f2a24);
  font-size: var(--pod-title-size, 32px);
  font-weight: 700;
  line-height: 1.2;
}

.pod__subtitle {
  margin: 10px 0 0;
  color: var(--pod-subtitle, #7a847c);
  font-size: 13px;
  line-height: 1.5;
}

.pod__main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.pod__copy-title {
  margin: 0 0 12px;
  color: var(--pod-copy-title, #1f2a24);
  font-size: var(--pod-copy-title-size, 26px);
  font-weight: 700;
  line-height: 1.25;
}

.pod__copy-body {
  margin: 0 0 12px;
  color: var(--pod-body, #5b655e);
  font-size: 13px;
  line-height: 1.55;
}

.pod__checks {
  position: relative;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.pod:not(.is-expanded) .pod__checks {
  max-height: 118px;
  overflow: hidden;
}

.pod:not(.is-expanded) .pod__checks::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 56px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 85%);
}

.pod__check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 8px;
  color: var(--pod-body, #5b655e);
  font-size: 13px;
  line-height: 1.4;
}

.pod__check-mark {
  flex-shrink: 0;
  color: var(--pod-accent, #214f2f);
  font-weight: 800;
}

.pod__specs {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.pod.is-expanded .pod__specs {
  display: grid;
}

.pod__spec {
  padding: 10px 8px;
  background: #fbfaf7;
  border: 1px solid #e6e0d6;
  border-radius: 10px;
}

.pod__spec-label {
  margin: 0;
  color: #214f2f;
  font-size: 12px;
  font-weight: 700;
}

.pod__spec-value {
  margin: 4px 0 0;
  color: #6b756e;
  font-size: 11px;
  line-height: 1.35;
}

.pod__media-wrap {
  position: relative;
}

.pod__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  overflow: hidden;
  background: var(--pod-media-bg, #f3eee6);
  border-radius: 16px;
}

.pod__media img,
.pod__media .image,
.pod__media picture,
.pod__media picture img {
  display: block;
  width: 70%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
}

.pod__media-tags {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
  padding: 0;
  list-style: none;
}

.pod.is-expanded .pod__media-tags {
  display: grid;
}

.pod__media-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 8px 10px;
  color: #214f2f;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  background: #fff;
  border: 1px solid #e6e0d6;
  border-radius: 999px;
}

.pod__extra {
  display: none;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #ece6dc;
}

.pod.is-expanded .pod__extra {
  display: block;
}

.pod__detail-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.pod__detail-card {
  padding: 16px;
  background: #f7f3eb;
  border: 1px solid #e4dccf;
  border-radius: 14px;
}

.pod__detail-title {
  margin: 0 0 8px;
  color: #1f2a24;
  font-size: 15px;
  font-weight: 700;
}

.pod__detail-desc {
  margin: 0;
  color: #5b655e;
  font-size: 12px;
  line-height: 1.45;
  white-space: pre-line;
}

.pod__scenario-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pod__scenario-card {
  padding: 14px;
  background: #f3f8f4;
  border: 1px solid #cfe0d4;
  border-radius: 12px;
}

.pod__scenario-title {
  margin: 0 0 6px;
  color: #214f2f;
  font-size: 13px;
  font-weight: 700;
}

.pod__scenario-desc {
  margin: 0;
  color: #5b655e;
  font-size: 12px;
  line-height: 1.4;
}

.pod__actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pod__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  color: var(--pod-btn-text, #ffffff);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--pod-btn-bg, #214f2f);
  border: 0;
  border-radius: 999px;
}

.pod__toggle-less {
  display: none;
}

.pod.is-expanded .pod__toggle-more {
  display: none;
}

.pod.is-expanded .pod__toggle-less {
  display: inline;
}

@media (max-width: 959.98px) {
  .pod__main,
  .pod__detail-row,
  .pod__scenario-row,
  .pod__specs,
  .pod__media-tags {
    grid-template-columns: 1fr;
  }

  .pod__media {
    min-height: 260px;
  }

  .pod__title {
    font-size: 24px;
  }

  .pod__copy-title {
    font-size: 20px;
  }
}
