/* 画像・ボタンつきブロック（緑） */
.green-multiple-contents-block,
.green-multiple-contents-block-editor {
  border: 2px solid #49cc69;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
}

/* 上部エリア（画像 + 見出し） */
.block-header-container-g {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* 画像エリア */
.image-area-g {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}

.image-upload-area-g {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  background-color: #f8f9fa;
}

.uploaded-image-g {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-radius: 6px;
}

.image-placeholder-g {
  font-size: 10px;
  color: #666;
  text-align: center;
}

/* 見出しエリア */
.heading-area-g {
  flex-grow: 1;
}

.heading-text-g {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  border: none;
  word-break: break-all;
  margin-bottom: 0px !important;
}

/* テキストエリア */
.content-area-g {
  margin-top: 12px;
  margin-left: 76px;
}

.content-text-g {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* ボタンエリア */
.green-button-area {
  text-align: center;
  margin-top: 16px;
}

.green-button-wrapper {
  display: inline-flex;
  border-radius: 30px;
  border: 2px solid #49cc69;
  background: linear-gradient(90deg, #00b54d 0%, #49cc69 100%);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 12px 24px;
  text-decoration: none;
}

.green-button-wrapper:hover {
  background: #00b54d;
  border: 2px solid #00b54d;
}

.green-button-text {
  color: white;
  font-size: 16px;
  font-weight: bold;
  word-break: break-all;
}

/* URL入力エリア（エディター専用） */
.url-input-area-g {
  margin-top: 8px;
  font-size: 12px;
}

.url-label-g {
  display: block;
  margin-bottom: 4px;
  color: #666;
  text-align: left;
}

.url-input-g {
  width: 100%;
  padding: 4px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}