/*
Theme Name: HWGN Global
Theme URI: https://www.hwgni.org
Author: Haitian Women's Global Network, Inc.
Author URI: https://www.hwgni.org
Description: Custom one-page WordPress theme for Haitian Women's Global Network, Inc. — Empowering Haitian Women Through Leadership, Wealth Creation, and Global Connections.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hwgn
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --ivory: #FBF7EF;        /* page background */
  --beige: #F1E8D8;        /* soft section background */
  --beige-deep: #E7DAC2;
  --navy: #101F3C;         /* primary dark */
  --navy-2: #182B52;       /* dark gradient partner */
  --navy-soft: #24355C;
  --gold: #C19A4B;         /* action / accent */
  --gold-light: #DCBC74;
  --gold-pale: #F2E3C2;
  --ht-blue: #1B3FA0;      /* Haitian flag accents — used sparingly */
  --ht-red: #C8102E;
  --ink: #2B2B33;          /* body text on light */
  --ink-soft: #5A5A66;
  --white-warm: #FFFDF8;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Mulish", "Helvetica Neue", Arial, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 30px rgba(16, 31, 60, 0.08);
  --shadow-lift: 0 18px 44px rgba(16, 31, 60, 0.14);
  --maxw: 1180px;
  --section-pad: clamp(4.5rem, 9vw, 7.5rem);
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.15; margin: 0 0 .6em; font-weight: 600; }
p { margin: 0 0 1.1em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.section { padding: var(--section-pad) 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; clip: rect(0 0 0 0); overflow: hidden; }

/* Eyebrow label + Haitian ribbon under titles */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.ribbon {
  width: 64px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--ht-blue) 0 50%, var(--ht-red) 50% 100%);
  margin: 1.1rem 0 1.6rem;
}
.center { text-align: center; }
.center .ribbon { margin-left: auto; margin-right: auto; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); max-width: 60ch; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .04em;
  text-decoration: none;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 8px 22px rgba(193,154,75,.35); }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 12px 28px rgba(193,154,75,.45); }
.btn-navy { background: var(--navy); color: var(--white-warm); }
.btn-navy:hover { background: var(--navy-2); }
.btn-outline-light { border-color: rgba(255,255,255,.65); color: #fff; background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-navy:hover { background: var(--navy); color: var(--white-warm); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,239,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16,31,60,.08);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(16,31,60,.10); background: rgba(251,247,239,.97); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem clamp(1.25rem,4vw,2.5rem); max-width: 1320px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--navy-soft), var(--navy));
  color: var(--gold-light);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.brand-text { line-height: 1.2; }
.brand-name { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.02rem; display: block; }
.brand-tag { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 800; }

.main-nav ul { list-style: none; display: flex; align-items: center; gap: clamp(.7rem, 1.6vw, 1.5rem); margin: 0; padding: 0; }
.main-nav a { text-decoration: none; font-weight: 700; font-size: .92rem; color: var(--navy); position: relative; padding: .3rem 0; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold); transition: width .25s ease;
}
.main-nav a:hover::after { width: 100%; }
.nav-donate { margin-left: .4rem; }
.nav-donate .btn { padding: .6rem 1.3rem; font-size: .85rem; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: .5rem;
}
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: transform .3s, opacity .3s; }

@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; top: 66px;
    background: var(--ivory);
    transform: translateX(100%);
    transition: transform .35s ease;
    padding: 2rem;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .main-nav a { font-size: 1.2rem; }
  body.nav-locked { overflow: hidden; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(193,154,75,.22), transparent 60%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 55%, #1E3360 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after { /* soft gold horizon line */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .8;
}
.hero-inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 9vw, 8rem);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -.01em;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { color: rgba(255,255,255,.85); font-size: clamp(1.02rem, 1.5vw, 1.18rem); max-width: 56ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 800;
  color: var(--gold-light); margin-bottom: 1.4rem;
}
.hero-kicker::before { content: ""; width: 28px; height: 2px; background: var(--gold-light); }

/* Image placeholder w/ art direction — replace with real photography */
.img-ph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(140deg, #2A3D6B, #16264A 60%, #0E1B36);
  min-height: 340px; display: flex; align-items: flex-end;
  box-shadow: var(--shadow-lift);
}
.img-ph::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(220,188,116,.35), transparent 45%),
    radial-gradient(circle at 25% 70%, rgba(27,63,160,.35), transparent 50%);
}
.img-ph .ph-label {
  position: relative; margin: 1rem; padding: .55rem .9rem;
  background: rgba(16,31,60,.65); color: rgba(255,255,255,.9);
  border: 1px dashed rgba(255,255,255,.4); border-radius: 10px;
  font-size: .8rem; line-height: 1.45;
}
.hero .img-ph { min-height: 420px; transform: rotate(1.5deg); }
.hero .img-ph::after {
  content: ""; position: absolute; inset: 12px; border: 1px solid rgba(220,188,116,.5);
  border-radius: calc(var(--radius) - 8px); pointer-events: none;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero .img-ph { min-height: 300px; transform: none; }
}

/* ============================================================
   BRAND WORDS — LEAD. PROSPER. CONNECT. GLOBALLY.
   ============================================================ */
.brand-words { background: var(--ivory); }
.words-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.word-card {
  background: var(--white-warm);
  border: 1px solid rgba(16,31,60,.08);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.word-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.word-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: rgba(193,154,75,.45); }
.word-card:hover::before { transform: scaleX(1); }
.word-big {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: .04em; color: var(--navy);
  display: block;
}
.word-big .dot { color: var(--gold); }
.word-sub { color: var(--ink-soft); font-weight: 700; font-size: .95rem; margin-top: .4rem; display: block; }
@media (max-width: 900px) { .words-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .words-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SPLIT SECTIONS (intro / mission / vision / commitment)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse > .split-media { order: 2; }
@media (max-width: 880px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse > .split-media { order: 0; }
}
.bg-beige { background: var(--beige); }
.bg-navy { background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: rgba(255,255,255,.88); }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy .lede { color: rgba(255,255,255,.82); }
.quote-mark { font-family: var(--font-display); font-size: 4rem; line-height: 0; color: var(--gold); display: block; margin-bottom: 1.2rem; }

/* ============================================================
   CARD GRIDS (serve / pillars / programs)
   ============================================================ */
.cards { display: grid; gap: 1.3rem; margin-top: 2.5rem; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .cards-3, .cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .cards-3, .cards-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white-warm);
  border: 1px solid rgba(16,31,60,.08);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .97rem; margin-bottom: 0; }
.card .card-cta { margin-top: auto; padding-top: 1.2rem; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(140deg, var(--gold-pale), #fff);
  border: 1px solid rgba(193,154,75,.4);
  display: grid; place-items: center;
  margin-bottom: 1.1rem;
  color: var(--gold); font-size: 1.4rem;
}
.card-link {
  font-weight: 800; font-size: .9rem; letter-spacing: .03em;
  color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: .35rem;
}
.card-link:hover { color: var(--navy); }
.card-link::after { content: "→"; transition: transform .25s ease; }
.card-link:hover::after { transform: translateX(4px); }

/* Serve cards on beige */
.bg-beige .card { background: var(--white-warm); }

/* ============================================================
   IMPACT STATS
   ============================================================ */
.impact { background: linear-gradient(160deg, var(--navy) 10%, var(--navy-2)); color: rgba(255,255,255,.88); position: relative; overflow: hidden; }
.impact::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 360px at 90% 110%, rgba(193,154,75,.18), transparent 60%);
}
.impact .container { position: relative; }
.impact h2 { color: #fff; }
.stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; margin-top: 3rem; }
.stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(220,188,116,.35);
  border-radius: var(--radius);
  padding: 1.6rem 1rem;
  text-align: center;
  transition: background .3s ease, transform .3s ease;
}
.stat:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.stat-num { font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 700; color: var(--gold-light); display: block; }
.stat-num .plus { color: rgba(255,255,255,.7); font-size: .7em; }
.stat-label { font-size: .85rem; font-weight: 700; letter-spacing: .05em; color: rgba(255,255,255,.85); }
@media (max-width: 980px) { .stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   GLOBAL NETWORK — diaspora constellation (signature)
   ============================================================ */
.global { background: var(--ivory); }
.constellation-wrap {
  margin-top: 2.5rem;
  background: linear-gradient(160deg, var(--navy), var(--navy-2));
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.2rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lift);
}
.constellation-wrap svg { width: 100%; height: auto; display: block; }
.constellation .arc {
  fill: none; stroke: var(--gold-light); stroke-width: 1.6; opacity: .75;
  stroke-dasharray: 6 7;
}
.constellation .node { fill: var(--gold-light); }
.constellation .node-core { fill: var(--gold); stroke: #fff; stroke-width: 1.5; }
.constellation .city {
  font-family: var(--font-body); font-size: 13px; font-weight: 800;
  fill: rgba(255,255,255,.92); letter-spacing: .04em;
}
.constellation .pulse { fill: none; stroke: var(--gold); stroke-width: 1.4; opacity: 0; }
@media (prefers-reduced-motion: no-preference) {
  .constellation .arc { animation: dashflow 14s linear infinite; }
  .constellation .pulse { animation: pulse 3.2s ease-out infinite; }
  @keyframes dashflow { to { stroke-dashoffset: -260; } }
  @keyframes pulse {
    0% { r: 6; opacity: .8; }
    70% { r: 26; opacity: 0; }
    100% { r: 26; opacity: 0; }
  }
}
.global-caption { text-align: center; color: var(--ink-soft); font-style: italic; margin-top: 1.4rem; font-family: var(--font-display); font-size: 1.15rem; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background:
    radial-gradient(900px 400px at 15% -20%, rgba(193,154,75,.25), transparent 55%),
    linear-gradient(150deg, var(--navy-2), var(--navy));
  color: #fff; text-align: center;
}
.final-cta h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 22ch; margin: 0 auto .8em; }
.final-cta h2 em { font-style: italic; color: var(--gold-light); }
.final-cta .hero-ctas { justify-content: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--beige); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); margin-top: 2.5rem; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--navy); color: rgba(255,255,255,.9);
  border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-lift);
}
.contact-info-card h3 { color: #fff; }
.contact-line { display: flex; gap: .8rem; align-items: baseline; margin-bottom: 1rem; }
.contact-line .ci { color: var(--gold-light); font-weight: 800; min-width: 1.4rem; }
.contact-line a { color: var(--gold-light); text-decoration: none; font-weight: 700; }
.contact-line a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white-warm); border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16,31,60,.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 800; font-size: .85rem; letter-spacing: .04em; margin-bottom: .4rem; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: .85rem 1rem;
  border: 1.5px solid rgba(16,31,60,.18); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: #fff; transition: border-color .25s ease, box-shadow .25s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(193,154,75,.18);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-notice { padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.4rem; font-weight: 700; }
.form-notice.success { background: #E8F4E4; color: #2D5A27; border: 1px solid #9FC795; }
.form-notice.error { background: #FBE9EB; color: #8E1B2B; border: 1px solid #E4A2AC; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; }
.footer-brand .brand-name { color: #fff; font-size: 1.15rem; }
.footer-slogan { color: var(--gold-light); font-family: var(--font-display); font-style: italic; margin-top: .8rem; }
.footer-motto { margin-top: 1.4rem; font-weight: 800; letter-spacing: .12em; font-size: .82rem; line-height: 2; text-transform: uppercase; }
.footer-motto .gold { color: var(--gold-light); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: rgba(255,255,255,.8); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }
.newsletter-form { display: flex; gap: .6rem; margin-top: .8rem; }
.newsletter-form input {
  flex: 1; padding: .75rem 1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08); color: #fff; font-family: var(--font-body);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form .btn { padding: .75rem 1.4rem; font-size: .85rem; }
.footer-bottom {
  margin-top: 3.5rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .85rem; color: rgba(255,255,255,.55);
}
.footer-flag { display: inline-block; width: 22px; height: 4px; border-radius: 2px; vertical-align: middle; margin: 0 .4rem;
  background: linear-gradient(90deg, var(--ht-blue) 0 50%, var(--ht-red) 50% 100%); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; } .reveal-d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .word-card, .stat { transition: none; }
}

/* ============================================================
   GENERIC INNER PAGES (fallback templates)
   ============================================================ */
.page-plain { padding: var(--section-pad) 0; }
.page-plain .entry-content { max-width: 760px; }
