User:Fen/Portals/Orginizations/styles.css

.org-portal-wrapper {
  background: #f4f4f4;
  padding: 2em;
  font-family: "Segoe UI", sans-serif;
  color: #222;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.org-header {
  background: linear-gradient(to right, #333, #111);
  color: #fff;
  text-align: center;
  padding: 1.5em;
  border-radius: 6px;
  margin-bottom: 2em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.org-title {
  font-size: 2.4em;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.org-subtitle {
  font-size: 1.1em;
  margin-top: 0.5em;
  color: #ccc;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5em;
}

.org-card {
  background: #fff;
  border: 1px solid #ccc;
  padding: 1em;
  border-left: 5px solid #444;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.org-card.wide {
  grid-column: 1 / -1;
}

.org-card-title {
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 2px solid #ccc;
  margin-bottom: 0.5em;
  padding-bottom: 0.2em;
  color: #222;
}

.org-card-body {
  font-size: 0.96em;
  line-height: 1.6;
}

.org-card-body ul {
  list-style-type: square;
  padding-left: 1.2em;
  margin: 0.5em 0;
}

.center {
  text-align: center;
}

a:link,
a:visited {
  color: #3366cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #224499;
}