/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --primary1: #eb5a24;
  --primary2: #1ad71d;
  --bg1: #f4f3e5;
  --bg2: #fffdd0;
  --bg-dark1: #180702;
  --bg-dark2: #240e06;
  --text1: #1a1a15;
  --tex2: #450303;
  --gray: #333;
  --white: #fefefe;
}

/* =============================================
   BODY BASE
   ============================================= */
body {
  background-color: var(--bg1);
  color: var(--text1);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* =============================================
   NAVBAR
   ============================================= */
.nav {
  height: 50px;
}

.navbar {
  background-color: var(--bg-dark1);
  border-bottom: 2px solid var(--primary1);
}

.navbar container-fluid {
  margin: auto;
  padding: 10px;
}

.navbar .navbar-toggler {
  margin-left: auto;
}

.navbar .navbar-brand,
.navbar .nav-link {
  color: var(--white) !important;
  font-weight: 700;
}

.navbar .navbar-brand:hover,
.navbar .nav-link:hover {
  color: var(--primary1) !important;
}

.nav-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.nav-social a {
  color: var(--primary1);
  font-size: 1.5rem;
  transition: 0.3s;
}

.nav-social a:hover {
  color: var(--white);
  transform: scale(1.1);
}

.btn-outline-success {
  min-width: 80px;
}

/* =============================================
   SEARCH BAR
   ============================================= */
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.center-search-bar {
  margin: 0 auto;
}

.search-input {
  height: 42px;
  padding-left: 42px;
  padding-right: 15px;
  border-radius: 30px;
  border: 1px solid var(--primary1);
  font-size: 15px;
  transition: all 0.3s ease;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--text1);
  pointer-events: none;
}

.search-wrapper:focus-within .search-icon {
  color: var(--primary1) !important;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
  text-align: center;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary1);
}

.hero p {
  font-size: 1.2rem;
  color: var(--white);
}

.hero.home {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/pexels-vishnurnair-1105666.jpg") center/cover no-repeat;
}

.hero.podcast {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/pexels-thibault-trillet-44912-167628.jpg") center/cover
      no-repeat;
}

.hero.news {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/pexels-tomfisk-1692695.jpg") center/cover no-repeat;
}

.hero.contact {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/pexels-paggiarofrancesco-2111016.jpg") center/cover no-repeat;
}

/* =============================================
   CARDS & CAROUSEL
   ============================================= */
.carousel {
  position: relative;
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
}

.carousel-inner {
  padding-top: 1em;
  display: flex;
  overflow: hidden;
}

.carousel-item,
.carousel-item1 {
  display: block;
  margin-right: 0;
  flex: 0 0 33.3333333333%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  background-color: var(--gray);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.img-wrapper {
  max-width: 100%;
  max-height: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  pointer-events: none;
}

.img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card {
  /* background-color: var(--bg-dark1); */
  color: var(--white);
  margin: 1rem;
  font-size: 0.9em;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.3);
}

.card .card-title {
  color: var(--text1);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-decoration: none;
}

.card .card-body {
  padding: 1rem;
  background-color: var(--white);
  border-radius: 1.5rem;
}

.category-tag {
  background-color: var(--primary1);
  color: var(--white);
}

.overlay-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.overlay-link:hover {
  color: var(--bg2);
  text-decoration: none;
}

.listen-card-img {
  max-height: 350px;
  overflow: hidden;
  border-radius: 8px;
}

.listen-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* =============================================
   NEWS CONTENT
   ============================================= */
.news-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text1);
  word-wrap: break-word;
}

.news-content p {
  margin-bottom: 1.5rem;
  color: var(--text1);
}

.news-content h2,
.news-content h3,
.news-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.news-content a {
  color: #ff9f1a;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.news-content a:hover {
  color: #ffc66b;
}

.news-content img {
  /* max-width: 100%; */
  height: auto;
  max-height: 350px;
  margin: 1.5rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* =============================================
   SECTION TITLE & MISC
   ============================================= */
.section-title {
  color: var(--primary1);
  text-align: center;
  margin: 0 0 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* h3 a {
  color: var(--primary1);
}

h4 {
  color: var(--primary1);
  font-weight: 600;
} */

iframe,
.spotify-embed {
  max-width: 100%;
  height: 232px;
  background-color: transparent;
  box-shadow: 0 4px 8px rgba(211, 211, 223, 0.2);
}

audio {
  width: 100%;
  padding-top: 10px;
}

.featured-image {
  width: 100%;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
}

.category-link {
  color: var(--white);
  text-decoration: none;
}

.white-text {
  color: var(--white);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonialCarousel img {
  width: 80px;
  max-height: 90px;
  border-radius: 50%;
  margin-right: 0.5rem;
  overflow: hidden;
}

.bi-quote {
  color: var(--white);
}

/* =============================================
   CONTACT
   ============================================= */
.contact-form,
.subscription-container {
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 20px var(--primary1);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--bg-dark1);
  color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary1);
  box-shadow: none;
}

.btn-orange {
  background-color: var(--primary1);
  color: var(--white);
  border: none;
  margin-bottom: 10px;
  border-radius: 20px;
  box-shadow: 2px 2px var(--bg1);
}

.btn-orange:hover {
  background-color: var(--gray);
}

#contact .container {
  margin-top: 120px;
}

.contact-section {
  background-color: var(--bg2);
  padding: 1rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
}

.contact-section .section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-section p {
  margin-bottom: 0.5rem;
  color: var(--text1);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: center;
  align-items: center;
  margin-top: 2rem;
}

.social-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.social-img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* =============================================
   SHOWS & ARTISTS
   ============================================= */
.shows-section {
  padding: 20px;
  justify-content: center;
  margin: auto 0;
}

.show-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 15px;
  transition: transform 0.3s ease;
  text-align: center;
  color: var(--text1);
}

.show-card:hover {
  transform: translateY(-5px);
}

.show-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.artist-card {
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--primary1);
  padding: 15px;
  transition: transform 0.3s ease;
  text-align: center;
}

.artist-card:hover {
  transform: translateY(-5px);
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule {
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--primary1);
  padding: 15px;
  transition: transform 0.3s ease;
  text-align: center;
  min-height: 300px;
}

.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #77640e, #883802);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-left {
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.1);
}

.about-left h2,
.about-left h3 {
  color: var(--primary1);
}

.about-left h3 {
  margin-top: 25px;
}

.team-right {
  text-align: center;
  margin: 0 auto;
  padding-top: 30px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.1);
}

.team-right h2 {
  color: var(--primary1);
}

.team-member {
  text-align: center;
  padding: 15px;
  background: var(--primary1);
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.1);
}

.team-member img {
  border-radius: 50%;
  max-width: 140px;
  height: 140px;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #007bff;
}

.join-section {
  padding: 40px 25px;
  border-radius: 8px;
  margin-top: 30px;
  text-align: center;
  box-shadow: 0 0 20px var(--primary1);
}

.btn-join {
  background-color: var(--white);
  font-weight: 600;
  padding: 15px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.btn-join:hover {
  background: var(--primary1);
  color: var(--white);
}

/* =============================================
   CIRCLE NUMBER
   ============================================= */
.circle-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark1);
  color: var(--text1);
  background-color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 15px;
}

/* =============================================
   SPONSOR SLIDER
   ============================================= */
.sponsor-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.sponsor-slider {
  display: flex;
  gap: 10px;
  align-items: center;
  animation: scroll-left 30s linear infinite;
}

.sponsor-item {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.sponsor-slider img.sponsor-logo {
  height: 200px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.sponsor-slider img.sponsor-logo:hover {
  transform: scale(1.1);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =============================================
   RADIO PLAYER
   ============================================= */
.radio-player-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 90px;
  width: auto;
  z-index: 1050;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.radio-player-wrapper.active .tunein {
  width: 300px;
}

.tunein {
  width: 0;
  height: 90px;
  overflow: hidden;
  transition: width 0.3s ease;
  margin-right: 10px;
  border-radius: 10px;
  border: 2px solid var(--primary1);
}

.tunein iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.toggle-btn {
  background-color: var(--primary1);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 18px;
  cursor: pointer;
  z-index: 1060;
}

.toggle-btn:hover {
  background-color: var(--white);
  color: var(--primary1);
}

.listen-btn {
  background-color: var(--white);
  color: var(--primary1);
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.listen-btn:hover {
  background-color: var(--primary1);
  color: var(--white);
}

/* =============================================
   SCROLL TO TOP BUTTON
   ============================================= */
.scrollTopBtn {
  position: fixed;
  bottom: 30px;
  left: 10px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-dark1);
  cursor: pointer;
  z-index: 1000;
  transition: opacity 0.3s;
}

.scrollTopBtn:hover {
  background-color: orangered;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background-color: var(--bg-dark1);
  color: var(--white);
  text-align: center;
  border-top: 1px solid var(--primary1);
  padding: 20px 0;
}

footer p {
  color: var(--primary1);
}

/* =============================================
   SINGLE POST
   ============================================= */
.single-h1 {
  color: var(--text1);
}

.single-hero-img {
  max-height: 400px;
}

.single-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.singlecard-about-post {
  color: var(--text1);
  background-color: var(--bg2);
}

.recent-post {
  background-color: var(--bg2);
}

.recent-post-ul {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  color: var(--tex2);
  background-color: var(--bg2);
}

.recent-post-ul li a {
  /* text-decoration: none; */
  color: var(--tex2);
  background-color: var(--bg2);
}

.relatednews-tag {
  background-color: var(--primary1);
  color: var(--white);
}

.relatednews-tag:hover {
  background-color: var(--bg-dark2);
  color: var(--bg2);
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 992px) {
  .carousel {
    gap: 18px;
  }

  .card {
    margin: 0.9rem;
  }

  .news-content {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* Mobile menu */
@media (max-width: 991px) {
  .navbar-collapse .navbar-nav {
    text-align: center;
    width: 100%;
  }

  .navbar-collapse form {
    justify-content: center;
    width: 100%;
    margin-top: 15px;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .navbar-brand img {
    height: 40px;
  }

  .hero h1 {
    font-size: 2rem;
    font-weight: 500;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .radio-player-wrapper {
    bottom: 10px;
    right: 10px;
    height: 60px;
  }

  .radio-player-wrapper.active .tunein {
    width: 200px;
  }

  .tunein {
    height: 60px;
    border-width: 1.5px;
  }

  .toggle-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* Small mobile */
@media (max-width: 576px) {
  .carousel {
    gap: 15px;
    overflow-x: visible;
  }

  .carousel-inner {
    padding-top: 0.5em;
  }

  .carousel-item,
  .carousel-item1 {
    flex: 0 0 100%;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 1.5rem;
    height: 1.5rem;
  }

  .img-wrapper {
    max-height: 20vw;
    height: auto;
    margin-bottom: 10px;
  }

  .card {
    margin: 0.75rem;
    font-size: 0.9em;
  }

  .card .card-title {
    font-size: 1em;
    text-align: center;
  }

  .card-img-top {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
  }

  .social-img {
    width: 120px;
    height: 120px;
  }

  .show-card img {
    height: 180px;
  }

  .spotify-embed {
    max-width: 100%;
    height: 200px;
  }
}

/* ══════════════════════════════════════
   single.php
══════════════════════════════════════ */
/* ABOUT THIS POST */
.singlecard-about-post {
  background: var(--bg-dark1);
  border-radius: 6px;
  padding: 0 !important;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(24, 7, 2, 0.18);
}

.singlecard-about-post::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--tex2) 0%,
    #f0834a 60%,
    var(--tex2) 100%
  );
}

.singlecard-about-post .about-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.4rem 1.6rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.singlecard-about-post .about-header-icon {
  width: 28px;
  height: 28px;
  background: var(--primary1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.singlecard-about-post .about-header-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
}
.singlecard-about-post .about-header-title {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.singlecard-about-post .about-rows {
  padding: 0.5rem 0 1.2rem;
}
.singlecard-about-post .about-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.65rem 1.6rem;
  position: relative;
  transition: background 0.2s;
  gap: 1rem;
}
.singlecard-about-post .about-row:hover {
  background: rgba(235, 90, 36, 0.06);
}
.singlecard-about-post .about-row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.6rem;
  right: 1.6rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}
.singlecard-about-post .about-row:last-child::after {
  display: none;
}

.singlecard-about-post .about-key {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}
.singlecard-about-post .about-val {
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  text-align: right;
  line-height: 1.4;
}

/* tag */
.singlecard-about-post .about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}
.singlecard-about-post .about-tag {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(235, 90, 36, 0.5);
  border-radius: 2px;
  color: var(--primary1);
  text-decoration: none;
  transition:
    background 0.18s,
    color 0.18s;
}
.singlecard-about-post .about-tag:hover {
  background: var(--primary1);
  color: var(--white);
  border-color: var(--primary1);
}

/* Category badge */
.singlecard-about-post .about-cat-badge {
  display: inline-block;
  background: var(--primary1);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 2px;
}

/* Bottom accent */
.singlecard-about-post .about-footer {
  padding: 0.9rem 1.6rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.singlecard-about-post .about-footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}
.singlecard-about-post .about-footer-text {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   RECENT POSTS
══════════════════════════════════════ */
.recent-post {
  background: var(--bg-dark1);
  border-radius: 6px;
  padding: 0 !important;
  overflow: hidden;
  border: none !important;
  box-shadow: 0 8px 32px rgba(24, 7, 2, 0.18) !important;
}

/* top stipe*/
.recent-post::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--tex2) 0%,
    #f0834a 60%,
    var(--tex2) 100%
  );
}

/* recentpost header */
.recent-post .recent-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.6rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.recent-post .recent-header-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.recent-post .recent-header-bar {
  width: 3px;
  height: 18px;
  background: var(--primary1);
  border-radius: 2px;
}
.recent-post .recent-header-title {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}
.recent-post .recent-count {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--primary1);
  padding: 0.18rem 0.55rem;
  border-radius: 20px;
}

/* list set */
.recent-post-ul {
  counter-reset: recent-counter;
  list-style: none !important;
  padding: 0.4rem 0 0.6rem !important;
  margin: 0 !important;
}

/* li */
.recent-post-ul li {
  counter-increment: recent-counter;
  padding: 0 !important;
  border: none !important;
}

.recent-post-ul li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem 0.75rem 1rem;
  text-decoration: none;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    background 0.2s,
    padding-left 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.recent-post-ul li:last-child a {
  border-bottom: none;
}
.recent-post-ul li a:hover {
  background: rgba(235, 90, 36, 0.06);
  padding-left: 1.3rem;
}

/* number（::before） */
.recent-post-ul li a::before {
  content: counter(recent-counter, decimal-leading-zero);
  font-family: "Syne", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(235, 90, 36, 0.18);
  min-width: 2.6rem;
  flex-shrink: 0;
  transition: color 0.25s;
}
.recent-post-ul li a:hover::before {
  color: var(--primary1);
}

/* title */
.recent-post-ul li a .recent-title {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text1);
  line-height: 1.45;
  flex: 1;
  transition: color 0.2s;
}
.recent-post-ul li a:hover .recent-title {
  color: var(--white);
  font-weight: 500;
}

.recent-post-ul li a::after {
  content: "→";
  font-size: 0.8rem;
  color: var(--primary1);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.25s,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}
.recent-post-ul li a:hover::after {
  opacity: 1;
  transform: translateX(0);
}
