/* ============================================================
   Second Grain Home Services - Main Stylesheet
   Converted from TypeScript/Tailwind project
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES (matches original Tailwind config)
   ============================================================ */
:root {
  --color-primary: hsl(194, 92%, 22%);
  --color-primary-foreground: #ffffff;
  --color-secondary: hsl(27, 92%, 52%);
  --color-secondary-foreground: #ffffff;
  --color-background: #ffffff;
  --color-foreground: hsl(200, 12%, 20%);
  --color-card: #ffffff;
  --color-border: hsl(200, 10%, 88%);
  --color-muted: hsl(200, 5%, 96%);
  --color-muted-foreground: hsl(0, 0%, 55%);
  --color-section-light: hsl(200, 20%, 97%);
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --radius: 0.75rem;
  --container-max: 1400px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.sg-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.sg-section-padding {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .sg-section-padding { padding: 6rem 2rem; }
}
@media (min-width: 1024px) {
  .sg-section-padding { padding: 6rem 4rem; }
}

.sg-section-light { background-color: var(--color-section-light); }
.sg-section-primary { background-color: var(--color-primary); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sg-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sg-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.sg-animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sg-animate-left.is-visible { opacity: 1; transform: translateX(0); }
.sg-animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sg-animate-right.is-visible { opacity: 1; transform: translateX(0); }

.sg-delay-1 { transition-delay: 0.05s; }
.sg-delay-2 { transition-delay: 0.10s; }
.sg-delay-3 { transition-delay: 0.15s; }
.sg-delay-4 { transition-delay: 0.20s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.sg-btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--color-secondary);
  color: var(--color-secondary-foreground);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  text-align: center;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}
.sg-btn-primary:hover { opacity: 0.9; color: var(--color-secondary-foreground); }

.sg-btn-outline {
  display: inline-block;
  padding: 1rem 2rem;
  border: 2px solid rgba(255,255,255,0.35);
  color: #ffffff;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  text-align: center;
  transition: background-color 0.2s;
}
.sg-btn-outline:hover { background-color: rgba(255,255,255,0.1); color: #ffffff; }

/* ============================================================
   NAVBAR
   ============================================================ */
#sg-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.sg-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.sg-navbar-logo img {
  height: 56px;
  width: auto;
  border-radius: 4px;
}

.sg-navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 1024px) {
  .sg-navbar-links { display: flex; }
}

.sg-navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0,0,0,0.7);
  transition: color 0.2s;
}
.sg-navbar-links a:hover { color: var(--color-primary); }

.sg-navbar-cta {
  margin-left: 0.5rem;
  padding: 0.625rem 1.5rem;
  background-color: var(--color-secondary);
  color: #ffffff !important;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  transition: opacity 0.2s;
}
.sg-navbar-cta:hover { opacity: 0.9; color: #ffffff !important; }

.sg-navbar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-foreground);
}
@media (min-width: 1024px) { .sg-navbar-toggle { display: none; } }

.sg-navbar-toggle svg { width: 28px; height: 28px; }

/* Mobile menu */
.sg-mobile-menu {
  display: none;
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.sg-mobile-menu.is-open {
  display: block;
  max-height: 400px;
}
.sg-mobile-menu-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sg-mobile-menu a {
  color: rgba(0,0,0,0.7);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.sg-mobile-menu a:hover { color: var(--color-primary); }
.sg-mobile-cta {
  padding: 0.75rem 1.5rem;
  background-color: var(--color-secondary);
  color: #ffffff !important;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#sg-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.sg-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(194,92%,22%,0.88), hsla(194,92%,22%,0.65));
}

.sg-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 4rem 1rem;
  width: 100%;
}

@media (min-width: 768px) { .sg-hero-content { padding: 6rem 2rem; } }
@media (min-width: 1024px) { .sg-hero-content { padding: 6rem 4rem; } }

.sg-hero-text { max-width: 48rem; }

.sg-hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.sg-hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.92);
  font-weight: 300;
  margin-bottom: 1rem;
}

.sg-hero-desc {
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.sg-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .sg-hero-buttons { flex-direction: row; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
#sg-trust-bar {
  background-color: var(--color-primary);
  padding: 2rem 1rem;
}

.sg-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 1024px) {
  .sg-trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.sg-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.sg-trust-item svg {
  width: 36px;
  height: 36px;
  color: var(--color-secondary);
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sg-trust-item span {
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .sg-trust-item span { font-size: 1rem; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#sg-about .sg-about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  #sg-about .sg-about-grid { grid-template-columns: 1fr 1fr; }
}

.sg-about-image {
  border-radius: calc(var(--radius) * 2);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.sg-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.sg-section-title-white {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  text-align: center;
}

.sg-about-text p {
  color: rgba(0,0,0,0.7);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .sg-about-text p { font-size: 1.125rem; }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#sg-services .sg-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.sg-section-subtitle {
  color: var(--color-muted-foreground);
  font-size: 1.125rem;
  max-width: 40rem;
  margin: 0.75rem auto 0;
}

/* Services subheadings */
.sg-services-group {
  margin-bottom: 3.5rem;
}
.sg-services-group:first-child {
  margin-top: 2.5rem;
}
.sg-services-group:last-child { margin-bottom: 0; }

.sg-services-subheading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: flex-start;
}
.sg-services-subheading-line {
  width: 3rem;
  flex: 0 0 3rem;
  height: 2px;
  background: var(--color-border);
  display: none;
}
.sg-services-subheading-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  white-space: nowrap;
  flex-shrink: 0;
  border-left: 4px solid var(--color-secondary);
  padding-left: 0.75rem;
}

/* Remodeling grid: left-aligned, not centered */
.sg-services-grid--remodel {
  max-width: 100%;
  margin: 0;
}

.sg-services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .sg-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sg-services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .sg-services-grid { grid-template-columns: repeat(4, 1fr); } }

.sg-service-card {
  background: var(--color-card);
  border-radius: calc(var(--radius) * 1.25);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.sg-service-card:hover {
  border-color: rgba(230, 140, 40, 0.5);
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

.sg-service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background-color: rgba(5, 103, 125, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background-color 0.3s;
}
.sg-service-card:hover .sg-service-icon {
  background-color: rgba(230, 140, 40, 0.1);
}
.sg-service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}
.sg-service-card:hover .sg-service-icon svg {
  stroke: var(--color-secondary);
}

.sg-service-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
}
.sg-service-desc {
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.sg-process-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .sg-process-grid { grid-template-columns: repeat(3, 1fr); }
}

.sg-process-step { text-align: center; }
.sg-process-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: 3.75rem;
  color: rgba(230, 140, 40, 0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.sg-process-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(5, 103, 125, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.sg-process-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sg-process-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--color-foreground);
  margin-bottom: 0.75rem;
}
.sg-process-desc {
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.sg-why-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) { .sg-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sg-why-grid { grid-template-columns: repeat(4, 1fr); } }

.sg-why-item { text-align: center; }
.sg-why-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(230, 140, 40, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.sg-why-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-secondary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sg-why-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.sg-why-desc { color: rgba(255,255,255,0.75); font-size: 0.875rem; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
#sg-areas .sg-areas-inner {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}
.sg-areas-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.sg-areas-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-secondary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sg-areas-text {
  color: rgba(0,0,0,0.7);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.sg-areas-sub { color: var(--color-muted-foreground); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.sg-testimonials-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .sg-testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.sg-testimonial-card {
  background: var(--color-card);
  border-radius: calc(var(--radius) * 1.25);
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}
.sg-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}
.sg-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--color-secondary);
  stroke: var(--color-secondary);
  stroke-width: 1;
}
.sg-testimonial-text {
  color: rgba(0,0,0,0.7);
  font-style: italic;
  line-height: 1.7;
}
.sg-testimonial-author {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.875rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
#sg-cta {
  text-align: center;
  background-color: var(--color-primary);
}
#sg-cta .sg-cta-inner {
  max-width: 40rem;
  margin: 0 auto;
}
#sg-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#sg-contact .sg-contact-header {
  text-align: center;
  margin-bottom: 3rem;
}
#sg-contact .sg-contact-header p {
  color: rgba(0,0,0,0.7);
  font-size: 1.125rem;
}
.sg-contact-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .sg-contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.sg-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--color-card);
  border-radius: calc(var(--radius) * 1.25);
  padding: 2rem;
  border: 1px solid var(--color-border);
}
.sg-contact-card svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-secondary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 1rem;
}
.sg-contact-card h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
}
.sg-contact-card p {
  color: var(--color-muted-foreground);
  font-size: 0.9rem;
}

/* Contact Form */
.sg-contact-form-wrap {
  max-width: 56rem;
  margin: 3rem auto 0;
  background: var(--color-card);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2rem;
  border: 1px solid var(--color-border);
}
.sg-form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .sg-form-row { grid-template-columns: 1fr 1fr; }
}
.sg-form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.sg-form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
}
.sg-form-group input,
.sg-form-group textarea,
.sg-form-group select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-foreground);
  background: var(--color-background);
  transition: border-color 0.2s;
  width: 100%;
}
.sg-form-group input:focus,
.sg-form-group textarea:focus,
.sg-form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(5, 103, 125, 0.1);
}
.sg-form-group textarea { min-height: 130px; resize: vertical; }
.sg-form-submit {
  width: 100%;
  padding: 1rem;
  background-color: var(--color-secondary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.sg-form-submit:hover { opacity: 0.9; }
.sg-form-success { color: #16a34a; font-weight: 500; margin-top: 0.75rem; text-align: center; }
.sg-form-error   { color: #dc2626; font-weight: 500; margin-top: 0.75rem; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
#sg-footer {
  background-color: var(--color-primary);
  padding: 4rem 1rem 2rem;
}
@media (min-width: 768px) { #sg-footer { padding: 6rem 2rem 2rem; } }

.sg-footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .sg-footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.sg-footer-logo img {
  height: 4rem;
  width: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.sg-footer-tagline { color: rgba(255,255,255,0.65); font-size: 0.875rem; }

.sg-footer-col h4 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}
.sg-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.sg-footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.sg-footer-col ul li a:hover { color: var(--color-secondary); }
.sg-footer-col ul li span { color: rgba(255,255,255,0.65); font-size: 0.875rem; }

.sg-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.5rem;
  text-align: center;
  max-width: var(--container-max);
  margin: 0 auto;
}
.sg-footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.875rem; }

/* ============================================================
   ADMIN BAR OFFSET
   ============================================================ */
.admin-bar #sg-navbar { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar #sg-navbar { top: 46px; }
}

/* ============================================================
   WORDPRESS DEFAULT OVERRIDES
   ============================================================ */
.wp-block { max-width: 100%; }
img.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
img.alignright { float: right; margin: 0 0 1rem 1.5rem; }
img.aligncenter { display: block; margin: 0 auto 1rem; }
