/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/
.card-container {
    background-color: #efefef;
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px 0;
  }

  .card-scroll {
    display: inline-flex;
    gap: 16px;
    padding-left: 16px;
  }

  .location-card {
    background: white;
    border-radius: 8px;
    padding: 16px;
    min-width: 280px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    white-space: normal;
    line-height: 1.5;
  }

  .location-card strong {
    font-size: 16px;
    display: block;
    margin-bottom: 6px;
  }

  .location-card span {
    font-size: 14px;
    color: #444;
  }

  .location-card a {
    display: inline-block;
    margin-top: 8px;
    color: #1ABC9C;
    text-decoration: none;
  }

  .location-card a:hover {
    text-decoration: underline;
  }

  .location-card.active {
    background-color: #1ABC9C; /* 연두색 배경 */
    color: white;
  }

  .location-card.active a {
    color: white;
  }

  .location-card.active a:hover {
    text-decoration: underline;
  }

