* {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
}

.info-section {
  display: flex;
  gap: 2rem;
  padding: 0rem 2rem 2rem 2rem;
  align-items: flex-start;
}

.info-menu-vertical {
  background-color: #fff;
  color: #000;
  width: 120px;
  padding: 1rem 1rem 2rem;
  height: auto;
  position: sticky;
  top: 0;
}

.info-section h1 {
  font-size: 1.4rem;
  font-weight: 550;
  margin-bottom: 1rem;
  align-self: flex-start;
  width: 50%;
}

.info-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 7rem;
}

.info-menu-list li {
  margin-bottom: 1.2rem;
}

.info-link {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: block;
  transition: color 0.2s ease;
  line-height: 0.5;
}

.info-link:hover,
.info-link.active {
  color: red;
}

.info-content {
  border-radius: 8px;
  padding: 0.2rem;
  margin-top: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-content h1 {
  margin-top: -0.3rem;
  padding-top: 0;
  align-self: flex-start;
  font-size: 1.4rem;
  font-weight: 550;
  margin-bottom: 1.5rem;
  width: 100%;
}

/* Projects link at the top of the sidebar */
.projects-top-link {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  margin-bottom: 1.5rem;
  text-decoration: none;
  padding-left: 0rem;
  margin-top: 0rem;
  
}

.projects-top-link:hover {
  color: red;
}

/* About Page Custom Layout */
.about-member-block {
  margin-bottom: 3rem;
  max-width: 800px;
}

.about-member-block h3 {
  margin-bottom: 20px; /* increase/decrease as you like */
}

.about-member-block img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-content hr {
  width: 100%;
  border: none;
  border-top: 1px solid #e6e6e6;
  margin: -0.75rem 0 1.75rem;
}

/* .about-leadership-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
} */

.about-leadership-single {
  width: 50%;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.about-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.about-card--center {
  width: min(680px, 100%);
}

.about-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Leadership hero: show fuller photo (less crop) */
.about-card--center img {
  height: 340px;
  object-fit: cover;
  object-position: center 5%;
}

.about-card .about-title,
.about-card .about-role,
.about-card .about-description {
  padding: 0 1rem;
}

.about-card .about-title {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.about-role {
  font-size: 0.92rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 0.75rem;
}

.about-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  margin-top: 0.75rem;
}

.about-team-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about-team-item {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.1rem 1.1rem 1rem;
  background: #fff;
}

.about-team-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.about-team-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  background: #f2f2f2;
}

.about-team-photo {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.about-team-text .about-description {
  margin-bottom: 0.5rem;
}

.about-team-text .about-name {
  margin-top: 0.25rem;
}

@media screen and (max-width: 980px) {
  .about-leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 640px) {
  .about-leadership-grid {
    grid-template-columns: 1fr;
  }
  .about-card img {
    height: 240px;
  }

  .about-team-row {
    grid-template-columns: 1fr;
  }

  .about-team-photo {
    height: 180px;
  }
}

.about-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 0.6rem;
}

.about-description {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* Contact Container wraps form and message */
.contact-container {
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 2rem;
}

/* Contact Form Styling */
.contact-form {
  width: 100%;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.contact-form button {
  padding: 0.9rem 1.5rem;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-form button:hover {
  background-color: #222;
}

/* Feedback Message Styling */
.form-message {
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  background-color: #f8f8f8;
  border-left: 4px solid;
}

.form-success {
  color: green;
  border-color: green;
}

.form-error {
  color: red;
  border-color: red;
}

/* —— Contact splash (full page, Radiant-style intro) —— */
.contact-splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.contact-splash--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.contact-splash__inner {
  padding: 2rem;
  max-width: min(92vw, 520px);
}

.contact-splash__logo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* —— Contact page layout (scoped under .contact-page) —— */
.contact-page {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  align-items: stretch !important;
  width: 100%;
  max-width: 100% !important;
  align-self: stretch;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-top: 0 !important;
  color: #2c2c2c;
}

.contact-page * {
  box-sizing: border-box;
}

.contact-page .contact-hero,
.contact-page .contact-stack,
.contact-page .contact-social-strip,
.contact-page .contact-studio-section,
.contact-page .contact-location-map {
  width: 100%;
}

@keyframes contact-scroll-nudge {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(4px);
  }
}

.contact-hero {
  position: relative;
  width: 100%;
  min-height: min(72vh, 760px);
  background-color: #e8e8e8;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgb(246 246 246 / 88%);
  pointer-events: none;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  max-width: 920px;
}

.contact-hero__title {
  margin: 0 0 10px !important;
  color: #2c2c2c !important;
  font-size: clamp(2rem, 5vw, 54px) !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  text-align: center;
  text-transform: none !important;
  text-shadow: 0 5px 5px rgb(255 255 255 / 24%);
  width: auto !important;
  align-self: center !important;
}

.contact-hero__intro {
  color: #2c2c2c;
  max-width: 820px;
  text-align: center;
  font-size: clamp(1rem, 2.2vw, 24px);
  line-height: 1.5;
  text-shadow: 0 2px 4px rgb(255 255 255 / 35%);
}

.contact-hero__intro p {
  margin: 0;
}

.contact-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  width: 30px;
  height: 50px;
  display: block;
  text-decoration: none;
  color: #343434;
}

.contact-scroll-cue::before {
  content: "\f107";
  font-family: FontAwesome;
  display: block;
  width: 30px;
  text-align: center;
  font-size: 22px;
  line-height: 1;
  animation: contact-scroll-nudge 2s infinite;
  -webkit-font-smoothing: antialiased;
}

.contact-scroll-cue__label {
  position: absolute;
  left: 50%;
  top: 48px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #343434;
}

.contact-social-strip {
  background: #fff;
  padding: 36px 15px 28px;
}

.contact-social-strip__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.contact-social-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 22px;
}

.contact-social-icons li {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-social-icons a {
  color: #2c2c2c;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.contact-social-icons img {
  max-width: 100%;
  max-height: 22px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.contact-social-icons a:hover {
  color: #eb972a;
}

.contact-stack {
  background: #fbfbfd;
}

.contact-studio-section {
  position: relative;
  padding: 20px 15px 90px;
}

.contact-studio-section__shell {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}

.contact-studio-section__shell::before {
  content: "";
  position: absolute;
  width: 95%;
  height: 100%;
  top: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 11px 59px 0 rgb(0 0 0 / 25%);
  border-radius: 15px;
  z-index: 0;
  pointer-events: none;
}

.contact-studio-section__layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.contact-studio-section__aside {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 10px 0 10px 10px;
}

.contact-sidebar-highlight {
  background: rgb(235 151 42);
  padding: 40px 30px;
  border-radius: 15px;
  height: 100%;
}

.contact-sidebar-highlight__title {
  margin: 0 0 28px !important;
  color: #fff !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  text-transform: none !important;
  width: auto !important;
  align-self: stretch !important;
}

.contact-info-heading {
  position: relative;
  padding-left: 28px;
  margin: 22px 0 8px !important;
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  text-transform: none !important;
}

.contact-info-heading::before {
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

.contact-info-heading--address::before {
  content: "\f041";
}

.contact-info-heading--phone::before {
  content: "\f095";
}

.contact-info-heading--email::before {
  content: "\f003";
}

.contact-info-heading--hours::before {
  content: "\f017";
}

.contact-info-value {
  margin-bottom: 4px;
}

.contact-info-value a {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.contact-info-value a:hover {
  color: #2c2c2c !important;
}

.contact-info-value--text {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
}

.contact-studio-section__main {
  flex: 0 0 66.666%;
  max-width: 66.666%;
  padding: 50px 50px 50px 20px;
}

.contact-main-heading {
  margin: 0 0 20px !important;
  color: #2c2c2c !important;
  font-size: 26px !important;
  font-weight: 600 !important;
  text-align: left !important;
  text-transform: none !important;
}

.contact-channel-links {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.contact-channel-links a {
  color: #2c2c2c;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-channel-links a:hover {
  color: #eb972a;
}

.contact-channel-links .fa {
  font-size: 18px;
}

.contact-notice {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 14px;
}

.contact-notice--success {
  background: #e8f5e9;
  color: #1b5e20;
}

.contact-notice--error {
  background: #ffebee;
  color: #b71c1c;
}

.contact-message-form {
  margin-top: 8px;
}

.contact-message-form__grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.contact-message-form__cell {
  padding: 0 8px;
  margin-bottom: 15px;
}

.contact-message-form__cell--half {
  flex: 0 0 50%;
  max-width: 50%;
}

.contact-message-form__cell--full {
  flex: 0 0 100%;
  max-width: 100%;
}

.contact-input {
  width: 100%;
  border: 1px solid #ccc;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 400;
  font-family: inherit;
  border-radius: 0;
  background: #fff;
  color: #2c2c2c;
}

.contact-input--multiline {
  resize: vertical;
  min-height: 120px;
}

.contact-input:focus {
  outline: none;
  border-color: #2c2c2c;
  box-shadow: none;
}

.contact-message-form__actions {
  margin-top: 8px;
}

.contact-message-form__send {
  min-width: 163px;
  max-width: 163px;
  height: 47px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgb(235 151 42);
  border: 1px solid rgb(235 151 42);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-message-form__send:hover {
  background: #2c2c2c;
  border-color: #2c2c2c;
  color: #fff;
}

.contact-location-map iframe {
  display: block;
  width: 100%;
  margin-bottom: -10px;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

@media screen and (max-width: 991px) {
  .contact-studio-section__aside,
  .contact-studio-section__main {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px;
  }

  .contact-studio-section__shell::before {
    width: 100%;
    right: 0;
    left: 0;
    margin: 0 auto;
  }

  .contact-message-form__cell--half {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-hero {
    min-height: 55vh;
  }
}

/* Figma-style contact layout */
.contact-layout-wrap {
  width: 100%;
  margin: 0;
  padding: 0 0 1.5rem;
}

.contact-layout-title {
  width: 100%;
  margin: 0 0 1.5rem !important;
  font-size: 2.4rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  color: #2f3136 !important;
}

.contact-layout-card {
  width: 100%;
  background: white;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 8px 24px rgb(0 0 0 / 6%);
}

/* Force contact page to use full available content width */
.info-content.contact-page {
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 0;
  align-items: stretch;
}

.contact-layout-top {
  display: grid;
  grid-template-columns: minmax(280px, 34%) minmax(0, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.contact-layout-left,
.contact-layout-right {
  background: white;
  border: 1px solid #e2e2e2;
  border-radius: 14px;
  padding: 1rem 1.05rem;
}

.contact-layout-left h2,
.contact-layout-right h2 {
  margin: 0 0 0.8rem !important;
  font-size: 1.9rem !important;
  font-weight: 600 !important;
  color: #2f3136 !important;
  text-transform: none !important;
  width: auto !important;
}

.contact-layout-left-intro {
  margin: 0 0 1.2rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}

.contact-layout-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-layout-info-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.75rem;
  align-items: center;
}

.contact-layout-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #e8eefb;
  color: #1d5fc8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-layout-info-item h3 {
  margin: 0 0 0.2rem !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: #2f3136 !important;
  text-transform: none !important;
}

.contact-layout-info-item a {
  margin: 0;
  font-size: 0.86rem;
  color: #3d3d3d;
  line-height: 1.35;
}

.contact-layout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.contact-layout-input {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: white;
  color: #333;
  padding: 0.68rem 0.9rem;
  font-size: 0.92rem;
  line-height: 1.2;
}

/* When user clicks (focus) */
.contact-layout-input:focus {
  background: #eeeeee;
  outline: none;
}

/* When input has value (after typing) */
.contact-layout-input:not(:placeholder-shown) {
  background: #eeeeee;
}

.contact-layout-input::placeholder {
  color: #9f9f9f;
}

.contact-layout-textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 92px;
}

.contact-layout-submit {
  margin-top: 1rem;
  min-width: 126px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #1756b8;
  background: #1d5fc8;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.contact-layout-submit:hover {
  background: #184ea6;
}

.contact-layout-social {
  text-align: center;
}

.contact-layout-social h2 {
  margin: 0 0 1rem !important;
  font-size: 1.9rem !important;
  font-weight: 600 !important;
  color: #2f3136 !important;
  text-transform: none !important;
  width: auto !important;
}

.contact-layout-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 1rem;
}

.contact-layout-social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #7fa4d5;
  color: #1d5fc8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  text-decoration: none;
}

.contact-layout-social a:hover {
  background: #1d5fc8;
  color: #fff;
}

/* Keep map edge-to-edge within contact content area */
.contact-location-map {
  width: 100%;
  margin-top: 1rem;
  border-radius: 12px;
  overflow: hidden;
}

.contact-location-map iframe {
  width: 100%;
  min-height: 430px;
  display: block;
}

@media screen and (max-width: 1366px) {
  .contact-layout-card {
    padding: 1.4rem;
  }
}

@media screen and (max-width: 1199px) {
  .contact-layout-top {
    grid-template-columns: minmax(260px, 36%) minmax(0, 1fr);
  }
}

@media screen and (max-width: 1100px) {
  .contact-layout-top {
    grid-template-columns: 1fr;
  }

  .contact-layout-left,
  .contact-layout-right {
    width: 100%;
  }

  .contact-location-map iframe {
    min-height: 380px;
  }
}

@media screen and (max-width: 900px) {
  .contact-layout-title {
    font-size: 2rem !important;
  }

  .contact-layout-card {
    padding: 1.1rem;
  }
}

@media screen and (max-width: 640px) {
  .contact-layout-card {
    padding: 0.85rem;
  }

  .contact-layout-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout-title {
    font-size: 1.65rem !important;
    margin-bottom: 1rem !important;
  }

  .contact-layout-left h2,
  .contact-layout-right h2 {
    font-size: 1.45rem !important;
  }

  .contact-layout-social h2 {
    font-size: 1.45rem !important;
  }

  .contact-location-map iframe {
    min-height: 320px;
  }
}

/* Add this to your existing info.css */
.search-bar {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  width: 100%;
  max-width: 600px;
}

.search-bar input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.search-bar button {
  padding: 0.8rem 1.2rem;
  background: black;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.search-results {
  margin-top: 2rem;
  width: 100%;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.project-thumb {
  text-decoration: none;
  color: inherit;
}

.project-block {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease;
}

.project-block:hover {
  transform: scale(1.02);
}

.project-block img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sticky footer layout */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

main.info-section {
  flex: 1 0 auto; 
}

.footer {
  flex-shrink: 0; 
}


/* Responsive: Ensure message and form scale together */
@media screen and (max-width: 768px) {
  .info-section {
    flex-direction: column;
    padding: 1rem;
  }

  .info-menu-vertical {
    width: 100%;
    position: relative;
  }

  .info-content h1 {
    font-size: 1.2rem;
  }

  .contact-container {
    margin-top: 1rem;
  }
}

#search-text {
  margin-top: 15rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 300px;
  gap: 10px;
  padding: 0px;
  margin-top: 9rem;
  
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}    

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Special layout */
.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

