/* ==============================
   RESET / BASE
   ============================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
}

/* ==============================
   VARIABLES
   ============================== */

:root {
  --color-bg: #f5f1e8;
  --color-primary: #ff6b6b;
  --color-dark: #111111;
  --color-gray: #6b6b6b;
  --color-accent-soft: #f4d7a1;
  --color-card-bg: #ffffff;
  --color-border-light: rgba(0, 0, 0, 0.08);

  --font-primary: "Inter", sans-serif;
  --font-heading: "Poppins", sans-serif;
}

/* ==============================
   NAVBAR
   ============================== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 0;
  background: transparent;
  z-index: 1000;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.nav-middle {
  justify-self: center;
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  padding: 6px 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-middle a {
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 30px;
  transition: 0.3s;
}

.nav-middle a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-primary);
  border-radius: 30px;
  transform: scale(0);
  transition: 0.3s ease;
}

.nav-middle a:hover::before {
  transform: scale(1);
}

.nav-middle a:hover {
  color: #fff;
}

.nav-right {
  justify-self: end;
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .nav-right {
    display: block;
  }

  .nav-middle {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-middle.active {
    display: flex;
  }

  .nav-middle a {
    width: 80%;
    text-align: center;
    color: var(--color-primary);
  }

  .nav-middle a:hover {
    color: #fff;
  }
}

/* ==============================
   HERO SECTION
   ============================== */

.hero {
  margin-top: 0;
  padding-top: 0;
}

.hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

/* .hero-video video,
.desktop-video,
.mobile-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.hero-video img,
.desktop-video,
.mobile-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.desktop-video {
  display: block;
}

.mobile-video {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  text-align: center;
  color: var(--color-card-bg);
}

.hero-top-text {
  display: block;
  font-size: clamp(12px, 1.2vw, 16px);
  opacity: 0.85;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-card-bg);
}

.highlight-text {
  color: var(--color-primary);
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }

  .hero-video {
    aspect-ratio: 9 / 16;
  }
}

/* ==============================
   HERO MARQUEE
   ============================== */

.hero-marquee {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 0;
  overflow: hidden;
}

.marquee-track {
  display: inline-flex;
  min-width: max-content;
  gap: 60px;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
}

.marquee-track span {
  display: inline-block;
}

.track-1 {
  color: var(--color-primary);
  animation: scrollLeft 20s linear infinite;
}

.track-2 {
  color: var(--color-dark);
  animation: scrollRight 25s linear infinite;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* ==============================
   IMPACT FEATURE
   ============================== */

.impact-feature {
  padding: 140px 0;
  background: #efe8dc;
}

.impact-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.impact-top {
  max-width: 900px;
  margin-bottom: 80px;
}

.impact-main-title {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1.05;
  color: var(--color-dark);
  margin-bottom: 25px;
}

.impact-main-sub {
  max-width: 600px;
  font-size: 18px;
  color: var(--color-gray);
}

.impact-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  background: #f4d7a1;
  padding: 50px;
  border-radius: 18px;
}

.impact-left h3 {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--color-dark);
  margin-bottom: 15px;
}

.impact-left p {
  font-size: 16px;
  color: var(--color-dark);
  margin-bottom: 15px;
}

.impact-middle h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 15px;
}

.impact-middle ul {
  list-style: none;
  padding: 0;
}

.impact-middle li {
  font-size: 15px;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.impact-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.impact-image {
  width: 100%;
  height: 140px;
  background-image: url("../images2/handsup.webp");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.impact-right p {
  font-size: 14px;
  font-style: italic;
  color: var(--color-dark);
}

.impact-right span {
  font-size: 13px;
  color: var(--color-gray);
}

/* optional JS reveal support */
.impact-top,
.impact-strip {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.impact-top.show,
.impact-strip.show {
  opacity: 1;
}

@media (max-width: 900px) {
  .impact-main-title {
    font-size: 42px;
  }

  .impact-strip {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   IMPACT STATS
   ============================== */

.impact-stats {
  position: relative;
  padding: 140px 0;
  background-image: url("../images2/flowers.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.impact-stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.impact-stats-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.impact-stats-left h2 {
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.impact-stats-left p {
  max-width: 500px;
  font-size: 18px;
  color: #ddd;
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.stat-card h3 {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #ccc;
}

@media (max-width: 900px) {
  .impact-stats-container,
  .impact-stats-grid {
    grid-template-columns: 1fr;
  }

  .impact-stats-left h2 {
    font-size: 40px;
  }
}

/* ==============================
   ABOUT SECTION
   ============================== */

.ngo-about-section {
  padding: 120px 0;
  background: var(--color-bg);
}

.ngo-about-container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: 80px;
  align-items: start;
}

.ngo-about-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ngo-about-tag {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a8998a;
}

.ngo-about-title {
  max-width: 620px;
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.03;
  font-weight: 700;
  color: var(--color-dark);
}

.ngo-about-title span {
  color: var(--color-primary);
}

.ngo-about-intro {
  max-width: 510px;
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-gray);
}

.ngo-about-image-wrap {
  width: 100%;
  max-width: 470px;
  margin-top: 10px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.ngo-about-image-wrap img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.ngo-about-right {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

.ngo-about-item {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.ngo-about-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ngo-about-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  align-items: center;
  gap: 22px;
  padding: 28px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.ngo-about-number {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: #b7b0a8;
}

.ngo-about-head h3 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.05;
  font-weight: 500;
  color: var(--color-dark);
}

.ngo-about-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a938b;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.ngo-about-item.active .ngo-about-arrow {
  transform: rotate(90deg);
  color: var(--color-primary);
}

.ngo-about-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.ngo-about-item.active .ngo-about-content {
  max-height: 900px;
}

.ngo-about-text-block {
  max-width: 92%;
  padding: 0 0 28px 74px;
}

.ngo-about-text-block p,
.ngo-about-text-block li {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-gray);
}

.ngo-about-text-block p {
  margin-bottom: 14px;
}

.ngo-about-text-block p:last-child,
.ngo-about-text-block li:last-child {
  margin-bottom: 0;
}

.ngo-about-text-block ul {
  margin: 0;
  padding-left: 18px;
}

.ngo-about-text-block li {
  margin-bottom: 8px;
}

.ngo-about-item:hover .ngo-about-head h3 {
  color: var(--color-primary);
}

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

  .ngo-about-left {
    max-width: 760px;
  }

  .ngo-about-image-wrap {
    max-width: 560px;
  }

  .ngo-about-right {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .ngo-about-section {
    padding: 90px 0;
  }

  .ngo-about-container {
    width: 92%;
    gap: 44px;
  }

  .ngo-about-title {
    max-width: 100%;
    font-size: 42px;
  }

  .ngo-about-intro {
    font-size: 15px;
    line-height: 1.75;
  }

  .ngo-about-image-wrap img {
    height: 250px;
  }

  .ngo-about-toggle {
    grid-template-columns: 40px 1fr 22px;
    gap: 12px;
    padding: 22px 0;
  }

  .ngo-about-number {
    font-size: 13px;
  }

  .ngo-about-head h3 {
    font-size: 22px;
  }

  .ngo-about-arrow {
    font-size: 15px;
  }

  .ngo-about-text-block {
    max-width: 100%;
    padding: 0 0 22px 52px;
  }

  .ngo-about-text-block p,
  .ngo-about-text-block li {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* ==============================
   NGO SCHEDULE / INITIATIVES
   ============================== */

.ngo-schedule {
  padding: 120px 5%;
  background: #fff;
}

.ngo-schedule-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ngo-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  color: #999;
}

.ngo-left h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.ngo-left h2 span {
  color: #ff6b6b;
}

.ngo-left p {
  max-width: 400px;
  margin-bottom: 30px;
  color: #666;
}

.ngo-image {
  width: 100%;
  height: 220px;
  border-radius: 15px;
  background: url("../images2/teaching.webp") center / cover;
}

.ngo-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ngo-item {
  display: flex;
  gap: 20px;
  padding: 18px;
  border-radius: 14px;
  transition: 0.3s;
  cursor: pointer;
}

.ngo-item span {
  min-width: 30px;
  font-size: 14px;
  color: #999;
}

.ngo-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #111;
}

.ngo-item p {
  font-size: 14px;
  color: #777;
}

.ngo-item.active {
  background: #f9f9f9;
  border: 1px solid #eee;
}

.ngo-item:hover {
  background: #f5f5f5;
  transform: translateX(5px);
}

@media (max-width: 900px) {
  .ngo-schedule-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ngo-left h2 {
    font-size: 32px;
  }
}

/* ==============================
   PROGRAM PROCESS
   ============================== */

.program-process {
  padding: 90px 10%;
  background: var(--color-bg);
  color: var(--color-dark);
}

.process-container {
  max-width: 1200px;
  margin: auto;
}

.process-header {
  margin-bottom: 50px;
}

.process-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--color-primary);
}

.process-header h2 {
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1.3;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-card {
  background: var(--color-card-bg);
  padding: 30px;
  border: 1px solid var(--color-border-light);
  border-radius: 18px;
  transition: 0.3s;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
}

.process-card span {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
}

.process-card h3 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 20px;
}

.process-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray);
}

@media (max-width: 1000px) {
  .process-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .program-process {
    padding: 70px 20px;
  }

  .process-header h2 {
    font-size: 28px;
  }

  .process-cards {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   NGO PLANS
   ============================== */

.ngo-plans {
  position: relative;
  padding: 140px 20px;
  background-image: url("../images2/farm.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.ngo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.ngo-content {
  position: relative;
  max-width: 1100px;
  margin: auto;
  text-align: center;
  color: #fff;
}

.ngo-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 56px);
  margin-bottom: 10px;
}

.ngo-sub {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 60px;
}

.ngo-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.ngo-card {
  width: 280px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 25px;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.ngo-card.highlight {
  transform: translateY(-20px);
}

.ngo-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #fff;
}

.ngo-card p {
  font-size: 14px;
  color: #ddd;
}

.ngo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .ngo-cards {
    gap: 20px;
  }

  .ngo-card {
    width: 45%;
    height: 260px;
  }

  .ngo-card.highlight {
    transform: none;
  }
}

/* ==============================
   CONTACT SECTION
   ============================== */

.contact-section {
  background: #fff;
  font-family: "Inter", sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 5% 40px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 280px;
}

.contact-left h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-left p {
  max-width: 400px;
  font-size: 16px;
  color: #555;
}

.contact-info {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}

.contact-info span,
.contact-social span {
  display: block;
  font-size: 12px;
  color: #777;
}

.contact-social span {
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 16px;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000;
  font-size: 15px;
  transition: 0.3s;
}

.social-links a i {
  font-size: 18px;
}

.social-links a:hover {
  color: #ff6b6b;
}

.contact-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==============================
   OPTIONAL REVEAL HELPERS
   ============================== */

.reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal.show {
  opacity: 1;
  transform: none;
}

/* ==============================
   GALLERY SECTION
   ============================== */

.hidden {
  display: none;
}

.back-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3000;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  color: #333;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
}

.back-btn:hover {
  background: #f2f2f2;
  border-color: #999;
}

.gallery-main {
  min-height: 100vh;
  margin: 0;
  padding: 0 0 60px;
  background: var(--color-bg);
}

.gallery-wrapper {
  padding: 0 20px 40px;
}

.gallery-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 30px;
  border-radius: 0;
  overflow: hidden;
}

.gallery-video video,
.gallery-desktop,
.gallery-mobile {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-desktop {
  display: block;
}

.gallery-mobile {
  display: none;
}

.gallery-marquee {
  overflow: hidden;
  margin-bottom: 30px;
}

.gallery-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, 280px);
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.gallery-card {
  position: relative;
  width: 280px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.gallery-card:hover .card-bg {
  transform: scale(1.1);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}

.card-content {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: #fff;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .gallery-desktop {
    display: none;
  }

  .gallery-mobile {
    display: block;
  }

  .gallery-video {
    aspect-ratio: 9 / 16;
  }
}

@media (max-width: 768px) {
  .gallery-wrapper {
    padding: 0 12px 30px;
  }

  .gallery-cards {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 15px;
    padding: 0;
  }

  .gallery-card {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .card-content {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }
}