/* Load main UNM stylesheet for wysiwyg */ 
@import url('https://webcore.unm.edu/v2/css/unm-styles.min.css'); 

/* Override bootstrap configs in WYSIWYG for better editting */ @import 
url('https://webcore.unm.edu/v2/css/wysiwyg.css'); 

/* wysiwyg-overrides.css
   Loaded AFTER UNM styles via <link> tags
*/

/* Scope everything to the editor */
.wysiwyg-preview {
  --site-font-sans: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --site-font-serif: Georgia, "Times New Roman", serif;
  --brand: #0b5a8a;
  --brand-dark: #084a6f;
  --accent: #f2a900;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --card-border: #e9e9e9;
  --max-width: 1100px;
  font-family: var(--site-font-sans);
  color: #222;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout */
.wysiwyg-preview .container,
.wysiwyg-preview .content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Typography */
.wysiwyg-preview h1,
.wysiwyg-preview h2,
.wysiwyg-preview h3,
.wysiwyg-preview h4 {
  color: var(--brand);
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.wysiwyg-preview h1 { font-size: 2.25rem; }
.wysiwyg-preview h2 { font-size: 1.75rem; }
.wysiwyg-preview h3 { font-size: 1.25rem; }
.wysiwyg-preview p { margin: 0 0 1rem; color: #333; }

.wysiwyg-preview small,
.wysiwyg-preview .muted {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Nav */
.wysiwyg-preview .nav,
.wysiwyg-preview nav {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
}

.wysiwyg-preview .nav a,
.wysiwyg-preview nav a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

.wysiwyg-preview .nav a:hover {
  background: rgba(11,90,138,0.06);
}

/* Hero */
.wysiwyg-preview .hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 360px;
  padding: 3rem 1rem;
  color: #fff;
  background-color: #0b5a8a;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
}

.wysiwyg-preview .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,90,138,0.55), rgba(8,74,111,0.55));
  z-index: 0;
}

.wysiwyg-preview .hero > * {
  position: relative;
  z-index: 1;
}

.wysiwyg-preview .hero h1 {
  color: #fff;
  font-size: 2.25rem;
  margin: 0;
  text-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

/* Buttons */
.wysiwyg-preview .btn,
.wysiwyg-preview button,
.wysiwyg-preview input[type="button"],
.wysiwyg-preview input[type="submit"],
.wysiwyg-preview .button {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  border: none;
  padding: 0.55rem 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(11,90,138,0.12);
  transition: transform .12s ease, box-shadow .12s ease;
}

.wysiwyg-preview .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(11,90,138,0.14);
}

.wysiwyg-preview .btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(11,90,138,0.12);
}

/* Cards & forms */
.wysiwyg-preview .card {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.03);
}

.wysiwyg-preview label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: #333;
}

.wysiwyg-preview input[type="text"],
.wysiwyg-preview input[type="email"],
.wysiwyg-preview textarea,
.wysiwyg-preview select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #d6d6d6;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1rem;
  color: #222;
}

.wysiwyg-preview input:focus,
.wysiwyg-preview textarea:focus,
.wysiwyg-preview select:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(11,90,138,0.08);
  border-color: var(--brand);
}

/* Lists & tables */
.wysiwyg-preview ul,
.wysiwyg-preview ol {
  margin: 0 0 1rem 1.25rem;
}

.wysiwyg-preview table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.wysiwyg-preview table th,
.wysiwyg-preview table td {
  border: 1px solid #e8e8e8;
  padding: 0.6rem;
  text-align: left;
}

/* Footer */
.wysiwyg-preview .site-footer {
  padding: 2rem 1rem;
  background: #fafafa;
  border-top: 1px solid #eee;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
  .wysiwyg-preview h1 { font-size: 1.75rem; }
  .wysiwyg-preview .hero { min-height: 260px; padding: 2rem 1rem; }
  .wysiwyg-preview .container { padding-left: 0.75rem; padding-right: 0.75rem; }
}