* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 16px;
  background: transparent;
}

.psychology-banner {
  display: block;
  width: min(100%, 740px);
  line-height: 0;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 45, 20, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.psychology-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 45, 20, 0.34);
}

.psychology-banner img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 640px) {
  body {
    padding: 10px;
  }

  .psychology-banner {
    width: min(100%, 360px);
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .psychology-banner {
    transition: none;
  }
}
