@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
}

@media (max-width: 768px) {
  body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px; /* Smaller font size for mobile screens */
  }
}

/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
 
  /* Center and style the content */
  .fusion-row {
    display: flex;
    justify-content: center;
  }

  #content {
    max-width: 800px;
    width: 100%;
    text-align: center;
  }

  .job-page {
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .entry-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
  }

  .whr-items {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .whr-item {
    background: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  }

  .whr-title a {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0073aa;
    text-decoration: none;
  }

  .whr-title a:hover {
    text-decoration: underline;
  }

  .whr-info {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
  }

  .whr-info li {
    margin: 5px 0;
    color: #555;
  }

  @media (max-width: 600px) {
    .job-page {
      padding: 20px 10px;
    }

    .whr-title a {
      font-size: 1rem;
    }
  }