/* Reset */
/* * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f5f6f8;
    color: #333;
    line-height: 1.6;
} */

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HERO */
.hero {
    background: #374d76;
    color: #fff;
    padding: 15px 15px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.subtitle {
    margin-top: 10px;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* MAIN LAYOUT */
.main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.content-section-2 {
    grid-column: 1 / -1;   /* กินทุกคอลัมน์ */
    margin-top: 40px;
}
/* CARD */
.card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.map-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.update-text {
    font-size: 0.85rem;
    text-align: right;
    margin-top: 10px;
    color: #777;
}

/* CONTENT */
.intro h2 {
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.intro p {
    margin-bottom: 25px;
    color: #555;
}

/* INDICATOR */
.indicator-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* .indicator-card {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 4px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: 0.2s ease;
} */

.indicator-card {
  display: flex;
  align-items: center;   /* ✅ จัดกลางแนวตั้ง */
  gap: 15px;
  background: #fff;
  padding: 4px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.indicator-card:hover {
    transform: translateY(-3px);
}

/* .indicator-card .icon {
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.indicator-card .icon {
  width: 60px;              /* กำหนดความกว้าง */
  height: 60px;             /* กำหนดความสูง */
  display: flex;
  align-items: center;      /* จัดกลางแนวตั้ง */
  justify-content: center;  /* จัดกลางแนวนอน */
}

.indicator-card .icon img {
  max-width: 40px;
  height: auto;
  display: block;
}

.indicator-card h3 {
    font-size: 1.1rem;
    margin-bottom: -15px;
    
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
    .main {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero {
        padding: 25px 15px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .indicator-card {
        flex-direction: column;
        align-items: flex-start;
    }
}
