/* =========================================
   Common Page Styles
========================================= */

.notice-board {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 45px 35px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.notice-icon {
  width: 55px;
  height: 55px;

  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f3f3f3;
  color: #333;

  font-size: 25px;
  font-weight: 700;
}

.notice-board h3 {
  margin: 0 0 12px;

  font-size: 30px;
  font-weight: 700;

  color: #222;
}

.notice-board p {
  max-width: 450px;

  margin: 0 auto 25px;

  font-size: 15px;
  line-height: 1.7;

  color: #666;
}

.notice-btn {
  display: inline-block;

  padding: 11px 24px;

  border-radius: 8px;

  background: #222;
  color: #fff;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition: 0.2s ease;
}

.notice-btn:hover {
  background: #444;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 600px) {
  .page-container {
    padding: 40px 15px;
  }

  .notice-board {
    padding: 35px 22px;
  }

  .notice-board h1 {
    font-size: 25px;
  }
}
