/* ============================================
   小松公認会計士・税理士事務所 - スタイルシート
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
  line-height: 1.8;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* --- Utility --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--gray {
  background-color: #ECF0F1;
}

.section--navy {
  background-color: #2C3E50;
  color: #FFFFFF;
}

.section--orange {
  background-color: #E74C3C;
  color: #FFFFFF;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.4;
}

.section-subtitle {
  text-align: center;
  color: #7F8C8D;
  margin-bottom: 48px;
  font-size: 0.95rem;
}

.section--navy .section-subtitle,
.section--orange .section-subtitle {
  color: rgba(255,255,255,0.8);
}

.text-center {
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background-color: #E74C3C;
  color: #FFFFFF;
  border-color: #E74C3C;
}

.btn--primary:hover {
  background-color: #C0392B;
  border-color: #C0392B;
}

.btn--outline {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn--outline:hover {
  background-color: #FFFFFF;
  color: #2C3E50;
}

.btn--outline-navy {
  background-color: transparent;
  color: #2C3E50;
  border-color: #2C3E50;
}

.btn--outline-navy:hover {
  background-color: #2C3E50;
  color: #FFFFFF;
}

.btn--white {
  background-color: #FFFFFF;
  color: #E74C3C;
  border-color: #FFFFFF;
}

.btn--white:hover {
  background-color: #ECF0F1;
}

.btn--large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* --- Header --- */
.header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #D5DBDB;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header__logo a {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2C3E50;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.header__logo small {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  color: #7F8C8D;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.header__logo a::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: #E74C3C;
  margin-top: 4px;
  border-radius: 2px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #333333;
  transition: color 0.3s;
  white-space: nowrap;
}

.header__nav a:hover {
  color: #E74C3C;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 24px;
}

.header__contact-info {
  text-align: right;
  font-size: 0.75rem;
  color: #7F8C8D;
  line-height: 1.4;
}

.header__contact-info strong {
  display: block;
  font-size: 0.9rem;
  color: #2C3E50;
}

.header__hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #2C3E50;
  cursor: pointer;
}

/* --- Hero / First View --- */
.hero {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 80px 0;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero__content {
  flex: 1;
}

.hero__h1 {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.hero__catch {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero__sub {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.9);
}

.hero__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.7);
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  flex: 0 0 520px;
}

.placeholder-photo {
  background-color: #7F8C8D;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.9rem;
  border-radius: 12px;
}

.placeholder-photo--hero {
  width: 340px;
  height: 420px;
}

.placeholder-photo--profile {
  width: 100%;
  height: 400px;
}

.placeholder-photo--small {
  width: 100%;
  height: 280px;
}

/* --- Strengths --- */
.strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.strength-card {
  text-align: center;
  padding: 24px 16px;
}

.strength-card__icon {
  width: 64px;
  height: 64px;
  background-color: #2C3E50;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.strength-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2C3E50;
}

.strength-card__text {
  font-size: 0.88rem;
  color: #7F8C8D;
  line-height: 1.8;
}

/* --- Stats --- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item__number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2C3E50;
  line-height: 1.2;
}

.stat-item__number span {
  font-size: 1.2rem;
}

.stat-item__label {
  font-size: 0.85rem;
  color: #7F8C8D;
  margin-top: 8px;
}

.stat-item__desc {
  font-size: 0.75rem;
  color: #999;
  margin-top: 4px;
}

/* --- Service Cards --- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: #FFFFFF;
  border: 1px solid #D5DBDB;
  border-radius: 12px;
  padding: 32px 24px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background-color: #ECF0F1;
  color: #E74C3C;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2C3E50;
}

.service-card__text {
  font-size: 0.85rem;
  color: #7F8C8D;
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-card__link {
  font-size: 0.85rem;
  color: #E74C3C;
  font-weight: 700;
}

.service-card__link:hover {
  text-decoration: underline;
}

/* --- Message (2-column) --- */
.message-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.message-grid__text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #2C3E50;
}

.message-grid__text p {
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 16px;
  color: #555;
}

.message-grid__text .name {
  font-weight: 700;
  font-size: 1rem;
  color: #2C3E50;
  margin-top: 24px;
}

.message-grid__text .title-sub {
  font-size: 0.8rem;
  color: #7F8C8D;
}

/* --- YouTube Section --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.video-placeholder {
  background-color: #34495E;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* --- Testimonials --- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background-color: #FFFFFF;
  border: 1px solid #D5DBDB;
  border-radius: 12px;
  padding: 32px 24px;
}

.testimonial-card__quote {
  font-size: 0.88rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #E74C3C;
}

.testimonial-card__author {
  font-size: 0.8rem;
  color: #7F8C8D;
  font-weight: 500;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 64px 0;
}

.cta-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 0.92rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-section .cta-note {
  font-size: 0.8rem;
  margin-top: 24px;
  opacity: 0.7;
}

/* --- Footer --- */
.footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__info p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

.footer__nav h4,
.footer__hours h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.9);
}

.footer__nav ul li {
  margin-bottom: 8px;
}

.footer__nav ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

.footer__nav ul li a:hover {
  color: #E74C3C;
}

.footer__hours p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* --- Floating CTA (mobile) --- */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
  padding: 10px 16px;
}

.floating-cta__inner {
  display: flex;
  gap: 8px;
}

.floating-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.floating-cta__btn--orange {
  background-color: #E74C3C;
  color: #FFFFFF;
}

.floating-cta__btn--navy {
  background-color: #2C3E50;
  color: #FFFFFF;
}

/* --- Page Header (sub pages) --- */
.page-header {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 48px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
}

.page-header .breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

.page-header .breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.page-header .breadcrumb a:hover {
  color: #FFFFFF;
}

/* --- Profile Page --- */
.profile-basic {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
}

.profile-table th,
.profile-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid #D5DBDB;
}

.profile-table th {
  font-weight: 700;
  color: #2C3E50;
  width: 120px;
  white-space: nowrap;
}

/* --- Timeline --- */
.timeline {
  max-width: 700px;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 40px;
  border-left: 2px solid #D5DBDB;
}

.timeline-item:last-child {
  border-left: 2px solid transparent;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 4px;
  width: 14px;
  height: 14px;
  background-color: #E74C3C;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 0 2px #E74C3C;
}

.timeline-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 8px;
}

.timeline-item__text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.8;
}

/* --- Service Detail --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.service-detail--reverse {
  direction: rtl;
}

.service-detail--reverse > * {
  direction: ltr;
}

.service-detail h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 16px;
}

.service-detail p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 16px;
}

.service-detail h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 12px;
  margin-top: 24px;
}

.service-detail ul {
  list-style: disc;
  padding-left: 20px;
}

.service-detail ul li {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 4px;
}

/* --- Pricing Tables --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.pricing-table thead th {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: left;
}

.pricing-table tbody td {
  padding: 14px 16px;
  font-size: 0.88rem;
  border-bottom: 1px solid #D5DBDB;
  color: #555;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background-color: #ECF0F1;
}

.pricing-note {
  font-size: 0.8rem;
  color: #7F8C8D;
  margin-top: 8px;
  line-height: 1.7;
}

.pricing-section {
  margin-bottom: 56px;
}

.pricing-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E74C3C;
  display: inline-block;
}

/* --- Contact Form --- */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 8px;
}

.form-group label .required {
  background-color: #E74C3C;
  color: #FFFFFF;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: 400;
}

.form-group label .optional {
  background-color: #7F8C8D;
  color: #FFFFFF;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #BDC3C7;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.3s;
  background-color: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2C3E50;
  box-shadow: 0 0 0 3px rgba(27,42,74,0.1);
}

.form-group textarea {
  height: 160px;
  resize: vertical;
}

.form-privacy {
  font-size: 0.8rem;
  color: #7F8C8D;
  margin-bottom: 24px;
  line-height: 1.7;
}

.form-submit {
  text-align: center;
}

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 24px 16px;
}

.step-card__number {
  width: 48px;
  height: 48px;
  background-color: #E74C3C;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 8px;
}

.step-card__text {
  font-size: 0.82rem;
  color: #7F8C8D;
  line-height: 1.8;
}

/* --- Access --- */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.access-table {
  width: 100%;
  border-collapse: collapse;
}

.access-table th,
.access-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid #D5DBDB;
}

.access-table th {
  font-weight: 700;
  color: #2C3E50;
  width: 100px;
}

.map-placeholder {
  background-color: #D5DBDB;
  border-radius: 8px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7F8C8D;
  font-size: 0.85rem;
}

/* --- YouTube Page --- */
.youtube-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.youtube-category {
  margin-bottom: 48px;
}

.youtube-category h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 8px;
}

.youtube-category > p {
  font-size: 0.85rem;
  color: #7F8C8D;
  margin-bottom: 16px;
}

.youtube-category .video-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* --- Qualifications --- */
.qualifications {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.qualification-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #FFFFFF;
  border: 1px solid #D5DBDB;
  border-radius: 8px;
  padding: 16px 24px;
}

.qualification-badge i {
  font-size: 1.5rem;
  color: #27AE60;
}

.qualification-badge span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2C3E50;
}

/* --- Content Block --- */
.content-block {
  max-width: 760px;
  margin: 0 auto;
}

.content-block p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 16px;
}

.content-block .signature {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2C3E50;
  margin-top: 32px;
}

/* --- Mobile Nav Overlay --- */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 150;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 151;
  padding: 24px;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav__close {
  text-align: right;
  margin-bottom: 24px;
}

.mobile-nav__close button {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

.mobile-nav ul li {
  border-bottom: 1px solid #D5DBDB;
}

.mobile-nav ul li a {
  display: block;
  padding: 14px 0;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

.mobile-nav ul li a:hover {
  color: #E74C3C;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .header__contact {
    display: none;
  }

  .header__hamburger {
    display: block;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  /* Hero */
  .hero {
    padding: 48px 0;
  }

  .hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__catch {
    font-size: 2rem;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__image {
    flex: none;
    width: 100%;
    max-width: 280px;
  }

  .placeholder-photo--hero {
    width: 100%;
    height: 320px;
  }

  /* Strengths */
  .strengths {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Stats */
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Service Cards */
  .service-cards {
    grid-template-columns: 1fr;
  }

  /* Message */
  .message-grid {
    grid-template-columns: 1fr;
  }

  /* Video */
  .video-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Floating CTA */
  .floating-cta {
    display: block;
  }

  body {
    padding-bottom: 68px;
  }

  /* Profile */
  .profile-basic {
    grid-template-columns: 1fr;
  }

  .placeholder-photo--profile {
    max-width: 280px;
    margin: 0 auto;
  }

  /* Service Detail */
  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail--reverse {
    direction: ltr;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Access */
  .access-grid {
    grid-template-columns: 1fr;
  }

  /* YouTube */
  .youtube-intro {
    grid-template-columns: 1fr;
  }

  .youtube-category .video-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing Table */
  .pricing-table {
    font-size: 0.82rem;
  }

  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 10px 12px;
  }

  /* Btn */
  .btn--large {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}

/* --- Video Thumbnail Link --- */
.video-thumbnail-link {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.video-thumbnail-link:hover .video-play-btn {
  background-color: #E74C3C;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  padding-left: 4px;
}
