/* =========================
  全体
========================= */
.post-sections {
  display: flex;
  flex-direction: column;
  gap: 60px;


}

/* =========================
  セクション（カード）
========================= */
.post-section {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: none;
}

/* 偶数は左右反転 */
.post-section:has(.post-section-img):nth-child(even) {
  flex-direction: row-reverse;
}

/* =========================
  画像
========================= */
.post-section-img {
  width: 35%;
  min-width: 280px;
  max-height: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  position: relative;
}

.post-section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 画像フレーム */
.post-section-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid rgba(0,0,0,0.08);
  pointer-events: none;
}
/* 虫眼鏡マーク */
.post-section-img::before {
  content: "";
  position: absolute;
  bottom: 12px;
  right: 12px;

  width: 40px;
  height: 40px;

  background: rgba(0,0,0,0.6) url('/cms/wp-content/plugins/post-sections-plugin/assets/img/common/zoom-icon.png') center/18px no-repeat;

  border-radius: 50%;
  z-index: 2;
}


/* =========================
  テキスト
========================= */
.post-section-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}
.mini-title{
  font-weight: bold;
  display:block;
  margin-bottom:4px;
}

.mini-list{
  margin:0;
  padding-left:1.2em;
}

.mini-list li{
  line-height:1.6;
}
/* =========================
  タイトル
========================= */
.post-section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  padding-left: 16px;
  color: #222;
}
.post-section .mini-title {
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  margin:15px 0 8px 0;
}
/* 左バーで強調 */
.post-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 5px;
  height: 70%;
  background: var(--wp--preset--color--primary, #0073aa);
  border-radius: 2px;
}

/* 下ラインでアクセント */
.post-section-title::after {
  content: "";
  display: block;
  margin-top: 6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--wp--preset--color--primary, #0073aa),
    rgba(0,115,170,0.2)
  );
  border-radius: 1px;
}

/* =========================
  画像なしカード
========================= */
.post-section:not(:has(.post-section-img)) {
  padding: 24px 28px;
  background: #fafafa;
}

.post-section:not(:has(.post-section-img))::before {
  width: 4px;
  background: var(--wp--preset--color--primary, #0073aa);
}

/* =========================
  SP対応
========================= */
@media (max-width: 768px) {
  .post-sections {
    gap: 40px;
  }

  .post-section {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 24px;
    padding: 15px;
  }

  .post-section-img {
    width: 100%;
    min-width: auto;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .post-section-title {
    font-size: 20px;
  }
}