.elegant-shadow{
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
  font-size: 42px;
  padding: 80px 50px;
  text-align: center;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  color: #131313;
  background-color: #e7e5e4;
  letter-spacing: .15em;
  text-shadow: 
    1px -1px 0 #767676, 
    -1px 2px 1px #737272, 
    -2px 4px 1px #767474, 
    -3px 6px 1px #787777, 
    -4px 8px 1px #7b7a7a, 
    -5px 10px 1px #7f7d7d, 
    -6px 12px 1px #828181, 
    -7px 14px 1px #868585, 
    -8px 16px 1px #8b8a89, 
    -9px 18px 1px #8f8e8d, 
    -10px 20px 1px #949392, 
    -11px 22px 1px #999897, 
    -12px 24px 1px #9e9c9c, 
    -13px 26px 1px #a3a1a1, 
    -14px 28px 1px #a8a6a6, 
    -15px 30px 1px #adabab, 
    -16px 32px 1px #b2b1b0, 
    -17px 34px 1px #b7b6b5, 
    -18px 36px 1px #bcbbba, 
    -19px 38px 1px #c1bfbf, 
    -20px 40px 1px #c6c4c4, 
    -21px 42px 1px #cbc9c8, 
    -22px 44px 1px #cfcdcd, 
    -23px 46px 1px #d4d2d1, 
    -24px 48px 1px #d8d6d5, 
    -25px 50px 1px #dbdad9, 
    -26px 52px 1px #dfdddc, 
    -27px 54px 1px #e2e0df, 
    -28px 56px 1px #e4e3e2;
}

@media screen and (max-width: 800px) { 
  .elegant-shadow {
    font-size: 34px;
    padding: 80px 40px;
    letter-spacing: .15em;
  }    
}

@media screen and (max-width: 600px) { 
  .elegant-shadow {
    font-size: 25px;
    padding: 80px 30px;
    letter-spacing: .15em;
  }    
}

@media screen and (max-width: 400px) { 
  .elegant-shadow {
    font-size: 16px;
    padding: 80px 40px;
    letter-spacing: .15em;
  }    

  @media screen and (max-width: 200px) { 
    .elegant-shadow {
      font-size: 8px;
      padding: 80px 10px;
      letter-spacing: .15em;
    }    
  }

}

.card_category { margin: 20px 10px;}
.card_category img {
  width: 100%;
}
.card_img_heart{ 
  display:flex; 
  justify-content: flex-end;
  cursor: pointer; 
  height: 20px;
  margin: 10px 0 0 10px;
}
.card_img_heart_icon { width: 20px; margin-right: 10px; }
.card_img_heart_icon.saved {
  background: url(../../assets/heart_saved.png) center center no-repeat;
  background-size: contain;
}
.card_img_heart_icon.unsaved {
  background: url(../../assets/heart_unsaved.png) center center no-repeat;
  background-size: contain;
}
.card_img_heart_count{ font-size: 14px; }

.card_category_text { padding: 10px; }
.card_category_text h2 { font-size: 34px; line-height: 34px; margin: 20px 0 10px;}
.card_category_text p { font-size: 18px; line-height: 24px; margin-bottom: 10px;}
.card_category_text button {
  width: 120px;
  height: 50px;
  background: none;
  border: none;
}
.card_category_line { 
  margin: 30px 0; 
}
.card_category_line span { 
  display: block;
  width: 70%; 
  height: 2px; 
  margin: 5px 15%; 
  background-color: var(--page_color)
}
.card_category_line span:last-child { width: 50%;  margin: 5px 25%;  }

@media screen and (min-width: 600px) { 
  .card_category_text h2 { margin: 0px;}   
  .card_category_line { margin: 50px 0; }
}

.card_img {position: relative;}
.card_img:before, 
.card_img:after, 
.card_img>:last-child:before, 
.card_img>:last-child:after {
    position: absolute;
    width: 60px; 
    height: 50px;
    border-color: var(--page_color); 
    border-style: solid;
    content: ' ';
}

.card_img:before {
    top: 10px;
    left: 10px;
    border-width: 2px 0 0 2px
}

.card_img:after {
    top: 10px;
    right: 10px;
    border-width: 2px 2px 0 0
}

.card_img>:last-child:before {
    bottom: 10px;
    right: 10px;     
    border-width: 0 2px 2px 0
}

.card_img>:last-child:after {
    bottom: 10px;
    left: 10px;
    border-width: 0 0 2px 2px
}

