/*
Theme Name: kadence-child
Template: kadence
*/

:root {
  --primary-color: #0066cc;
  --secondary-color: #00a86b;
  --accent-color: #ff6b35;
  --dark-bg: #1a1a2e;
  --light-bg: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #0066cc 0%, #00a86b 100%);
  --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --border-radius: 16px;
}

.entry-hero .entry-title {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 4px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
}

.entry-hero .entry-title::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.entry-hero .entry-title::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 3px;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
}

.entry-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #0066cc 50%, #00a86b 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.entry-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatAnimation 8s ease-in-out infinite;
}

.entry-hero::after {
  content: "🏟️";
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 5rem;
  opacity: 0.08;
  pointer-events: none;
}

.entry-hero-container-inner {
  background: unset;
}

.entry-hero-container-inner::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatAnimation 10s ease-in-out infinite reverse;
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, -30px) scale(1.05);
  }
}
.entry-header::before {
  content: "⚽";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.5rem;
  opacity: 0.9;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  animation: bounceIcon 2s ease-in-out infinite;
}

@keyframes bounceIcon {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@media (max-width: 1200px) {
  .entry-hero .entry-title {
    font-size: 2.8rem;
  }

  .entry-hero {
    padding: 70px 20px;
  }
}

@media (max-width: 1024px) {
  .entry-hero .entry-title {
    font-size: 2.4rem;
  }

  .entry-hero {
    padding: 60px 20px;
  }

  .entry-hero::after {
    font-size: 4rem;
    bottom: 20px;
    left: 20px;
  }
}

@media (max-width: 781px) {
  .info-block .wp-block-image figure,
  .info-block2 .wp-block-image figure,
  .info-block3 .wp-block-image figure,
  .info-block .wp-block-image figure img,
  .info-block2 .wp-block-image figure img,
  .info-block3 .wp-block-image figure img {
    margin: 0 auto !important;
  }

  .info-block2 {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .entry-hero .entry-title {
    font-size: 2rem;
    letter-spacing: -0.3px;
  }

  .entry-hero .entry-title::before {
    top: -20px;
    width: 50px;
    height: 3px;
  }

  .entry-hero .entry-title::after {
    bottom: -20px;
    width: 80px;
    height: 4px;
  }

  .entry-hero {
    padding: 50px 16px;
  }

  .entry-hero::after {
    font-size: 3rem;
    bottom: 15px;
    left: 15px;
    opacity: 0.05;
  }

  .entry-header::before {
    font-size: 2.5rem;
    top: -50px;
  }
}

@media (max-width: 480px) {
  .entry-hero .entry-title {
    font-size: 1.6rem;
  }

  .entry-hero {
    padding: 40px 12px;
  }

  .entry-hero .entry-title::before {
    top: -16px;
    width: 40px;
  }

  .entry-hero .entry-title::after {
    bottom: -16px;
    width: 70px;
  }

  .entry-header::before {
    font-size: 2rem;
    top: -40px;
  }
}

.entry-hero .entry-title.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.entry-hero .entry-title {
  animation: titleGlow 2s ease-in-out;
}

@keyframes titleGlow {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.entry-hero:hover .entry-title::after {
  width: 120px;
  box-shadow: 0 4px 20px rgba(0, 168, 107, 0.6);
  transition: all 0.4s ease;
}

.single-content ul {
  padding: 0;
}

.top-block {
  background: var(--gradient-primary);
  padding: 25px;
  border-radius: var(--border-radius);
  margin: 48px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.top-block::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.top-block::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.entry-content .top-block h2 {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.top-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.top-list li {
  background: rgba(255, 255, 255, 0.95);
  padding: 24px 28px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.top-list li::before {
  content: "🏟️";
  font-size: 2rem;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.15;
  transition: all 0.3s ease;
}

.top-list li:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.top-list li:hover::before {
  opacity: 0.3;
  transform: translateY(-50%) scale(1.2);
}

.top-list li strong {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  padding-left: 48px;
}

.top-list li br + text,
.top-list li strong + br + text {
  display: block;
  padding-left: 48px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-top: 4px;
}

.info-block h2,
.info-block h3,
.info-block p,
.info-block2 h2,
.info-block2 h3,
.info-block2 p,
.info-block3 h2,
.info-block3 h3,
.info-block3 p {
  position: relative;
  z-index: 10;
}

.info-block {
  margin: 80px 0;
  position: relative;
}

.info-block .wp-block-columns {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 102, 204, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-block .wp-block-columns:hover {
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
  transform: translateY(-4px);
}

.info-block .wp-block-column:first-child {
  padding: 20px;
  position: relative;
  z-index: 2;
}

.info-block .wp-block-column:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 100px;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.info-block .wp-block-column:last-child {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.info-block .wp-block-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-block:hover .wp-block-image {
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.info-block .wp-block-image figure {
  margin: 0;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.info-block .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.info-block:hover .wp-block-image img {
  transform: scale(1.08);
}

.info-block .wp-block-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.3) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.info-block:hover .wp-block-image::after {
  opacity: 1;
}

.info-block2 {
  margin: 80px 0;
  position: relative;
}

.info-block2 .wp-block-columns {
  position: relative;
}

.info-block2 .wp-block-column:first-child {
  position: relative;
  z-index: 2;
}

.info-block2 .wp-block-image {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.info-block2 .wp-block-image figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 20px 60px rgba(0, 0, 0, 0.15),
    0 40px 80px rgba(0, 102, 204, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.info-block2:hover .wp-block-image figure {
  transform: translateY(-12px) rotateY(-5deg);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 30px 80px rgba(0, 0, 0, 0.2),
    0 50px 100px rgba(0, 102, 204, 0.15);
}

.info-block2 .wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.info-block2:hover .wp-block-image img {
  transform: scale(1.05);
}

.info-block2 .wp-block-image::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0066cc 0%, #00a86b 100%);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.15;
  transition: all 0.5s ease;
}

.info-block2:hover .wp-block-image::before {
  transform: translate(-8px, -8px);
  opacity: 0.25;
}

.info-block2 .wp-block-image::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
}

.info-block2:hover .wp-block-image::after {
  opacity: 0.2;
  transform: scale(1.5);
}

.info-block2 .wp-block-column:last-child {
  padding: 32px 48px 32px 0;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(248, 249, 250, 0.5) 30%
  );
  border-radius: 20px;
}

.info-block3 {
  margin: 80px 0;
  position: relative;
}

.info-block3:nth-of-type(odd) .wp-block-column:first-child {
  order: 2;
}

.info-block3 .wp-block-column:first-child {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.info-block3 .wp-block-column:first-child:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.info-block3 .wp-block-column:first-child::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 5px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 0 3px 3px 0;
}

.info-block3:nth-of-type(odd) .wp-block-column:first-child::before {
  left: auto;
  right: 0;
  border-radius: 3px 0 0 3px;
}

.info-block3 .wp-block-column:last-child {
  position: relative;
}

.info-block3 .wp-block-image {
  position: relative;
  display: grid;
  place-items: center;
}

.info-block3 .wp-block-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  border: 3px solid transparent;
  border-top-color: var(--primary-color);
  border-right-color: var(--secondary-color);
  border-radius: 50%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.info-block3:hover .wp-block-image::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.info-block3 .wp-block-image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  background: radial-gradient(
    circle,
    rgba(0, 102, 204, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -2;
  transition: all 0.4s ease;
}

.info-block3:hover .wp-block-image::after {
  width: 95%;
  height: 95%;
  background: radial-gradient(
    circle,
    rgba(0, 168, 107, 0.2) 0%,
    transparent 70%
  );
}

.info-block3 .wp-block-image figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.8),
    0 0 0 10px rgba(0, 102, 204, 0.1), 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.info-block3:hover .wp-block-image figure {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.9),
    0 0 0 12px rgba(0, 168, 107, 0.15), 0 30px 70px rgba(0, 0, 0, 0.2);
}

.info-block3 .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.info-block3:hover .wp-block-image img {
  transform: scale(1.1);
}

.info-block3 .wp-block-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 102, 204, 0.4),
    rgba(0, 168, 107, 0.4)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  mix-blend-mode: multiply;
}

.info-block3:hover .wp-block-image figure::before {
  opacity: 1;
}

.info-block3 .wp-block-image figure::after {
  content: "🏟️";
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 3rem;
  opacity: 0;
  transform: scale(0) rotate(-45deg);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.info-block3:hover .wp-block-image figure::after {
  opacity: 0.9;
  transform: scale(1) rotate(0deg);
}

.info-block h3,
.info-block2 h3,
.info-block3 h3 {
  color: var(--dark-bg);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 20px;
  line-height: 1.3;
}

.info-block h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.info-block:hover h3::after {
  width: 100px;
}

.info-block2 h3::after,
.info-block3 h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: var(--gradient-accent);
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-block2:hover h3::after,
.info-block3:hover h3::after {
  width: 90px;
}

.info-block h3::before,
.info-block2 h3::before,
.info-block3 h3::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
  opacity: 0.5;
}

.info-block p,
.info-block2 p,
.info-block3 p {
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 16px;
}

.icon-list li {
  position: relative;
  padding-left: 48px;
  line-height: 1.8;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-list li:nth-child(1)::after {
  content: "⚽";
  position: absolute;
  left: 2px;
  top: 1px;
  font-size: 1.3rem;
}

.icon-list li:nth-child(2)::after {
  content: "📅";
  position: absolute;
  left: 2px;
  top: 1px;
  font-size: 1.3rem;
}

.icon-list li:nth-child(3)::after {
  content: "🏢";
  position: absolute;
  left: 2px;
  top: 1px;
  font-size: 1.3rem;
}

.icon-list li strong {
  color: var(--primary-color);
  font-weight: 700;
}

@media (max-width: 1200px) {
  .info-block .wp-block-columns,
  .info-block2 .wp-block-columns,
  .info-block3 .wp-block-columns {
    gap: 40px;
  }

  .info-block .wp-block-column:first-child {
    padding: 40px 36px;
  }

  .info-block2 .wp-block-column:last-child {
    padding: 24px 36px 24px 0;
  }

  .info-block3 .wp-block-column:first-child {
    padding: 36px;
  }
}

@media (max-width: 1024px) {
  .info-block .wp-block-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .info-block .wp-block-column:first-child {
    padding: 48px 40px;
  }

  .info-block .wp-block-column:first-child::before {
    display: none;
  }

  .info-block .wp-block-column:last-child {
    min-height: 350px;
  }

  .info-block .wp-block-image {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }

  .info-block2 .wp-block-columns {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .info-block2 .wp-block-column:last-child {
    padding: 0;
    background: none;
  }

  .info-block3 .wp-block-columns,
  .info-block3:nth-of-type(odd) .wp-block-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .info-block3:nth-of-type(odd) .wp-block-column:first-child {
    order: 0;
  }

  .info-block3 .wp-block-image figure {
    max-width: 100%;
    aspect-ratio: 16/10;
  }
}

@media (max-width: 768px) {
  .info-block,
  .info-block2,
  .info-block3 {
    margin: 60px 0;
  }

  .info-block .wp-block-column:first-child {
    padding: 36px 28px;
  }

  .info-block .wp-block-column:last-child {
    min-height: 280px;
  }

  .info-block2 .wp-block-columns {
    gap: 32px;
  }

  .info-block3 .wp-block-column:first-child {
    padding: 32px 24px;
  }

  .info-block h3,
  .info-block2 h3,
  .info-block3 h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .info-block p,
  .info-block2 p,
  .info-block3 p {
    font-size: 1rem;
  }
  .entry-content .top-block h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .info-block .wp-block-column:first-child {
    padding: 28px 20px;
  }

  .info-block3 .wp-block-column:first-child {
    padding: 28px 20px;
  }

  .info-block h3,
  .info-block2 h3,
  .info-block3 h3 {
    font-size: 1.4rem;
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.info-block.visible .wp-block-column:first-child {
  animation: slideInFromLeft 0.6s ease-out;
}

.info-block.visible .wp-block-column:last-child {
  animation: slideInFromRight 0.6s ease-out 0.2s backwards;
}

.info-block2.visible .wp-block-image {
  animation: scaleIn 0.6s ease-out 0.2s backwards;
}

.info-block3.visible .wp-block-column {
  animation: slideInFromLeft 0.6s ease-out;
}

.theme-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  gap: 16px;
}

.theme-list li {
  background: var(--light-bg);
  padding: 18px 24px 18px 56px;
  border-radius: 12px;
  position: relative;
  color: var(--text-dark);
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.theme-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.theme-list li:hover {
  background: var(--white);
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.entry-content h2 {
  color: var(--dark-bg);
  font-size: 2.4rem;
  font-weight: 800;
  margin: 64px 0 32px;
  position: relative;
  padding-bottom: 20px;
  text-align: center;
}

.entry-content h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.wp-block-quote {
  background: #fff8f0;
  border: 2px solid #ffe0b2;
  border-radius: var(--border-radius);
  padding: 32px 40px;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}

.wp-block-quote::before {
  content: "⚠️";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2.5rem;
  opacity: 0.2;
}

.wp-block-quote p {
  color: #8b5e3c;
  line-height: 1.8;
  margin: 0 0 16px 0;
  font-size: 0.95rem;
}

.wp-block-quote p:last-child {
  margin-bottom: 0;
}

.wp-block-quote em {
  font-style: italic;
}

.wp-block-separator {
  border: none;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    var(--secondary-color),
    transparent
  );
  margin: 64px auto;
  max-width: 200px;
  border-radius: 2px;
}

.entry-content > p {
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-size: 1.08rem;
}

.entry-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 40px 0;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.entry-content table thead {
  background: var(--gradient-primary);
}

.entry-content table thead th {
  color: var(--white);
  font-weight: 700;
  text-align: left;
  padding: 20px 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.entry-content table tbody tr {
  transition: background 0.2s ease;
}

.entry-content table tbody tr:nth-child(even) {
  background: var(--light-bg);
}

.entry-content table tbody tr:hover {
  background: #e3f2fd;
}

.entry-content table tbody td {
  padding: 18px 24px;
  color: var(--text-dark);
  border-top: 1px solid #e0e0e0;
}

.entry-content table tbody td:first-child {
  font-weight: 600;
  color: var(--primary-color);
}

@media (max-width: 1024px) {
  .info-block,
  .info-block2,
  .info-block3 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .info-block3:nth-of-type(odd) .wp-block-column:first-child {
    order: 0;
  }

  .top-block {
    padding: 36px 24px;
  }

  .top-block h2 {
    font-size: 1.8rem;
  }

  .entry-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .top-list li strong {
    font-size: 1.1rem;
    padding-left: 0;
  }

  .top-list li br + text {
    padding-left: 0;
  }

  .top-list li::before {
    position: relative;
    display: block;
    left: 0;
    transform: none;
    margin-bottom: 8px;
  }

  .icon-list li {
    padding-left: 42px;
    font-size: 0.98rem;
  }

  .theme-list li {
    padding: 16px 20px 16px 48px;
    font-size: 0.98rem;
  }

  .wp-block-quote {
    padding: 24px 20px;
  }

  .wp-block-quote p {
    font-size: 0.9rem;
  }
}

.info-block p,
.info-block2 p,
.info-block3 p {
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-block,
.info-block2,
.info-block3 {
  animation: fadeInUp 0.6s ease-out;
}
