:root {
  --webrise-primary: #1D4ED8;
  --webrise-accent: #14B8A6;
  --webrise-dark: #0F172A;
  --webrise-muted: #64748B;
  --webrise-bg: #FFFFFF;
  --webrise-soft: #F8FAFC;
  --webrise-border: #E5E7EB;
  --webrise-white: #FFFFFF;
  --webrise-radius: 24px;
  --webrise-shadow: 0 22px 60px rgba(17, 24, 39, 0.09);
  --webrise-shadow-soft: 0 12px 30px rgba(17, 24, 39, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--webrise-bg);
  color: var(--webrise-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--webrise-muted); }
h1, h2, h3, h4 { margin: 0; color: var(--webrise-dark); line-height: 1.08; letter-spacing: -0.04em; }
h1 { font-size: clamp(2.65rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: 1.15rem; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 99999;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: var(--webrise-dark);
  color: #fff;
  clip: auto;
}

.webrise-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.webrise-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229,231,235,0.8);
  transition: box-shadow .25s ease, background .25s ease;
}
.admin-bar .webrise-header { top: 32px; }
.webrise-header.is-scrolled { box-shadow: 0 14px 40px rgba(17,24,39,.08); background: rgba(255,255,255,.96); }
.webrise-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.webrise-brand { display: flex; align-items: center; flex: 0 0 auto; }
.webrise-logo-text, .webrise-footer-logo {
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: -0.06em;
  color: var(--webrise-dark);
}
.custom-logo-link img { max-height: 54px; width: auto; display: block; }
.webrise-navigation { margin-left: auto; }
.webrise-nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}
.webrise-nav-menu a {
  display: inline-flex;
  color: #374151;
  font-size: .94rem;
  font-weight: 700;
  transition: color .2s ease;
}
.webrise-nav-menu a:hover, .webrise-nav-menu a:focus { color: var(--webrise-primary); }
.webrise-header-cta { flex: 0 0 auto; }
.webrise-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--webrise-border);
  background: #fff;
  padding: 0;
  margin-left: auto;
  cursor: pointer;
}
.webrise-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--webrise-dark);
  margin: 4px auto;
  border-radius: 10px;
}

.webrise-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 850;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}
.webrise-btn:hover { transform: translateY(-2px); }
.webrise-btn-primary {
  background: linear-gradient(135deg, var(--webrise-primary), #1D4ED8);
  color: #fff;
  box-shadow: 0 16px 32px rgba(37, 99, 235, .24);
}
.webrise-btn-secondary {
  background: #fff;
  color: var(--webrise-dark);
  border-color: var(--webrise-border);
  box-shadow: var(--webrise-shadow-soft);
}
.webrise-btn-light {
  background: #fff;
  color: var(--webrise-primary);
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
}
.webrise-btn-small { min-height: 44px; padding: 0 18px; font-size: .92rem; }
.webrise-btn-inline { margin-top: 22px; }

.webrise-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 70px;
  background:
    radial-gradient(circle at 15% 12%, rgba(37,99,235,.09), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(16,185,129,.08), transparent 32%),
    var(--webrise-bg);
}
.webrise-hero:after {
  content: "";
  position: absolute;
  inset: auto -10% 0 auto;
  width: 480px;
  height: 480px;
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(16,185,129,.10));
  filter: blur(40px);
  border-radius: 999px;
  pointer-events: none;
}
.webrise-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  gap: 56px;
  align-items: center;
}
.webrise-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  color: var(--webrise-primary);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.webrise-hero-text {
  max-width: 690px;
  margin-top: 24px;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}
.webrise-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.webrise-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.webrise-hero-points span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--webrise-border);
  border-radius: 999px;
  color: #374151;
  background: rgba(255,255,255,.74);
  font-size: .88rem;
  font-weight: 800;
}
.webrise-hero-visual { display: flex; justify-content: center; }
.webrise-dashboard-card {
  width: min(100%, 430px);
  padding: 22px;
  border: 1px solid rgba(229,231,235,.92);
  border-radius: 34px;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--webrise-shadow);
  position: relative;
}
.webrise-dashboard-card:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(37,99,235,.22), rgba(16,185,129,.14), transparent 60%);
  z-index: -1;
}
.webrise-card-topline { display: flex; gap: 8px; margin-bottom: 20px; }
.webrise-card-topline span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--webrise-border);
}
.webrise-card-topline span:nth-child(1) { background: #F87171; }
.webrise-card-topline span:nth-child(2) { background: #FBBF24; }
.webrise-card-topline span:nth-child(3) { background: #34D399; }
.webrise-score-card {
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--webrise-dark), #1F2937);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.webrise-score-card:after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.webrise-score-card p { color: rgba(255,255,255,.72); font-weight: 800; }
.webrise-score-card h2 { margin-top: 8px; color: #fff; font-size: clamp(1.7rem, 4vw, 2.5rem); }
.webrise-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.webrise-metric-row div {
  padding: 16px 12px;
  background: var(--webrise-soft);
  border: 1px solid var(--webrise-border);
  border-radius: 20px;
  text-align: center;
}
.webrise-metric-row strong { display: block; color: var(--webrise-dark); font-size: 1.1rem; }
.webrise-metric-row span { display: block; color: var(--webrise-muted); font-size: .78rem; font-weight: 750; }
.webrise-check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}
.webrise-check-list li {
  padding: 13px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--webrise-border);
  color: #374151;
  font-weight: 760;
}
.webrise-check-list li:before { content: "✓"; color: var(--webrise-accent); margin-right: 8px; font-weight: 950; }

.webrise-section { padding: 88px 0; }
.webrise-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.webrise-section-head p:not(.webrise-eyebrow) { margin-top: 16px; font-size: 1.05rem; }
.webrise-trust { padding-top: 34px; }
.webrise-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.webrise-trust-card, .webrise-service-card, .webrise-portfolio-card, .webrise-form-shell, .webrise-contact-card {
  background: #fff;
  border: 1px solid var(--webrise-border);
  border-radius: var(--webrise-radius);
  box-shadow: var(--webrise-shadow-soft);
}
.webrise-trust-card { padding: 24px; }
.webrise-icon-dot {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(37,99,235,.09);
  color: var(--webrise-primary);
  font-weight: 950;
  margin-bottom: 18px;
}
.webrise-trust-card h3 { margin-bottom: 10px; }

.webrise-two-col { background: var(--webrise-soft); }
.webrise-two-col-grid, .webrise-why-grid, .webrise-contact-grid, .webrise-faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.webrise-section-copy { position: sticky; top: 120px; }
.webrise-section-copy p:not(.webrise-eyebrow) { margin-top: 18px; font-size: 1.05rem; }
.webrise-rich-text p + p { margin-top: 18px; }
.webrise-rich-text { font-size: 1.06rem; }

.webrise-card-grid { display: grid; gap: 20px; }
.webrise-card-grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.webrise-card-grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.webrise-service-card {
  padding: 30px;
  min-height: 236px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.webrise-service-card:hover, .webrise-portfolio-card:hover, .webrise-trust-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37,99,235,.32);
  box-shadow: var(--webrise-shadow);
}
.webrise-service-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--webrise-primary);
  font-weight: 950;
}
.webrise-service-card h3, .webrise-portfolio-card h3 { margin-bottom: 12px; }

.webrise-why { background: linear-gradient(180deg, #fff, #F8FAFC); }
.webrise-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.webrise-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--webrise-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--webrise-shadow-soft);
}
.webrise-feature-item span {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(16,185,129,.12);
  color: var(--webrise-accent);
  font-weight: 950;
}
.webrise-feature-item p { color: #374151; font-weight: 800; }

.webrise-portfolio { background: #fff; }
.webrise-portfolio-card { padding: 26px; }
.webrise-portfolio-badge {
  display: inline-flex;
  padding: 7px 10px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  color: var(--webrise-primary);
  font-size: .78rem;
  font-weight: 900;
}

.webrise-process { background: var(--webrise-soft); }
.webrise-process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 14px;
}
.webrise-process-step {
  position: relative;
  padding: 24px;
  border: 1px solid var(--webrise-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--webrise-shadow-soft);
}
.webrise-process-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 15px;
  background: var(--webrise-primary);
  color: #fff;
  font-weight: 950;
}
.webrise-process-step h3 { margin-bottom: 10px; }

.webrise-cta-section { padding: 72px 0; }
.webrise-cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 7vw, 72px);
  border-radius: 34px;
  background: linear-gradient(135deg, var(--webrise-primary), #1D4ED8 58%, var(--webrise-accent));
  color: #fff;
  text-align: center;
  box-shadow: 0 28px 70px rgba(37,99,235,.28);
}
.webrise-cta-card:after {
  content: "";
  position: absolute;
  inset: -60px auto auto -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.webrise-cta-card h2 { color: #fff; }
.webrise-cta-card p { max-width: 680px; margin: 16px auto 28px; color: rgba(255,255,255,.86); }

.webrise-faq-grid { grid-template-columns: .82fr 1.18fr; }
.webrise-faq-list { display: grid; gap: 12px; }
.webrise-faq-item {
  border: 1px solid var(--webrise-border);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--webrise-shadow-soft);
}
.webrise-faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--webrise-dark);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}
.webrise-faq-item button strong { color: var(--webrise-primary); font-size: 1.3rem; }
.webrise-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.webrise-faq-answer p { padding: 0 22px 20px; }
.webrise-faq-item.is-open .webrise-faq-answer { max-height: 260px; }
.webrise-faq-item.is-open button strong { transform: rotate(45deg); }

.webrise-contact { background: var(--webrise-soft); }
.webrise-contact-grid { align-items: stretch; }
.webrise-contact-card { padding: clamp(30px, 5vw, 48px); }
.webrise-contact-card p:not(.webrise-eyebrow) { margin-top: 18px; font-size: 1.05rem; }
.webrise-contact-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.webrise-form-shell { padding: clamp(24px, 4vw, 34px); }
.webrise-placeholder-form { display: grid; gap: 14px; }
.webrise-placeholder-form label { display: grid; gap: 6px; color: var(--webrise-dark); font-weight: 800; }
.webrise-placeholder-form input,
.webrise-placeholder-form textarea,
.webrise-form-shell input,
.webrise-form-shell textarea,
.webrise-form-shell select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--webrise-border);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--webrise-dark);
  background: #fff;
  outline: none;
}
.webrise-placeholder-form textarea, .webrise-form-shell textarea { min-height: 116px; resize: vertical; }
.webrise-placeholder-form input:focus,
.webrise-placeholder-form textarea:focus,
.webrise-form-shell input:focus,
.webrise-form-shell textarea:focus,
.webrise-form-shell select:focus {
  border-color: var(--webrise-primary);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}
.webrise-form-note { font-size: .86rem; }

.webrise-footer {
  padding: 64px 0 28px;
  background: #0B1220;
  color: #fff;
}
.webrise-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr .9fr;
  gap: 36px;
}
.webrise-footer-logo { color: #fff; display: inline-flex; margin-bottom: 12px; }
.webrise-footer h3 { color: #fff; margin-bottom: 14px; font-size: 1rem; }
.webrise-footer p { color: rgba(255,255,255,.68); }
.webrise-footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.webrise-footer-menu a { color: rgba(255,255,255,.72); }
.webrise-footer-menu a:hover { color: #fff; }
.webrise-footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.webrise-footer-bottom p { font-size: .92rem; }

.webrise-page-header {
  padding: 76px 0;
  background: var(--webrise-soft);
  text-align: center;
}
.webrise-page-content {
  padding: 70px 0;
}
.webrise-content-wrap {
  max-width: 830px;
  margin: 0 auto;
}
.webrise-content-wrap :where(p, ul, ol) { color: #374151; }
.webrise-content-wrap a { color: var(--webrise-primary); text-decoration: underline; }
.webrise-content-wrap h2,
.webrise-content-wrap h3 { margin-top: 1.3em; margin-bottom: .5em; }

.webrise-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.webrise-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .webrise-reveal { opacity: 1; transform: none; transition: none; }
  .webrise-btn, .webrise-service-card, .webrise-portfolio-card, .webrise-trust-card { transition: none; }
}

@media (max-width: 1100px) {
  .webrise-card-grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .webrise-process-list { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 920px) {
  .admin-bar .webrise-header { top: 46px; }
  .webrise-container { width: min(100% - 30px, 1180px); }
  .webrise-header-inner { min-height: 72px; }
  .webrise-menu-toggle { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; }
  .webrise-navigation {
    position: absolute;
    left: 15px;
    right: 15px;
    top: calc(100% + 10px);
    display: none;
    padding: 16px;
    border: 1px solid var(--webrise-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--webrise-shadow);
  }
  .webrise-navigation.is-open { display: block; }
  .webrise-nav-menu { flex-direction: column; align-items: stretch; gap: 0; }
  .webrise-nav-menu a { padding: 12px; border-radius: 12px; }
  .webrise-nav-menu a:hover { background: var(--webrise-soft); }
  .webrise-header-cta { display: none; }
  .webrise-hero { padding-top: 58px; }
  .webrise-hero-grid, .webrise-two-col-grid, .webrise-why-grid, .webrise-contact-grid, .webrise-faq-grid { grid-template-columns: 1fr; gap: 34px; }
  .webrise-section-copy { position: static; }
  .webrise-trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .webrise-card-grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .webrise-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.35rem, 12vw, 3.35rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.45rem); }
  .webrise-section { padding: 64px 0; }
  .webrise-hero { padding-bottom: 52px; }
  .webrise-hero-actions, .webrise-contact-buttons { flex-direction: column; }
  .webrise-btn { width: 100%; min-height: 50px; }
  .webrise-hero-points { align-items: stretch; }
  .webrise-hero-points span { width: 100%; justify-content: center; }
  .webrise-dashboard-card { border-radius: 26px; padding: 16px; }
  .webrise-score-card { padding: 24px; }
  .webrise-metric-row { grid-template-columns: 1fr; }
  .webrise-trust-grid, .webrise-card-grid-3, .webrise-card-grid-4, .webrise-feature-list, .webrise-process-list { grid-template-columns: 1fr; }
  .webrise-service-card { min-height: auto; }
  .webrise-section-head { text-align: left; }
  .webrise-footer { padding-top: 48px; }
}

@media (max-width: 782px) {
  .admin-bar .webrise-header { top: 46px; }
}
.webrise-content-wrap article + article { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--webrise-border); }
.webrise-content-wrap article h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); margin-bottom: 12px; }
.webrise-post-thumbnail { margin-bottom: 28px; }
.webrise-post-thumbnail img { border-radius: 24px; box-shadow: var(--webrise-shadow-soft); }
.comments-area { margin-top: 46px; padding-top: 30px; border-top: 1px solid var(--webrise-border); }
.comment-list { padding-left: 20px; }

/* Web Rise TLD refinements */
:root {
  --webrise-primary: #1D4ED8;
  --webrise-accent: #14B8A6;
  --webrise-dark: #0F172A;
  --webrise-muted: #64748B;
}

.webrise-header-inner { gap: clamp(12px, 2vw, 22px); }
.webrise-logo-text { white-space: nowrap; font-size: clamp(1.15rem, 2vw, 1.45rem); }
.webrise-navigation { min-width: 0; }
.webrise-nav-menu { gap: clamp(12px, 1.6vw, 22px); flex-wrap: nowrap; }
.webrise-nav-menu a { white-space: nowrap; font-size: clamp(.84rem, 1.1vw, .94rem); }
.webrise-header-cta .webrise-btn { padding-inline: 16px; }

.webrise-form-alert {
  margin-bottom: 16px;
  padding: 13px 15px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid var(--webrise-border);
}
.webrise-form-alert-success { background: rgba(20,184,166,.10); color: #0F766E; border-color: rgba(20,184,166,.22); }
.webrise-form-alert-error { background: rgba(239,68,68,.08); color: #B91C1C; border-color: rgba(239,68,68,.22); }
.webrise-placeholder-form button { border: 0; }
.webrise-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.webrise-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.webrise-post-card {
  padding: 22px;
  border: 1px solid var(--webrise-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--webrise-shadow-soft);
}
.webrise-post-card h2 { margin-top: 0; }
.webrise-post-card-meta { margin-bottom: 12px; font-size: .9rem; color: var(--webrise-muted); font-weight: 700; }
.webrise-post-card .webrise-post-thumbnail { margin-bottom: 18px; }
.webrise-read-more { display: inline-flex; margin-top: 14px; color: var(--webrise-primary); font-weight: 900; text-decoration: none; }
.webrise-archive-nav { margin-top: 36px; }

@media (max-width: 1180px) {
  .webrise-header-inner { min-height: 76px; }
  .webrise-nav-menu { gap: 12px; }
  .webrise-header-cta .webrise-btn { min-height: 42px; padding-inline: 14px; font-size: .86rem; }
}

@media (max-width: 980px) {
  .webrise-post-grid { grid-template-columns: 1fr; }
}
