/* clean linear shell — replaces fullscreen login-SPA layout */
@font-face {
  font-family: 'tradegothic_cond_cebold';
  src: url("/static/css/webfonts/tradegothicce-boldcondtwenty-webfont.eot");
  src: url("/static/css/webfonts/tradegothicce-boldcondtwenty-webfont.eot#iefix") format("embedded-opentype"),
       url("/static/css/webfonts/tradegothicce-boldcondtwenty-webfont.woff") format("woff"),
       url("/static/css/webfonts/tradegothicce-boldcondtwenty-webfont.ttf") format("truetype"),
       url("/static/css/webfonts/tradegothicce-boldcondtwenty-webfont.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #fff;
  color: #2a2a2a;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: #eb3a6a; text-decoration: none; }
a:hover { text-decoration: underline; }

.rt-container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* hero */
.rt-hero {
  background: linear-gradient(120deg, #eb3a6a 0%, #0085ac 100%);
  color: #fff;
  text-align: center;
  padding: 64px 20px;
}
.rt-hero h1 {
  font-family: 'tradegothic_cond_cebold', "Helvetica Neue", Arial, sans-serif;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.rt-hero .rt-brand {
  display: block;
  font-family: 'tradegothic_cond_cebold', "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  letter-spacing: .28em;
  color: #a7fdcf;
  text-transform: uppercase;
}
.rt-hero p { max-width: 760px; margin: 18px auto 0; font-size: 17px; }

/* intro / body sections */
.rt-section { padding: 40px 0; }
.rt-section h2 {
  font-family: 'tradegothic_cond_cebold', "Helvetica Neue", Arial, sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #eb3a6a;
  margin: 0 0 22px;
}
.rt-intro p { font-size: 17px; line-height: 1.7; margin: 0 0 16px; color: #3a3a3a; }

/* photo feed grid */
.rt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.rt-card {
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.rt-card img { display: block; width: 100%; height: 220px; object-fit: cover; }
.rt-card .rt-cap { padding: 12px 14px; }
.rt-card .rt-cap .rt-txt { font-size: 15px; color: #2a2a2a; min-height: 1.4em; }
.rt-card .rt-cap .rt-date { font-size: 12px; color: #0085ac; margin-top: 6px; letter-spacing: .04em; }

/* footer */
.rt-footer {
  background: #14181f;
  color: #cfd3da;
  padding: 40px 0 30px;
  margin-top: 20px;
  font-size: 14px;
}
.rt-footer a { color: #a7fdcf; }
.rt-footer .rt-foot-brand {
  font-family: 'tradegothic_cond_cebold', "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 640px) {
  .rt-hero h1 { font-size: 38px; }
}
