:root {
  --forest: #173f22;
  --leaf: #5dae31;
  --olive: #8fbf45;
  --earth: #8a6c43;
  --clay: #c77844;
  --paper: #fbfcf7;
  --mist: #eef4e7;
  --line: #dce7d2;
  --ink: #1d271d;
  --muted: #62705f;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 63, 34, 0.12);
  --deep-shadow: 0 28px 80px rgba(13, 38, 19, 0.2);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea {
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--forest);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar p {
  margin: 0;
  color: var(--leaf);
  font-weight: 700;
}

.topbar__items {
  display: flex;
  gap: 22px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 231, 210, 0.86);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 24px rgba(23, 63, 34, 0.08);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 178px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 800;
  color: var(--forest);
}

.menu a {
  padding: 28px 0;
}

.menu a:hover,
.menu a:focus {
  color: var(--leaf);
}

.nav-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
}

.nav-cta {
  padding: 0 24px;
  background: var(--leaf);
  color: var(--white);
  font-size: 13px;
  box-shadow: 0 10px 20px rgba(93, 174, 49, 0.2);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--forest);
}

.hero {
  min-height: 720px;
  position: relative;
  display: grid;
  align-items: center;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center 46%;
  overflow: hidden;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(8, 29, 13, 0.84), rgba(8, 29, 13, 0.48) 46%, rgba(8, 29, 13, 0.1)),
    linear-gradient(0deg, rgba(23, 63, 34, 0.14), rgba(23, 63, 34, 0.14));
}

.hero__content {
  position: relative;
  color: var(--white);
  padding: 108px 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 900;
}

.hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 780px;
  margin: 48px 0 0;
}

.hero-metrics div {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-metrics dt {
  margin: 0 0 3px;
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  padding: 0 24px;
  border: 1px solid transparent;
}

.button--light {
  color: var(--forest);
  background: var(--white);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.button--solid {
  color: var(--white);
  background: var(--leaf);
}

.button--outline {
  color: var(--forest);
  border-color: var(--line);
  background: var(--white);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  min-height: 520px;
}

.split-section__image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.split-section__copy {
  align-self: center;
  max-width: 650px;
  padding: 72px min(8vw, 98px);
}

h2 {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 900;
}

h3 {
  margin: 0;
  color: var(--forest);
}

p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--forest);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--leaf);
  font-weight: 900;
}

.about-band {
  background: linear-gradient(90deg, var(--paper) 0 50%, #f7f1ec 50% 100%);
}

.about-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-band article {
  padding: 72px 48px;
}

.about-band article:first-child {
  padding-left: 0;
}

.about-band article:last-child {
  padding-right: 0;
}

.about-band h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.section {
  padding: 96px 0;
}

.inner-hero {
  position: relative;
  padding: 112px 0 92px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(23, 63, 34, 0.94), rgba(23, 63, 34, 0.76)),
    url("../img/ai-bodrum-luxury-garden.webp") center / cover;
  color: var(--white);
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -160px auto;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.inner-hero h1 {
  max-width: 870px;
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
  color: var(--white);
}

.inner-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading--side {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.52fr);
  align-items: end;
  gap: 42px;
  text-align: left;
}

.section-heading--side p {
  margin: 0 0 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 218px;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -18px -30px auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 1px solid rgba(143, 191, 69, 0.22);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(93, 174, 49, 0.45);
  box-shadow: var(--deep-shadow);
}

.service-card__icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--leaf);
  border: 1px solid rgba(93, 174, 49, 0.4);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(93, 174, 49, 0.14), rgba(143, 191, 69, 0.05)),
    var(--white);
  box-shadow: inset 0 0 0 8px rgba(93, 174, 49, 0.05);
}

.service-card__icon::before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 9px 9px 14px 9px;
  border: 3px solid currentColor;
  transform: rotate(-8deg);
}

.service-card__icon::after {
  content: "";
  position: absolute;
}

.service-card__icon[data-icon="grass"]::before {
  width: 32px;
  height: 18px;
  border-width: 0 0 3px;
  border-radius: 0;
  box-shadow: 0 -8px 0 -5px currentColor, 0 -16px 0 -5px currentColor;
  transform: none;
}

.service-card__icon[data-icon="water"]::before {
  width: 26px;
  height: 34px;
  border-radius: 70% 70% 70% 12px;
  transform: rotate(45deg);
}

.service-card__icon[data-icon="care"]::before {
  width: 30px;
  height: 22px;
  border-radius: 50% 50% 12px 12px;
  border-top-width: 0;
  transform: none;
}

.service-card__icon[data-icon="plan"]::before {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  transform: none;
}

.service-card__icon[data-icon="garden"]::before {
  width: 28px;
  height: 34px;
  border-radius: 80% 12px 80% 12px;
  transform: rotate(35deg);
}

.service-card__icon[data-icon="leaf"]::before {
  width: 30px;
  height: 24px;
  border-radius: 80% 14px 80% 14px;
  transform: rotate(-28deg);
}

.service-card__icon[data-icon="stone"]::before {
  width: 34px;
  height: 22px;
  border-radius: 18px 8px 14px 10px;
  transform: rotate(-4deg);
}

.service-card__icon[data-icon="light"]::before {
  width: 22px;
  height: 32px;
  border-radius: 50% 50% 18px 18px;
  transform: none;
}

.service-card h2,
.service-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.22;
}

.service-card p {
  margin: 0;
  font-size: 14px;
}

.projects {
  background: var(--paper);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.filter-row button {
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: var(--forest);
  background: var(--mist);
  font-weight: 800;
  cursor: pointer;
}

.filter-row button.is-active {
  color: var(--white);
  background: var(--leaf);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.project-card div {
  padding: 22px;
}

.project-card span,
.blog-card time {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card p {
  margin: 10px 0 0;
}

.project-card h2,
.blog-card h2 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-item {
  position: relative;
  padding-left: 26px;
}

.why-item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 3px solid var(--olive);
  border-radius: 50%;
}

.why-item strong {
  display: block;
  color: var(--forest);
  font-size: 18px;
}

.why-item p {
  margin: 8px 0 0;
  font-size: 14px;
}

.blog {
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: none;
  margin-inline: auto;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card div {
  padding: 24px;
}

.blog-card a {
  margin-top: 14px;
}

.rich-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.rich-content img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--deep-shadow);
}

.rich-content p {
  font-size: 17px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card p {
  color: var(--forest);
  font-size: 20px;
  font-weight: 800;
}

.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.wa-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
  flex: 0 0 24px;
  border-radius: 50%;
  background: #2dbf64;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.wa-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-left-color: transparent;
  border-top-color: transparent;
  border-radius: 50%;
  transform: rotate(18deg);
}

.wa-icon::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 4px;
  border: 4px solid transparent;
  border-left-color: #2dbf64;
  transform: rotate(24deg);
}

.cta-section {
  padding: 76px 0;
  background: var(--forest);
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  color: var(--white);
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  padding: 58px 0;
  background: #09290f;
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 0.8fr 0.8fr;
  gap: 46px;
}

.footer p {
  max-width: 420px;
  color: #d5e4cf;
}

.footer h2 {
  color: var(--white);
  font-size: 18px;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: #d5e4cf;
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(23, 63, 34, 0.24);
}

.float-whatsapp .wa-icon {
  width: 30px;
  height: 30px;
}

.mobile-action-bar {
  display: none;
}

.phone-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
  flex: 0 0 24px;
  border-radius: 50%;
  background: var(--forest);
}

.phone-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 8px;
  height: 13px;
  border: 3px solid #fff;
  border-top-width: 2px;
  border-bottom-width: 2px;
  border-radius: 8px;
  transform: rotate(-30deg);
}

@media (max-width: 960px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .topbar {
    display: none;
  }

  .nav {
    min-height: 68px;
    gap: 12px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 14px;
  }

  .nav-cta {
    display: none;
  }

  .float-whatsapp {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -14px 34px rgba(23, 63, 34, 0.16);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--forest);
    font-size: 15px;
    font-weight: 900;
  }

  .mobile-action-bar a:last-child {
    background: #2dbf64;
  }

  .hero {
    min-height: 590px;
  }

  .hero__content {
    padding: 86px 0;
  }

  .split-section,
  .about-band__grid,
  .section-heading--side,
  .cta-box,
  .footer__grid,
  .rich-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-section__image img {
    min-height: 360px;
  }

  .split-section__copy,
  .about-band article,
  .about-band article:first-child,
  .about-band article:last-child {
    padding: 46px 18px;
  }

  .about-band {
    background: var(--paper);
  }

  .service-grid,
  .project-grid,
  .why-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 142px;
  }

  .hero {
    min-height: 650px;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(12, 31, 14, 0.78), rgba(12, 31, 14, 0.48));
  }

  .hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .section {
    padding: 68px 0;
  }

  .service-grid,
  .project-grid,
  .why-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    text-align: left;
  }

  .service-card__icon {
    width: 50px;
    height: 50px;
  }

  .filter-row button {
    flex: 1 1 calc(50% - 12px);
    padding-inline: 12px;
  }

  .cta-actions,
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

}

.admin-page {
  min-height: 100vh;
  background: var(--paper);
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-card,
.admin-section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-card {
  width: min(100%, 430px);
  display: grid;
  gap: 18px;
  padding: 34px;
}

.admin-card h1,
.admin-section h1,
.admin-section h2 {
  margin: 0;
  color: var(--forest);
  font-size: 26px;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px min(4vw, 42px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.admin-header > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-header p {
  margin: 0;
  font-weight: 800;
}

.admin-header nav {
  display: flex;
  gap: 12px;
}

.admin-header a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--forest);
  font-weight: 800;
}

.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 70px;
}

.admin-form {
  display: grid;
  gap: 22px;
}

.admin-section {
  display: grid;
  gap: 18px;
  padding: 28px;
  box-shadow: none;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.admin-page label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-weight: 800;
}

.admin-page input,
.admin-page textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 400;
}

.admin-page textarea {
  min-height: 110px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.admin-button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.admin-button--large {
  width: min(100%, 360px);
  margin-inline: auto;
}

.admin-help {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.admin-error,
.admin-notice {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.admin-error,
.admin-notice.is-error {
  background: #fff0ec;
  color: #913b24;
}

.admin-notice.is-ok {
  margin-bottom: 18px;
  background: var(--mist);
  color: var(--forest);
}

@media (max-width: 860px) {
  .admin-header,
  .admin-header > div,
  .admin-header nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-section,
  .admin-card {
    padding: 22px;
  }
}
