:root{
  --amora-gold: #27a449;                 /* BINHMYCARE main */
  --amora-brown: #197f3f;                /* BINHMYCARE second */
  --amora-bg: rgba(39,164,73,.08);       /* soft background */
}

.amora-card-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

.amora-card{
  margin: 28px 0;
}

.amora-card__inner{
  display:flex;
  gap: 20px;
  padding: 22px 26px;
  background: var(--amora-bg);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  transition: .2s ease;
}

.amora-card-link:hover .amora-card__inner{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0,0,0,.12);
  color: inherit;
}

.amora-card__left{
  flex: 0 0 120px;
  width: 120px;
  min-width: 120px;

  display:flex;
  align-items:center;
  justify-content:center;
}

.amora-card__logo,
.amora-card__left img,
.amora-author-box img{
  display:block;
  width: 110px;
  height: 110px;
  max-width: 110px;
  max-height: 110px;

  object-fit: cover;
  background:#fff;
  padding:10px;

  border-radius: 999px;
  border: 3px solid var(--amora-gold);  /* main green */
}

.amora-card__logo{
  object-fit: contain;
}

.amora-card__title{
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--amora-brown);            /* second green */
}

.amora-card__content{
  font-size: 15px;
  line-height: 1.65;
  color: #1f2933;
}

.amora-card__content p{
  margin: 0;
  pointer-events: none;
}

.amora-card__content a:hover{
  color: inherit;
}

@media (max-width: 640px){

  .amora-card__inner{
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px;
  }

  .amora-card__left{
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
  }

  .amora-card__logo,
  .amora-card__left img,
  .amora-author-box img{
    width: 86px;
    height: 86px;
    max-width: 86px;
    max-height: 86px;
    padding: 8px;
  }
}