/* ポスターコンクールブロック - フロントエンド表示 */

/* コンテナ全体 */
.c-earth-poster-contest-container {
  margin: 32px auto;
  max-width: 100%;
  box-sizing: border-box;
}

/* メタ情報エリア（横書き） - 独立した要素 */
.poster-meta {
  margin-bottom: 16px;
  font-family: "Noto Sans JP", Helvetica, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5px;
}

.poster-meta .award {
  font-size: 1.4em;
  color: #12a265;
  font-weight: bold;
}

.poster-meta .author-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.poster-meta .author {
  font-size: 1.1em;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}

.poster-meta .school-grade {
  font-size: 0.9em;
  color: #666;
}

/* ポスター表示エリア - 独立した枠 */
.c-earth-poster-contest-view {
  border: 2px solid #f0f0f0;
  padding: 20px;
  background: #fafafa;
  border-radius: 8px;
  font-family: "Noto Sans JP", Helvetica, sans-serif;
  text-align: center;
  box-sizing: border-box;
  position: relative;
}

/* ポスタータイトル */
.c-earth-poster-contest-view .title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

/* ポスター画像 */
.c-earth-poster-contest-view .poster-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.c-earth-poster-contest-view .poster-image img {
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
  .c-earth-poster-contest-container {
    margin: 16px auto;
  }
  
  .poster-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .poster-meta .award {
    font-size: 1.2em;
  }
  
  .poster-meta .author-info {
    align-items: flex-start;
    gap: 8px;
  }
  
  .poster-meta .author {
    font-size: 1.0em;
    margin-bottom: 2px;
  }
  
  .poster-meta .school-grade {
    font-size: 0.85em;
  }
  
  .c-earth-poster-contest-view {
    padding: 16px;
  }
  
  .c-earth-poster-contest-view .title {
    font-size: 1.2em;
    margin-bottom: 16px;
  }
  
  .c-earth-poster-contest-view .poster-image img {
    max-height: 80vh;
  }
}

/* 印刷用スタイル */
@media print {
  .c-earth-poster-contest-container {
    break-inside: avoid;
    margin: 20px 0;
  }
  
  .poster-meta {
    background: #fff;
    border: 1px solid #000;
    box-shadow: none;
  }
  
  .c-earth-poster-contest-view {
    border: 2px solid #000;
    background: #fff;
  }
  
  .c-earth-poster-contest-view .poster-image img {
    box-shadow: none;
    max-height: 500px;
  }
} 