.template-components-coin-card a {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid #ccc;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  background-color: white;
  text-decoration: none;
  color: unset;
}
.template-components-coin-card a .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #ccc;
}
.template-components-coin-card a .header .description {
  flex: 3;
  text-align: left;
  margin-left: 25px;
}
@media (max-width: 767px) {
  .template-components-coin-card a .header .description {
    flex: 5;
  }
}
.template-components-coin-card a .header .description h2 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
  padding: 0;
  line-height: 1;
}
.template-components-coin-card a .header .description p {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
}
.template-components-coin-card a .body {
  padding: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}
.template-components-coin-card a .body p {
  display: flex;
  align-items: center;
}
.template-components-coin-card a .body p img {
  width: 13px;
  height: 13px;
  margin-right: 5px;
}
.template-components-coin-card a .body strong {
  font-weight: bold;
  color: #000;
  margin-left: 5px;
}
.template-components-coin-card a:hover {
  box-shadow: 1px 1px 5px rgba(111, 111, 111, 0.68);
  opacity: 0.9;
}
