/*
Theme Name: DONORA - Pineapple Jam
Theme URI: https://donora-pineapple-delight.lovable.app
Author: DONORA
Author URI: https://donora-pineapple-delight.lovable.app
Description: A premium one-page WordPress theme for DONORA Pineapple Jam brand. Features hero section, about, products, benefits, process, testimonials, FAQ, and contact sections.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: donora
Tags: one-column, custom-colors, custom-logo, featured-images, full-width-template, theme-options
*/

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

:root {
  --golden: hsl(42, 95%, 55%);
  --golden-light: hsl(45, 90%, 75%);
  --golden-dark: hsl(38, 90%, 45%);
  --cream: hsl(45, 40%, 97%);
  --cream-dark: hsl(42, 25%, 92%);
  --leaf: hsl(85, 45%, 45%);
  --leaf-light: hsl(90, 40%, 70%);
  --bark: hsl(30, 25%, 25%);
  --bark-light: hsl(30, 15%, 40%);
  --background: hsl(45, 33%, 97%);
  --card: hsl(45, 40%, 99%);
  --primary: hsl(42, 95%, 55%);
  --primary-foreground: hsl(30, 15%, 10%);
  --border: hsl(42, 30%, 85%);
  --shadow-soft: 0 4px 20px -4px hsla(30, 25%, 25%, 0.08);
  --shadow-medium: 0 8px 30px -6px hsla(30, 25%, 25%, 0.12);
  --shadow-golden: 0 8px 30px -6px hsla(42, 95%, 55%, 0.3);
  --gradient-hero: linear-gradient(135deg, hsl(45, 40%, 97%) 0%, hsl(42, 50%, 92%) 100%);
  --gradient-golden: linear-gradient(135deg, hsl(42, 95%, 55%) 0%, hsl(38, 90%, 50%) 100%);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--bark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient-golden {
  background: linear-gradient(135deg, hsl(42, 95%, 55%) 0%, hsl(38, 90%, 45%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-golden {
  background: hsla(45, 90%, 75%, 0.3);
  color: var(--golden-dark);
}

.badge-leaf {
  background: hsla(85, 45%, 45%, 0.1);
  color: var(--leaf);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--gradient-golden);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-golden);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px -6px hsla(42, 95%, 55%, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--bark);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary {
  background: var(--card);
  color: var(--bark);
}
.btn-secondary:hover {
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--bark-light);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.3s;
}

.site-header.scrolled {
  background: hsla(45, 40%, 99%, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  padding: 0.75rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--bark-light);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s;
}
.main-nav a:hover {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--bark);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
}
.mobile-nav.active { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  color: var(--bark-light);
  font-weight: 500;
}

@media (max-width: 1023px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--bark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--bark-light);
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.trust-badges {
  display: flex;
  gap: 1.5rem;
}
.trust-badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--bark-light);
}
.trust-badges .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}
.dot-leaf { background: var(--leaf); }
.dot-primary { background: var(--primary); }

.hero-image img {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-medium);
}

@media (max-width: 1023px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .trust-badges { justify-content: center; }
}

@media (max-width: 640px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
}

/* ===== ABOUT ===== */
.about {
  padding: 6rem 0;
  background: var(--cream);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
  margin-top: 2rem;
}

.about-stats .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.about-stats .stat-label {
  font-size: 0.875rem;
  color: var(--bark-light);
}

.value-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: box-shadow 0.3s;
  margin-bottom: 1.5rem;
}
.value-card:hover { box-shadow: var(--shadow-medium); }

.value-card .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background: hsla(45, 90%, 75%, 0.3);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--bark-light);
  font-size: 0.9375rem;
}

@media (max-width: 1023px) {
  .about .container { grid-template-columns: 1fr; }
}

/* ===== PRODUCTS ===== */
.products {
  padding: 6rem 0;
  background: var(--background);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--card);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s, transform 0.3s;
}
.product-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.product-card .product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}

.product-info {
  padding: 1.5rem;
}
.product-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 0.25rem;
}
.product-info .size { color: var(--bark-light); font-size: 0.875rem; margin-bottom: 0.5rem; }
.product-info .description { color: var(--bark-light); font-size: 0.875rem; margin-bottom: 1rem; }
.product-info .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.gift-cta {
  margin-top: 4rem;
  background: var(--gradient-golden);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
}
.gift-cta h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}
.gift-cta p {
  color: hsla(30, 15%, 10%, 0.8);
  margin-bottom: 1.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.gift-cta .gift-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ===== BENEFITS ===== */
.benefits {
  padding: 6rem 0;
  background: var(--cream-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: box-shadow 0.3s;
}
.benefit-card:hover { box-shadow: var(--shadow-golden); }

.benefit-card .icon-box {
  width: 4rem;
  height: 4rem;
  background: hsla(45, 90%, 75%, 0.3);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: all 0.3s;
}
.benefit-card:hover .icon-box {
  background: var(--primary);
  transform: scale(1.1);
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 0.75rem;
}
.benefit-card p {
  color: var(--bark-light);
  font-size: 0.875rem;
  line-height: 1.6;
}

.ingredients-box {
  margin-top: 4rem;
  background: var(--card);
  border-radius: 1.5rem;
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.ingredients-box h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 1rem;
}
.ingredients-box p {
  color: var(--bark-light);
  margin-bottom: 1.5rem;
}
.ingredient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.ingredient-tags span {
  padding: 0.5rem 1rem;
  background: hsla(45, 90%, 75%, 0.3);
  color: var(--golden-dark);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}
.pineapple-emoji {
  width: 12rem;
  height: 12rem;
  background: var(--gradient-golden);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  flex-shrink: 0;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1023px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-box { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ===== PROCESS ===== */
.process {
  padding: 6rem 0;
  background: var(--background);
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 6rem;
}
.process-step:last-child { margin-bottom: 0; }
.process-step.reverse .step-image { order: 2; }
.process-step.reverse .step-content { order: 1; text-align: right; }
.process-step.reverse .step-line { margin-left: auto; }

.step-image {
  position: relative;
}
.step-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-medium);
}
.step-number {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 5rem;
  height: 5rem;
  background: var(--primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-golden);
}
.step-number span {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
}

.step-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 1rem;
}
.step-content p {
  color: var(--bark-light);
  font-size: 1.125rem;
  line-height: 1.7;
}
.step-line {
  margin-top: 2rem;
  height: 4px;
  width: 6rem;
  background: var(--gradient-golden);
  border-radius: 9999px;
}

@media (max-width: 1023px) {
  .process-step { grid-template-columns: 1fr; }
  .process-step.reverse .step-image { order: 0; }
  .process-step.reverse .step-content { order: 0; text-align: left; }
  .process-step.reverse .step-line { margin-left: 0; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 0;
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-medium); }

.testimonial-card .quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: hsla(45, 90%, 75%, 0.5);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.25rem;
}

.testimonial-card .review-text {
  color: var(--bark-light);
  font-size: 1.125rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.customer-info img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--golden-light);
}
.customer-info h4 {
  font-weight: 700;
  color: var(--bark);
}
.customer-info p {
  font-size: 0.875rem;
  color: var(--bark-light);
}

.trust-banner {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  text-align: center;
}
.trust-banner .trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}
.trust-banner .trust-label {
  font-size: 0.875rem;
  color: var(--bark-light);
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq {
  padding: 6rem 0;
  background: var(--background);
}

.faq-list {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item.active { box-shadow: var(--shadow-medium); }

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--bark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--primary); }
.faq-question .arrow {
  transition: transform 0.3s;
  font-size: 1.25rem;
}
.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
  color: var(--bark-light);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 0;
  background: var(--cream);
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--card);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--background);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--bark);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { resize: none; min-height: 8rem; }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-card .icon-box {
  width: 3rem;
  height: 3rem;
  background: hsla(45, 90%, 75%, 0.3);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}
.contact-card h3 {
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.contact-card p {
  color: var(--bark-light);
  font-size: 0.9375rem;
}

.newsletter-box {
  background: var(--gradient-golden);
  padding: 2rem;
  border-radius: 1.5rem;
  margin-top: 1.5rem;
}
.newsletter-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
}
.newsletter-box p {
  color: hsla(30, 15%, 10%, 0.8);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.newsletter-box .newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-box input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.75rem;
  background: hsla(45, 40%, 99%, 0.9);
  font-size: 0.875rem;
  color: var(--bark);
}

@media (max-width: 1023px) {
  .contact .container { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bark);
  color: var(--cream);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: hsla(45, 40%, 97%, 0.7);
  max-width: 24rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  background: hsla(45, 40%, 97%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 1.125rem;
}
.social-links a:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.footer-links h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
  color: hsla(45, 40%, 97%, 0.7);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsla(45, 40%, 97%, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p {
  color: hsla(45, 40%, 97%, 0.5);
  font-size: 0.875rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: hsla(45, 40%, 97%, 0.5);
  font-size: 0.875rem;
}
.footer-bottom-links a:hover { color: var(--cream); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== WORDPRESS CORE ===== */
.alignnone { margin: 5px 20px 20px 0; }
.aligncenter { display: block; margin: 5px auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }
.wp-caption { max-width: 100%; }
.wp-caption-text { text-align: center; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; }
