@import url("https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300;400;500&family=Merriweather:wght@300;400&display=swap");
article.card * {
  box-sizing: border-box; }

a.cardlink[href] {
  position: relative; }
  a.cardlink[href], a.cardlink[href]:link, a.cardlink[href]:visited, a.cardlink[href]:active {
    text-decoration: none;
    padding-bottom: 3px;
    font-weight: bold; }
  a.cardlink[href]::after {
    content: "";
    position: absolute;
    left: 0;
    left: 0;
    bottom: 0;
    background: #f6b606;
    width: 0;
    height: 2px;
    transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1); }
  a.cardlink[href]:hover::after {
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); }

article.card .note {
  margin-top: 10px;
  color: #fff;
  font-size: 0.9rem;
  font-family: "Merriweather", sans-serif;
  line-height: 1.5;
  text-align: center; }

section.card-body {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap; }

article.card {
  display: inline-block;
  width: 250px;
  height: 350px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 15px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease; }
  article.card .thumb {
    position: relative;
    width: auto;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
    border-radius: 15px;
    overflow: hidden; }
    article.card .thumb img {
      min-width: 100%;
      max-width: 100% !important;
      max-height: 100%;
      background-size: cover; }
  article.card .infos {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 20px;
    background: #fff;
    height: calc($card-height - $thumb-height); }
    article.card .infos .title {
      margin: 0;
      letter-spacing: 1px;
      color: #152536;
      font-family: "Grotesque Black", sans-serif;
      font-size: 1rem;
      text-shadow: 0 0 0px #32577f; }
    article.card .infos .flag {
      margin-top: auto;
      position: absolute;
      right: 10px;
      bottom: 10px;
      background-size: 100% auto;
      color: #000;
      text-align: right;
      font-size: 16px; }
    article.card .infos .flag span {
      color: #999;
      font-size: 14px; }
  article.card .action-buttons {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease; }
    article.card .action-buttons button {
      background: #4e958b;
      border: none;
      color: #fff;
      border-radius: 5px;
      padding: 5px 8px;
      cursor: pointer;
      font-size: 0.8rem;
      transition: background 0.3s; }
      article.card .action-buttons button:hover {
        background: #3c746c; }
      article.card .action-buttons button i {
        margin-right: 4px; }
  article.card:hover .action-buttons {
    opacity: 1; }

a article.card {
  transition: all linear .3s; }

a article.card:hover {
  transform: scale(1.05); }

@media only screen and (max-width: 693px) {
  article.card {
    width: 100%;
    height: 350px;
    margin: 15px auto; }

  section.card-body {
    justify-content: center; } }

/*# sourceMappingURL=card.css.map */
