현재 추가된 css 상태

/* YARPP 관련글 썸네일 전체 정렬 구조
.yarpp-thumbnails-horizontal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 가운데 정렬 *
  gap: 16px; /* 카드 간 간격 *
  padding-top: 12px;
  padding-bottom: 8px;
}

/* 각 썸네일 카드 박스 *
.yarpp-thumbnails-horizontal .yarpp-thumbnail {
  width: 150px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.04); /* 약간의 투명 배경 *
  border-radius: 6px;
  padding: 8px;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.yarpp-thumbnails-horizontal .yarpp-thumbnail:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

/* 썸네일 이미지 스타일 *
.yarpp-thumbnail img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 썸네일 이미지 호버 효과 *
.yarpp-thumbnail img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 썸네일 제목 텍스트 *
.yarpp-thumbnail-title {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.3;
  color: #eee;
  font-weight: 400;
}

/* 모바일 반응형 대응 */
@media screen and (max-width: 600px) {
  .yarpp-thumbnails-horizontal .yarpp-thumbnail {
    width: 46%;
    margin: 2%;
    padding: 6px;
  }

  .yarpp-thumbnail img {
    height: 90px;
  }

  .yarpp-thumbnail-title {
    font-size: 0.85rem;
  }
}

.cta-container {
  text-align: center;
  margin: 30px 0;
}

.cta-button {
  display: inline-block;
  background-color: #471676;
  color: white;
  padding: 14px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;

  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.cta-button:hover {
  background-color: #5f1b9c;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}  */

/* 글꼴 */
@font-face {
    font-family: 'Raleway';
    src: url('https://fonts.wp.com/s/raleway/v36/1Ptug8zYS_SKggPNyC0IT4ttDfA.woff2') format('woff2');
    font-display: swap;
}

/* 웹폰트 */
@font-face {
  font-family: 'Lato';
  src: url('https://fonts.wp.com/s/lato/v24/S6u_w4BMUTPHjxsI5wq_Gwftx9897g.woff2') format('woff2');
  font-display: swap;
}
 