/* ==========================================================================
   Azalea Sports UI & Components Style (v1.7.0 - Mobile & Diagnosis Engine)
   ========================================================================== */

/* 1. NEXT MATCH & GAME INFO WIDGET */
.azalea-match-card {
  background: linear-gradient(135deg, #0d1a36 0%, #172d5c 100%);
  border-radius: 16px;
  padding: 24px;
  color: #ffffff;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(13, 26, 54, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  .azalea-match-card {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
  }
}
.azalea-match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.azalea-match-tag {
  background: #e6006e;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.azalea-match-date {
  font-size: 0.9rem;
  color: #cbd5e1;
  font-weight: 600;
}
.azalea-match-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin: 15px 0;
}
@media (max-width: 576px) {
  .azalea-match-body {
    gap: 8px;
    margin: 10px 0;
  }
}
.azalea-team {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.azalea-team-name {
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 8px;
}
@media (max-width: 576px) {
  .azalea-team-name {
    font-size: 0.95rem;
    margin-top: 4px;
  }
}
.azalea-team-sub {
  font-size: 0.75rem;
  color: #94a3b8;
}
.azalea-vs-badge {
  font-size: 1.4rem;
  font-weight: 900;
  color: #f7b731;
  background: rgba(255, 255, 255, 0.08);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(247, 183, 49, 0.3);
}
@media (max-width: 576px) {
  .azalea-vs-badge {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}
.azalea-match-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.azalea-match-venue {
  font-size: 0.88rem;
  color: #94a3b8;
}
@media (max-width: 576px) {
  .azalea-match-venue {
    font-size: 0.8rem;
    width: 100%;
  }
}
.azalea-match-venue i {
  color: #e6006e;
  margin-right: 5px;
}
.azalea-btn-ticket {
  background: linear-gradient(135deg, #e6006e 0%, #ff4d97 100%);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(230, 0, 110, 0.4);
}
@media (max-width: 576px) {
  .azalea-btn-ticket {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
  }
}
.azalea-btn-ticket:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(230, 0, 110, 0.6);
}

/* 2. 試合日程・結果一覧テーブル (SCHEDULE & RESULTS) */
.azalea-schedule-container {
  margin: 35px 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(18, 34, 68, 0.05);
}
@media (max-width: 576px) {
  .azalea-schedule-container {
    padding: 16px 12px;
    border-radius: 12px;
    margin: 20px 0;
  }
}
.azalea-schedule-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #122244;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f5f9;
}
@media (max-width: 576px) {
  .azalea-schedule-title {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }
}
.azalea-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.azalea-game-row {
  display: grid;
  grid-template-columns: 200px 1fr 130px;
  align-items: center;
  padding: 16px 20px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
  gap: 16px;
}
@media (max-width: 768px) {
  .azalea-game-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 16px;
  }
}
.azalea-game-row:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.azalea-game-row.win {
  border-left: 5px solid #00c853;
}
.azalea-game-row.lose {
  border-left: 5px solid #94a3b8;
}

.azalea-game-date-col {
  display: flex;
  flex-direction: column;
}
.azalea-game-date {
  font-weight: 800;
  color: #122244;
  font-size: 0.95rem;
}
.azalea-game-time {
  font-size: 0.8rem;
  color: #64748b;
}
.azalea-game-venue {
  font-size: 0.8rem;
  color: #475569;
  margin-top: 4px;
}
.azalea-game-venue i {
  color: #e6006e;
}

.azalea-game-match-col {
  display: flex;
  flex-direction: column;
}
.azalea-game-teams {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}
@media (max-width: 576px) {
  .azalea-game-teams {
    font-size: 0.95rem;
    gap: 6px;
  }
}
.azalea-team-my {
  color: #122244;
}
.azalea-team-opp {
  color: #334155;
}
.azalea-score-badge {
  background: #122244;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.azalea-score-badge.win {
  background: #00c853;
}
.azalea-score-badge.lose {
  background: #64748b;
}
.azalea-result-tag {
  font-size: 0.65rem;
  background: rgba(255, 255, 255, 0.25);
  padding: 1px 5px;
  border-radius: 4px;
}
.azalea-game-sets {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 4px;
}

.azalea-game-action-col {
  text-align: right;
}
@media (max-width: 768px) {
  .azalea-game-action-col {
    text-align: left;
    margin-top: 4px;
  }
}
.azalea-btn-report {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #ffffff;
  color: #122244;
  border: 1px solid #cbd5e1;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .azalea-btn-report {
    width: 100%;
    padding: 9px 14px;
    background: #f1f5f9;
  }
}
.azalea-btn-report:hover {
  background: #122244;
  color: #ffffff;
  border-color: #122244;
}

/* 3. 公式SNSハブ (AZALEA SNS HUB) */
.azalea-sns-hub-container {
  background: linear-gradient(135deg, #0b1528 0%, #15274d 100%);
  border-radius: 16px;
  padding: 24px;
  color: #ffffff;
  margin: 35px 0;
  box-shadow: 0 15px 35px rgba(11, 21, 40, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 576px) {
  .azalea-sns-hub-container {
    padding: 18px 14px;
    border-radius: 12px;
    margin: 20px 0;
  }
}
.azalea-sns-hub-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}
@media (max-width: 576px) {
  .azalea-sns-hub-title {
    font-size: 1.05rem;
  }
}
.azalea-sns-hub-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 16px;
}
.azalea-sns-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
@media (max-width: 576px) {
  .azalea-sns-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.azalea-sns-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.25s ease;
}
.azalea-sns-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}
.azalea-sns-card i {
  font-size: 1.6rem;
}
.azalea-sns-card.x i { color: #ffffff; }
.azalea-sns-card.ig i { color: #ff4d97; }
.azalea-sns-card.tiktok i { color: #00f2fe; }
.azalea-sns-card.line i { color: #06c755; }
.azalea-sns-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.azalea-sns-info span {
  font-size: 0.72rem;
  color: #cbd5e1;
}

/* 4. 選手名鑑 ROSTER GRID (スマホ2列最適化) */
.azalea-roster-section {
  margin: 30px 0;
}
.azalea-position-group {
  margin-bottom: 35px;
}
.azalea-pos-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}
.azalea-pos-tag {
  background: #122244;
  color: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.85rem;
}
.azalea-pos-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.azalea-roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
@media (max-width: 576px) {
  .azalea-roster-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.azalea-player-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.azalea-player-card:hover {
  transform: translateY(-4px);
  border-color: #e6006e;
  box-shadow: 0 12px 25px rgba(230, 0, 110, 0.12);
}
.azalea-player-number {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(18, 34, 68, 0.85);
  color: #f7b731;
  font-size: 1rem;
  font-weight: 900;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  z-index: 2;
  border: 1px solid rgba(247, 183, 49, 0.4);
}
.azalea-player-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #e2e8f0;
  transition: transform 0.3s ease;
}
.azalea-player-info {
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.azalea-player-pos-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #e6006e;
  text-transform: uppercase;
}
.azalea-player-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: #122244;
  margin: 2px 0 4px 0;
  line-height: 1.3;
}
.azalea-player-kana {
  font-size: 0.65rem;
  color: #64748b;
  margin-bottom: 6px;
}
.azalea-player-stats {
  font-size: 0.72rem;
  color: #475569;
  background: #f8fafc;
  padding: 4px 6px;
  border-radius: 4px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 400px) {
  .azalea-player-stats {
    flex-direction: column;
    gap: 2px;
  }
}
.azalea-player-sns {
  display: flex;
  gap: 6px;
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid #f1f5f9;
}
.azalea-player-sns a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-decoration: none;
}
.azalea-player-sns a:hover {
  background: #e6006e;
  color: #ffffff;
}

/* 5. 応援クラップ（CLAP）ギミック */
.azalea-clap-container {
  background: linear-gradient(135deg, #ffffff 0%, #fff0f7 100%);
  border: 2px solid #ffd1e4;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  margin: 30px 0;
  box-shadow: 0 10px 25px rgba(230, 0, 110, 0.08);
  position: relative;
  overflow: hidden;
}
.azalea-clap-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #122244;
  margin-bottom: 4px;
}
.azalea-clap-desc {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 16px;
}
.azalea-clap-btn {
  background: linear-gradient(135deg, #e6006e 0%, #ff4d97 100%);
  color: #ffffff;
  border: none;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  font-size: 1.85rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(230, 0, 110, 0.4);
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.azalea-clap-btn:active {
  transform: scale(0.92);
}
.azalea-clap-count {
  font-size: 1.25rem;
  font-weight: 900;
  color: #e6006e;
  margin-top: 10px;
}

/* 6. 推し選手診断シミュレーター (DIAGNOSIS SIMULATOR) */
.azalea-diagnosis-container {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(18, 34, 68, 0.08);
  padding: 28px 24px;
  margin: 30px 0;
}
@media (max-width: 576px) {
  .azalea-diagnosis-container {
    padding: 20px 16px;
    border-radius: 12px;
  }
}
.azalea-diag-card {
  display: flex;
  flex-direction: column;
}
.azalea-diag-progress {
  font-size: 0.82rem;
  font-weight: 800;
  color: #e6006e;
  background: #fff0f7;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 12px;
}
.azalea-diag-q-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #122244;
  margin-bottom: 20px;
  line-height: 1.45;
}
.azalea-diag-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.azalea-diag-opt-btn {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.4;
}
.azalea-diag-opt-btn:hover {
  background: #ffffff;
  border-color: #e6006e;
  color: #e6006e;
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(230, 0, 110, 0.12);
}

/* 診断結果カード */
.azalea-diag-result-card {
  animation: fadeIn 0.4s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.azalea-diag-result-badge {
  background: linear-gradient(135deg, #122244 0%, #1e3a78 100%);
  color: #f7b731;
  font-weight: 800;
  font-size: 1.05rem;
  text-align: center;
  padding: 10px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.azalea-diag-player-box {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  background: #f8fafc;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #e2e8f0;
}
@media (max-width: 600px) {
  .azalea-diag-player-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.azalea-diag-player-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #e2e8f0;
}
.azalea-diag-player-details {
  display: flex;
  flex-direction: column;
}
.azalea-diag-player-pos {
  font-size: 0.8rem;
  font-weight: 800;
  color: #e6006e;
}
.azalea-diag-player-name {
  font-size: 1.45rem;
  font-weight: 900;
  color: #122244;
  margin: 4px 0 6px 0;
}
.azalea-diag-player-hw {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 12px;
}
.azalea-diag-player-desc {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 18px;
}
.azalea-diag-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}
@media (max-width: 600px) {
  .azalea-diag-actions {
    justify-content: center;
  }
}
.azalea-diag-sns-btn,
.azalea-diag-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.azalea-diag-sns-btn {
  background: #e6006e;
  color: #ffffff !important;
}
.azalea-diag-sns-btn:hover {
  background: #ff2d8d;
  transform: translateY(-2px);
}
.azalea-diag-share-btn {
  background: #000000;
  color: #ffffff !important;
}
.azalea-diag-share-btn:hover {
  background: #333333;
  transform: translateY(-2px);
}
.azalea-diag-restart-btn {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #64748b;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.azalea-diag-restart-btn:hover {
  border-color: #122244;
  color: #122244;
}

/* 7. 応援コメント欄（スマホ完全最適化） */
#comments {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px dashed #e2e8f0;
}
.comment-respond {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 25px rgba(18, 34, 68, 0.05);
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .comment-respond {
    padding: 18px 14px;
  }
}
.azalea-comment-title {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #122244 !important;
  margin-bottom: 6px !important;
  border-left: none !important;
  padding-left: 0 !important;
}
.azalea-comment-title::after { display: none !important; }
.azalea-comment-notes {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 16px;
}
.azalea-comment-field-author,
.azalea-comment-field-comment {
  margin-bottom: 16px;
}
.azalea-comment-label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: #1e293b;
  margin-bottom: 6px;
}
.azalea-comment-label i {
  color: #e6006e;
  margin-right: 4px;
}
.azalea-required {
  font-size: 0.72rem;
  color: #e6006e;
  font-weight: 600;
}
.azalea-comment-input,
.azalea-comment-textarea {
  width: 100% !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 8px !important;
  padding: 12px 14px !important;
  font-size: 16px !important; /* iOSでの自動ズーム防止 */
  color: #1e293b !important;
  background: #f8fafc !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box;
}
.azalea-comment-input:focus,
.azalea-comment-textarea:focus {
  border-color: #e6006e !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(230, 0, 110, 0.12) !important;
  outline: none !important;
}
.azalea-comment-textarea {
  min-height: 100px;
  resize: vertical;
}
.form-submit {
  margin-top: 12px;
  margin-bottom: 0;
  text-align: right;
}
@media (max-width: 576px) {
  .form-submit {
    text-align: stretch;
  }
}
.azalea-comment-submit-btn,
#submit {
  background: linear-gradient(135deg, #e6006e 0%, #ff4d97 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 30px !important;
  padding: 12px 28px !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(230, 0, 110, 0.4) !important;
  transition: all 0.25s ease !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .azalea-comment-submit-btn,
  #submit {
    width: 100%;
    padding: 13px 20px !important;
  }
}

/* 8. 関連記事ウィジェット (RELATED POSTS) */
.azalea-related-posts-section {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid #f1f5f9;
}
.azalea-related-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #122244;
  margin-bottom: 16px;
}
.azalea-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
@media (max-width: 576px) {
  .azalea-related-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.azalea-related-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}
@media (max-width: 576px) {
  .azalea-related-card {
    flex-direction: row;
    align-items: center;
  }
}
.azalea-related-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e2e8f0;
}
@media (max-width: 576px) {
  .azalea-related-thumb {
    width: 110px;
    height: 75px;
    flex-shrink: 0;
  }
}
.azalea-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.azalea-related-info {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.azalea-related-date {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-bottom: 4px;
}
.azalea-related-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin: 0;
}
