.ribbon {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
  width: 91%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0) 100%
  );
  background-color: rgba(176, 0, 32, 0.8);
  animation: ribbon-bounce 1.5s ease-in-out infinite;
}

.ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -3%;
  width: 15%;
  height: 100%;
  z-index: -1;
  transform: skewX(-20deg);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0) 100%
  );
  background-color: #bd0808;
  opacity: 1;
}

.ribbon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 89%;
  width: 15%;
  height: 100%;
  transform: skewX(20deg);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0) 100%
  );
  background-color: #bd0808;
  opacity: 1;
}

@media (max-width: 768px) {
  .ribbon {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .ribbon::before {
    left: -8%;
  }
}

@media (max-width: 768px) {
  .ribbon::after {
    left: 97%;
  }
}

@keyframes arrow-slide {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-4px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes ribbon-bounce {
  0% {
    top: 10px;
  }
  50% {
    top: 12px;
  }
  100% {
    top: 10px;
  }
}

.arrow {
  display: inline-block;
  animation: arrow-slide 1.5s ease-in-out infinite;
}

.read-more {
  color: white;
  font-weight: 700;
  display: inline-block;
  margin-top: min(10px, 2vw);
  text-decoration: none;
  position: absolute;
  right: 1.4vw;
  bottom: 42px;
  z-index: 100;
  transition: color 0.3s ease-in-out;
}

.read-more:hover {
  color: #abaaaa;
}

.ribbon p {
  font-size: 20px;
  color: white;
  margin: 0;
}

@media (max-width: 1000px) {
  .read-more {
    position: relative;
    right: 0;
    bottom: 0;
  }
}
