/* ==================================================================
   StrongNote — Responsive Media Queries
   ================================================================== */

/* ---- 1024px: Large Tablets ---- */
@media only screen and (max-width: 1024px) {
  .exp-grid,
  .edu-grid {
    grid-template-columns: 1fr;
  }
  .about-layout {
    gap: 32px;
  }
}

/* ---- 768px: Tablets / Mobile Wide ---- */
@media only screen and (max-width: 768px) {
  .title {
    font-size: 36px;
    line-height: 1.1;
  }

  .exp-grid,
  .edu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .btn-wrapp {
    display: block;
    margin: 0 auto;
    position: static;
    width: 142px;
  }
  .btn-wrapp a {
    display: inline-block;
    margin-bottom: 0;
    margin-top: 30px;
  }
  .btn-wrapp a:first-child {
    margin-right: 25px;
  }

  .single-post-page .thumb-wrap img {
    border-radius: 8px;
  }
}

/* ---- 480px: Mobile ---- */
@media only screen and (max-width: 480px) {
  .title {
    font-size: 28px;
  }

  #message-success {
    float: left;
    margin: 24px auto;
    position: relative;
    width: 100%;
  }
  #message-success p {
    width: 100%;
    text-align: center;
  }
}
