Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Hide Main_Page title */
body.page-Main_Page h1.firstHeading {
  display: none;
}

/* Hero Banner */
.ww-hero {
  text-align: center;
  padding: 20px 10px;
  border-bottom: 2px solid #000;
  background: #fff;
}
.ww-hero-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #000;
}
.ww-hero-cta a {
  background: #000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}

/* Section Styling */
.ww-section {
  padding: 20px 10px;
  border-bottom: 1px solid #ddd;
}
.ww-section h2 {
  font-size: 1.2em;
  color: #000;
  margin-bottom: 10px;
}

/* Cards (Profiles/Companies) */
.ww-cards {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ww-cards a {
  display: inline-block;
  padding: 10px;
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  min-width: 130px;
  text-align: center;
}

/* Footer */
.ww-footer {
  text-align: center;
  font-size: 0.9em;
  color: #666;
  padding: 20px 0;
}
.ww-footer a {
  color: #000;
  margin: 0 8px;
}