/* style.css - Minimalistic, creative, and responsive NGO website styles */

:root {
  --primary: #000000;
  --secondary: #f4f4f4;
  --accent: #f9b233;
  --text: #222;
  --text-light: #fff;
  --border-radius: 8px;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--secondary);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover, a:focus {
  color: var(--accent);
}

header {
  background: var(--text-light);
  color: var(--primary);
  /* Remove fixed padding to allow height expansion */
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 120px;
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  min-height: 120px;
}

.navbar-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  height: 120px;
  justify-content: center;
}
.navbar-logo img {
  height: 120px;
  width: 120px;
  max-height: 120px;
  max-width: 120px;
  display: block;
}

.navbar-menu {
  display: flex;
  gap: 1.5rem;
}

.navbar-menu a {
  color: var(--primary);
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius);
  transition: background var(--transition), color var(--transition);
}

.navbar-menu a:hover, .navbar-menu a:focus {
  background: var(--accent);
  color: var(--text);
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 800px) {
  .navbar-menu {
    display: none !important; /* Hide by default */
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100vw !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    padding: 0;
    top: 60px;
    position: absolute;
    background: var(--text-light);
    z-index: 100;
    min-height: 48px;
    overflow-x: visible;
    white-space: normal;
  }
  .navbar-menu.active {
    display: flex !important; /* Show when active */
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: flex-start;
    align-items: flex-start;
    background: #FFF9DB;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-menu a,
  .navbar-menu > * {
    display: inline-block !important;
    flex: 0 1 auto !important;
    min-width: 90px;
    max-width: 200px;
    box-sizing: border-box !important;
    white-space: normal !important;
    text-align: center !important;
    padding: 0.9rem 1.2rem !important;
    word-break: break-word !important;
    margin: 0 !important;
    border-radius: 0 !important;
    float: none !important;
    clear: none !important;
    vertical-align: top !important;
  }
  .navbar-menu * {
    float: none !important;
    clear: none !important;
  }
}

main {
  max-width: var(--max-width);
  margin: 2rem auto;
  padding: 0 1rem;
}

.hero {
  position: relative;
  background: url('assets/images/gpt1.png') center center/cover no-repeat;
  color: var(--primary);
  padding: 0;
  border-radius: var(--border-radius);
  margin-bottom: 0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.90);
  z-index: 0;
  border-radius: var(--border-radius);
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  min-height: 320px;
  height: 320px;
  position: relative;
}

.hero-content, .cta-buttons {
  position: relative;
  z-index: 1;
}

.hero-name {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  gap: 0.5rem;
}

.hero-name h1 {
  font-size: 2.5rem;
  color: var(--accent);
  text-align: center;
  border-radius: var(--border-radius);
  padding: 1rem 2rem;
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.hero-logo img {
  height: 120px;
  width: 120px;
  object-fit: contain;
  display: block;
  background: rgba(255,255,255,0.8);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 0.5rem;
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  flex: 1 1 0;
  height: 100%;
  padding-bottom: 2rem;
}

.hero-text {
  text-align: right;
}

.hero-image {
  flex: 0 0 320px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  display: block;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem auto 2rem auto;
}

.cta-buttons a {
  background: var(--accent);
  color: var(--text);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background var(--transition), color var(--transition);
}

.cta-buttons a:hover, .cta-buttons a:focus {
  background: var(--text-light);
  color: var(--primary);
}

.section {
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--accent);
  background: none;
  box-shadow: none;
  padding: 0;
  text-align: center;
}

.projects-grid, .team-grid {
  display: grid;
  gap: 2rem;
}

.projects-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.2rem;
  width: 100%;
  margin: 2.5rem auto 2rem auto;
  padding: 0 0.5rem;
  justify-items: center;
}
.team-grid .card {
  width: 100%;
  max-width: 420px;
  margin: 0;
}

.card {
  background: var(--text-light);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition);
}

.card:hover, .card:focus-within {
  box-shadow: 0 4px 16px rgba(42,122,226,0.10);
}

.card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
  background: var(--secondary);
}

footer {
  background: var(--text-light);
  color: var(--primary);
  text-align: center;
  padding: 1.5rem 1rem 1rem 1rem;
  margin-top: 3rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin: 1rem 0 0.5rem 0;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s;
  color: var(--primary);
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--accent);
  color: var(--text);
}
.footer-social img {
  width: 28px;
  height: 28px;
  display: block;
}

footer a {
  color: var(--primary);
  transition: color var(--transition);
}
footer a:hover, footer a:focus {
  color: var(--accent);
}

@media (max-width: 1000px) {
  .hero-content {
    min-height: 220px;
    height: 220px;
  }
  .hero-logo img {
    height: 80px;
    width: 80px;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 0;
    padding: 1rem 0 0 0;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
    height: auto;
    gap: 1.5rem;
  }
  .hero-name {
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
  }
  .hero-name h1 {
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
  }
  .hero-logo {
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
  }
  .hero-logo img {
    height: 60px;
    width: 60px;
    padding: 0.25rem;
  }
  .cta-buttons {
    margin: 1.5rem auto 1.5rem auto;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.7rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .card {
    padding: 1rem;
  }
  main {
    margin: 1rem auto;
  }
}

@media (max-width: 900px) {
  .hero-content {
    height: 160px;
  }
}

@media (max-width: 700px) {
  .hero-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    height: auto;
  }
  .hero-main {
    align-items: center;
    justify-content: flex-end;
  }
  .hero-text {
    text-align: center;
  }
  .cta-buttons {
    justify-content: center;
    margin: 2rem auto 0 auto;
  }
  .hero-logo img, .hero-image img {
    height: 100px;
    max-width: 100px;
    width: auto;
    object-fit: contain;
  }
  .hero-image {
    width: 100%;
    height: auto;
  }
}

/* Accessibility: Focus styles */
a:focus, button:focus, .card:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Utility classes */
h1, h2, h3, h4, h5, h6 {
  color: var(--accent);
}

.black {
  color: #111 !important;
  text-align: center;
}

.noto-serif-yezidi {
  font-family: "Noto Serif Yezidi", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.section p, .info-paragraph, .impact-paragraph {
  font-size: 1.15rem;
}
@media (max-width: 700px) {
  .section-title {
    font-size: 1.2rem;
  }
  .noto-serif-yezidi {
    font-size: 1.3rem;
  }
  .section p, .info-paragraph, .impact-paragraph {
    font-size: 1rem;
  }
} 

/* Volunteer form styles */
.volunteer-form {
  max-width: 400px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.volunteer-form label {
  display: block;
  margin-bottom: 0.5rem;
}
.volunteer-form button {
  background: var(--accent);
  color: var(--text);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
} 

.counters-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.2rem;
  width: 100%;
  margin: 2.2rem auto 1.5rem auto;
  padding: 0 0.5rem;
  justify-items: center;
}
.counter-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  min-width: 70px;
  max-width: 90px;
  min-height: 70px;
  max-height: 90px;
  padding: 0.2rem;
  overflow: visible;
  position: relative;
  z-index: 1;
  color: var(--accent);
  text-align: center;
  word-break: break-word;
}
.counter-number,
.counter-plus {
  font-family: 'Noto Serif Yezidi', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent) !important;
  margin-bottom: 0.2rem;
  display: inline;
  line-height: 1;
  word-break: break-word;
  max-width: 100%;
  overflow-wrap: break-word;
}
.counter-plus {
  font-family: 'Noto Serif Yezidi', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent) !important;
  margin-left: 0.05em;
  padding-left: 0;
  vertical-align: baseline;
  display: inline;
  line-height: 1;
}
.counter-heading {
  font-family: 'Noto Serif Yezidi', serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent) !important;
  text-align: center;
  margin-top: 0.2rem;
  letter-spacing: 0.5px;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 100%;
  min-width: 0;
  flex-shrink: 1;
}
.counter-value {
  width: 100%;
  flex-shrink: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .counters-section {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 1rem;
    padding: 0;
  }
  .counter-box {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    max-width: none;
    max-height: none;
    aspect-ratio: 1/1;
    padding: 0.5rem 0.2rem;
    font-size: 0.93rem;
  }
  .counter-number,
  .counter-plus {
    font-size: 1.1rem;
  }
  .counter-heading {
    font-size: 0.8rem;
    padding: 0 0.05em;
  }
}
@media (max-width: 600px) {
  .counters-section {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 0.7rem;
    padding: 0;
  }
  .counter-box {
    width: 100%;
    height: 60px;
    min-width: 0;
    min-height: 0;
    max-width: none;
    max-height: none;
    aspect-ratio: unset;
    padding: 0.3rem 0.1rem;
    font-size: 0.88rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .counter-number,
  .counter-plus {
    font-size: 1.3rem;
  }
  .counter-heading {
    font-size: 0.95rem;
    padding: 0 0.03em;
  }
} 

.hero-slogan {
  font-family: 'Noto Serif Yezidi', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--accent);
  text-align: center;
  margin-top: 0.3rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
}
@media (max-width: 700px) {
  .hero-slogan {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
} 

.info-section {
  max-width: 700px;
  margin: 2.5rem auto 1.5rem auto;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: center;
}
.info-heading {
  font-size: 1.4rem;
  color: var(--accent);
  font-family: 'Noto Serif Yezidi', serif;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.info-paragraph {
  font-size: 1.05rem;
  color: var(--text);
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-bottom: 0;
}
.highlight {
  font-weight: bold;
}
@media (max-width: 700px) {
  .info-section {
    padding: 1rem 0.5rem;
  }
  .info-heading {
    font-size: 1.05rem;
  }
  .info-paragraph {
    font-size: 0.95rem;
  }
} 

.impact-section {
  max-width: 700px;
  margin: 2.5rem auto 1.5rem auto;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: center;
}
.carousel-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 1.8rem auto;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  background: #f4f4f4;
}
.carousel-slide {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.carousel-image {
  width: 100%;
  height: 400px;
  object-fit: contain;
  border-radius: var(--border-radius);
  transition: opacity 0.5s;
}
.impact-paragraph {
  font-size: 1.08rem;
  color: var(--text);
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-top: 1.1rem;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .impact-section {
    padding: 1rem 0.5rem;
  }
  .carousel-container {
    max-width: 100%;
  }
  .carousel-image {
    height: 220px;
  }
  .impact-paragraph {
    font-size: 0.97rem;
  }
} 

.helpline {
  color: var(--accent);
  font-weight: bold;
  text-align: center;
  margin-top: 0.8rem;
  font-size: 1.15rem;
} 

.contact-details-section p {
  text-align: center;
} 

.donation-details {
  background: #fffbe8;
  border: 1px solid var(--accent);
  border-radius: var(--border-radius);
  padding: 1rem 1.2rem;
  margin: 0.5rem auto 1.2rem auto;
  max-width: 520px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-size: 1.05rem;
  color: #222;
} 
.donation-details img {
  display: block;
  margin: 0 auto;
} 

.donation-table {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 1rem auto;
  border-collapse: collapse;
  font-size: 1.05rem;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  overflow: hidden;
}
.donation-table td {
  padding: 0.6em 1em;
  border: 1px solid #e0c77a;
  text-align: left;
  vertical-align: top;
  color: #222;
  background: #fff;
}
.donation-table tr td:first-child {
  font-weight: bold;
  color: #111;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .donation-details {
    max-width: 99vw;
    padding: 0.7rem 0.2rem;
  }
  .donation-table {
    font-size: 0.97rem;
    width: 100%;
    max-width: 99vw;
    min-width: 0;
    border-radius: 6px;
  }
  .donation-table tr {
    display: block;
    margin-bottom: 0.7em;
    border-bottom: 1px solid #e0c77a;
  }
  .donation-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.5em 0.7em;
    border: none;
    text-align: left;
    font-size: 0.97rem;
  }
  .donation-table tr td:first-child {
    font-weight: bold;
    color: #111;
    background: #f7f7f7;
    border-bottom: none;
    padding-bottom: 0.2em;
    white-space: normal;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.2rem;
  width: 100%;
  margin: 2.5rem auto 2rem auto;
  padding: 0 0.5rem;
  justify-items: center;
}
.gallery-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border: 1.5px solid #f3e2b7;
  width: 100%;
  max-width: 420px;
  margin: 0;
  padding: 1.2rem 1.2rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-carousel {
  width: 100%;
  height: 340px;
  overflow: hidden;
  border-radius: var(--border-radius);
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.gallery-image {
  width: 100%;
  height: 340px;
  object-fit: contain;
  border-radius: var(--border-radius);
  transition: opacity 0.5s;
}
.gallery-caption {
  font-weight: bold;
  color: var(--accent);
  text-align: center;
  font-size: 1.08rem;
  margin-top: 0.5rem;
}
@media (max-width: 600px) {
  .gallery-card {
    max-width: 98vw;
    padding: 0.7rem 0.3rem 0.7rem 0.3rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.5rem;
    padding: 0;
  }
  .gallery-carousel, .gallery-image {
    height: 140px;
  }
  .gallery-caption {
    font-size: 0.97rem;
  }
} 

.quotes-carousel-section {
  margin: 40px 0 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quotes-carousel-bg {
  background: linear-gradient(135deg, #fffbe8 80%, #f9b23322 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 32px 24px 24px 24px;
  max-width: 700px;
  width: 100%;
  position: relative;
}
.quotes-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
}
.quotes-carousel-slide {
  flex: 1;
  text-align: center;
  min-height: 80px;
}
.quote-text {
  font-size: 0.85rem;
  font-style: italic;
  color: #333;
  margin: 0;
  transition: opacity 0.5s;
}
.quote-source {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  color: #b88a1a;
  font-weight: 600;
}
.carousel-arrow {
  background: none;
  border: none;
  font-size: 2rem;
  color: #f9b233;
  cursor: pointer;
  padding: 0 16px;
  transition: color 0.2s;
}
.carousel-arrow:hover {
  color: #b88a1a;
}
.quotes-carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.quotes-carousel-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #f9b23355;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s;
  cursor: pointer;
}
.quotes-carousel-dots .dot.active {
  background-color: #f9b233;
}

/* Work Preview Card Styles */
.work-preview-card {
  display: block;
  max-width: 280px;
  width: 100%;
  margin: 2rem auto;
  padding: 1.5rem;
  background: var(--text-light);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.work-preview-card:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  background: #fafafa;
}

.work-preview-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.work-preview-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0 0 1rem 0;
}

.preview-arrow {
  display: inline-block;
  color: var(--primary);
  font-size: 2rem;
  font-weight: bold;
  transition: transform var(--transition);
}

.work-preview-card:hover .preview-arrow {
  transform: translateX(4px);
}

/* Responsive adjustments for work preview card */
@media (max-width: 600px) {
  .work-preview-card {
    max-width: 260px;
    margin: 1.5rem auto;
    padding: 1.2rem;
  }
  
  .work-preview-card h3 {
    font-size: 1.2rem;
  }
  
  .work-preview-card p {
    font-size: 0.9rem;
  }
} 