:root {
  --cc-color-font: #831728;
  --cc-color-font-title: #831728;
  --cc-gradient: linear-gradient(
    70deg,
    var(--cc-color-primary) 0%,
    rgba(7, 7, 7, 1) 47%,
    #35bd6c 93%
  );
}

@import url("https://fonts.googleapis.com/css2?family=Russo+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");

.ec-noto-serif {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 12;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
/*e-CyberSoft*/
.ec-post-title {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 20;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  color: var(--cc-color-font-title);
  /* text-align: center; */
  padding: 15px 4px 2px 10px;
}
.ec-post-container {
  /* border: 1px solid var(--cc-color-primary); */
  background: white;
  width: 100%;
  height: 100%;
  /* box-shadow: 5px 5px 15px var(--box-shadow); */
}
.ec-post-img {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  height: auto;
  max-width: 300px;
  /* max-height: 200px; */
}
.ec-post-badges {
  display: flex;
  align-items: start;
  justify-content: start;
  margin: 0;
  padding: 0px 8px 0px 8px;
  /* height: 100px; */
}
.ec-post {
  display: flex;
  align-items: start;
  justify-content: center;
  width: 95%;
  height: 95%;
  margin: 2px;
  padding: 10px;
  margin: 1px;
}
.ec-color-font-title {
  color: var(--cc-color-font-title);
}
.ec-img-book {
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.3); /* sombra solo al lado derecho */
  transform: perspective(800px) rotateY(-3deg);
  border-radius: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ec-img-book:hover {
  transform: perspective(800px) rotateY(0deg);
  box-shadow: 20px 0 40px rgba(0, 0, 0, 0.4);
}
