/**
 * Together Forever - Main Styles
 * 
 * This file contains the main theme styles organized by components.
 * Import this file after root.scss for proper cascade.
 * 
 * @package Together_Forever
 * @since 1.0.0
 */
/**
 * Together Forever - Root Styles
 * 
 * This file contains CSS custom properties (variables), 
 * base styles, and global configurations.
 * 
 * @package Together_Forever
 * @since 1.0.0
 */
/* ==========================================================================
   CSS Custom Properties (Variables)
   ========================================================================== */
:root {
  /* Brand Colors */
  --tf-purple: #5C2483;
  --tf-pink: #951B81;
  --tf-gray: #333;
  --tf-purple-gradient: linear-gradient(90deg, #5C2483 0%, #951B81 100%);
}

/* ==========================================================================
   Font Face Declarations
   ========================================================================== */
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-UltraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-UltraLightIt.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Demi.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-DemiItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-HeavyItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
/* ==========================================================================
   Typography Variables
   ========================================================================== */
:root {
  /* Font Families */
  --tf-avenir: "Avenir Next Cyr", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  /* Font Weights */
  --tf-fw-100: 100;
  --tf-fw-200: 200;
  --tf-fw-300: 300;
  --tf-fw-400: 400;
  --tf-fw-500: 500;
  --tf-fw-600: 600;
  --tf-fw-700: 700;
  --tf-fw-800: 800;
}

/* ==========================================================================
   Global Typography
   ========================================================================== */
/* Apply Avenir font to all text elements */
* {
  font-family: var(--tf-avenir);
}

/* Specific text elements */
body,
html,
p,
h1, h2, h3, h4, h5, h6,
a,
span,
div,
article,
section,
header,
footer,
main,
nav,
ul, ol, li,
button,
input,
textarea,
select,
label,
blockquote,
cite,
em,
strong,
small,
code,
pre,
mark,
del,
ins,
sub,
sup {
  font-family: var(--tf-avenir);
}

/* ==========================================================================
   Page Structure
   ========================================================================== */
/* Override Astra theme container constraints */
.ast-container {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
}

article {
  width: 100vw;
  margin: 0;
  padding: 0;
}

section {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/**
 * Together Forever - Blog/News/Events Styles
 * 
 * Shared styles for blog, news, and events pages
 * 
 * @package Together_Forever
 * @since 1.0.0
 */
/* ==========================================================================
   News Page & Events Page Shared Styles
   ========================================================================== */
.news-page,
.events-page,
.search-page {
  background: linear-gradient(180deg, #f7f0fb 0%, #fff 100%) !important;
  min-height: 100vh;
  background-attachment: fixed;
}
.news-page .ast-separate-container .ast-article-post,
.news-page .ast-separate-container .ast-article-single:not(.ast-related-post),
.news-page .ast-article-post,
.news-page .ast-article-single:not(.ast-related-post),
.news-page article.news-page-content,
.news-page article.events-page-content,
.events-page .ast-separate-container .ast-article-post,
.events-page .ast-separate-container .ast-article-single:not(.ast-related-post),
.events-page .ast-article-post,
.events-page .ast-article-single:not(.ast-related-post),
.events-page article.news-page-content,
.events-page article.events-page-content,
.search-page .ast-separate-container .ast-article-post,
.search-page .ast-separate-container .ast-article-single:not(.ast-related-post),
.search-page .ast-article-post,
.search-page .ast-article-single:not(.ast-related-post),
.search-page article.news-page-content,
.search-page article.events-page-content {
  background-color: transparent !important;
  background: transparent !important;
}
.news-page .events-banner-section,
.events-page .events-banner-section,
.search-page .events-banner-section {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.news-page .events-banner-section .banner-overlay,
.events-page .events-banner-section .banner-overlay,
.search-page .events-banner-section .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(92, 36, 131, 0.7) 0%, rgba(149, 27, 129, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-page .events-banner-section .banner-overlay .container,
.events-page .events-banner-section .banner-overlay .container,
.search-page .events-banner-section .banner-overlay .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.news-page .events-banner-section .banner-overlay .banner-content,
.events-page .events-banner-section .banner-overlay .banner-content,
.search-page .events-banner-section .banner-overlay .banner-content {
  text-align: center;
  padding: 60px 20px;
}
.news-page .events-banner-section .banner-overlay .banner-content .events-banner-heading,
.events-page .events-banner-section .banner-overlay .banner-content .events-banner-heading,
.search-page .events-banner-section .banner-overlay .banner-content .events-banner-heading {
  font-family: var(--tf-avenir);
  font-size: 48px;
  font-weight: 400;
  color: white;
  margin: 0 0 20px 0;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.news-page .events-banner-section .banner-overlay .banner-content .events-banner-heading strong,
.events-page .events-banner-section .banner-overlay .banner-content .events-banner-heading strong,
.search-page .events-banner-section .banner-overlay .banner-content .events-banner-heading strong {
  font-weight: 700;
}
.news-page .events-banner-section .banner-overlay .banner-content .events-banner-subheading,
.events-page .events-banner-section .banner-overlay .banner-content .events-banner-subheading,
.search-page .events-banner-section .banner-overlay .banner-content .events-banner-subheading {
  font-family: var(--tf-avenir);
  font-size: 18px;
  font-weight: 400;
  color: white;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.news-page .news-header-section,
.news-page .events-header-section,
.events-page .news-header-section,
.events-page .events-header-section,
.search-page .news-header-section,
.search-page .events-header-section {
  padding: 120px 0 90px;
  text-align: center;
}
.news-page .news-header-section .news-heading,
.news-page .news-header-section .events-heading,
.news-page .events-header-section .news-heading,
.news-page .events-header-section .events-heading,
.events-page .news-header-section .news-heading,
.events-page .news-header-section .events-heading,
.events-page .events-header-section .news-heading,
.events-page .events-header-section .events-heading,
.search-page .news-header-section .news-heading,
.search-page .news-header-section .events-heading,
.search-page .events-header-section .news-heading,
.search-page .events-header-section .events-heading {
  font-family: var(--tf-avenir);
  font-size: 52px;
  font-weight: 400;
  color: var(--tf-gray);
  margin: 0 auto 24px;
  line-height: 1.3;
  max-width: 900px;
  letter-spacing: -0.5px;
}
.news-page .news-header-section .news-heading strong,
.news-page .news-header-section .events-heading strong,
.news-page .events-header-section .news-heading strong,
.news-page .events-header-section .events-heading strong,
.events-page .news-header-section .news-heading strong,
.events-page .news-header-section .events-heading strong,
.events-page .events-header-section .news-heading strong,
.events-page .events-header-section .events-heading strong,
.search-page .news-header-section .news-heading strong,
.search-page .news-header-section .events-heading strong,
.search-page .events-header-section .news-heading strong,
.search-page .events-header-section .events-heading strong {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--tf-purple);
  text-underline-offset: 10px;
  text-decoration-thickness: 3px;
}
.news-page .news-header-section .news-subheading,
.news-page .news-header-section .events-subheading,
.news-page .events-header-section .news-subheading,
.news-page .events-header-section .events-subheading,
.events-page .news-header-section .news-subheading,
.events-page .news-header-section .events-subheading,
.events-page .events-header-section .news-subheading,
.events-page .events-header-section .events-subheading,
.search-page .news-header-section .news-subheading,
.search-page .news-header-section .events-subheading,
.search-page .events-header-section .news-subheading,
.search-page .events-header-section .events-subheading {
  font-family: var(--tf-avenir);
  font-size: 19px;
  font-weight: 400;
  color: var(--tf-gray);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 50px;
  opacity: 0.9;
}
.news-page .news-header-section .search-back-button,
.news-page .events-header-section .search-back-button,
.events-page .news-header-section .search-back-button,
.events-page .events-header-section .search-back-button,
.search-page .news-header-section .search-back-button,
.search-page .events-header-section .search-back-button {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-page .news-header-section .search-back-button .back-btn,
.news-page .events-header-section .search-back-button .back-btn,
.events-page .news-header-section .search-back-button .back-btn,
.events-page .events-header-section .search-back-button .back-btn,
.search-page .news-header-section .search-back-button .back-btn,
.search-page .events-header-section .search-back-button .back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--tf-purple) 0%, var(--tf-pink) 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: var(--tf-avenir);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(92, 36, 131, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.news-page .news-header-section .search-back-button .back-btn::before,
.news-page .events-header-section .search-back-button .back-btn::before,
.events-page .news-header-section .search-back-button .back-btn::before,
.events-page .events-header-section .search-back-button .back-btn::before,
.search-page .news-header-section .search-back-button .back-btn::before,
.search-page .events-header-section .search-back-button .back-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.news-page .news-header-section .search-back-button .back-btn i,
.news-page .events-header-section .search-back-button .back-btn i,
.events-page .news-header-section .search-back-button .back-btn i,
.events-page .events-header-section .search-back-button .back-btn i,
.search-page .news-header-section .search-back-button .back-btn i,
.search-page .events-header-section .search-back-button .back-btn i {
  font-size: 12px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.news-page .news-header-section .search-back-button .back-btn span,
.news-page .events-header-section .search-back-button .back-btn span,
.events-page .news-header-section .search-back-button .back-btn span,
.events-page .events-header-section .search-back-button .back-btn span,
.search-page .news-header-section .search-back-button .back-btn span,
.search-page .events-header-section .search-back-button .back-btn span {
  position: relative;
  z-index: 1;
}
.news-page .news-header-section .search-back-button .back-btn:hover,
.news-page .events-header-section .search-back-button .back-btn:hover,
.events-page .news-header-section .search-back-button .back-btn:hover,
.events-page .events-header-section .search-back-button .back-btn:hover,
.search-page .news-header-section .search-back-button .back-btn:hover,
.search-page .events-header-section .search-back-button .back-btn:hover {
  background: linear-gradient(135deg, var(--tf-pink) 0%, var(--tf-purple) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(92, 36, 131, 0.4);
}
.news-page .news-header-section .search-back-button .back-btn:hover::before,
.news-page .events-header-section .search-back-button .back-btn:hover::before,
.events-page .news-header-section .search-back-button .back-btn:hover::before,
.events-page .events-header-section .search-back-button .back-btn:hover::before,
.search-page .news-header-section .search-back-button .back-btn:hover::before,
.search-page .events-header-section .search-back-button .back-btn:hover::before {
  left: 100%;
}
.news-page .news-header-section .search-back-button .back-btn:hover i,
.news-page .events-header-section .search-back-button .back-btn:hover i,
.events-page .news-header-section .search-back-button .back-btn:hover i,
.events-page .events-header-section .search-back-button .back-btn:hover i,
.search-page .news-header-section .search-back-button .back-btn:hover i,
.search-page .events-header-section .search-back-button .back-btn:hover i {
  transform: translateX(-3px);
}
.news-page .news-header-section .search-back-button .back-btn:active,
.news-page .events-header-section .search-back-button .back-btn:active,
.events-page .news-header-section .search-back-button .back-btn:active,
.events-page .events-header-section .search-back-button .back-btn:active,
.search-page .news-header-section .search-back-button .back-btn:active,
.search-page .events-header-section .search-back-button .back-btn:active {
  transform: translateY(0);
}
.news-page .news-header-section .news-search,
.news-page .news-header-section .events-search,
.news-page .events-header-section .news-search,
.news-page .events-header-section .events-search,
.events-page .news-header-section .news-search,
.events-page .news-header-section .events-search,
.events-page .events-header-section .news-search,
.events-page .events-header-section .events-search,
.search-page .news-header-section .news-search,
.search-page .news-header-section .events-search,
.search-page .events-header-section .news-search,
.search-page .events-header-section .events-search {
  margin-top: 45px;
}
.news-page .news-header-section .news-search .search-form,
.news-page .news-header-section .events-search .search-form,
.news-page .events-header-section .news-search .search-form,
.news-page .events-header-section .events-search .search-form,
.events-page .news-header-section .news-search .search-form,
.events-page .news-header-section .events-search .search-form,
.events-page .events-header-section .news-search .search-form,
.events-page .events-header-section .events-search .search-form,
.search-page .news-header-section .news-search .search-form,
.search-page .news-header-section .events-search .search-form,
.search-page .events-header-section .news-search .search-form,
.search-page .events-header-section .events-search .search-form {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}
.news-page .news-header-section .news-search .search-form .search-input-wrapper,
.news-page .news-header-section .events-search .search-form .search-input-wrapper,
.news-page .events-header-section .news-search .search-form .search-input-wrapper,
.news-page .events-header-section .events-search .search-form .search-input-wrapper,
.events-page .news-header-section .news-search .search-form .search-input-wrapper,
.events-page .news-header-section .events-search .search-form .search-input-wrapper,
.events-page .events-header-section .news-search .search-form .search-input-wrapper,
.events-page .events-header-section .events-search .search-form .search-input-wrapper,
.search-page .news-header-section .news-search .search-form .search-input-wrapper,
.search-page .news-header-section .events-search .search-form .search-input-wrapper,
.search-page .events-header-section .news-search .search-form .search-input-wrapper,
.search-page .events-header-section .events-search .search-form .search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid rgba(92, 36, 131, 0.15);
  border-radius: 50px;
  padding: 5px 6px 5px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(92, 36, 131, 0.08);
  backdrop-filter: blur(10px);
}
.news-page .news-header-section .news-search .search-form .search-input-wrapper:focus-within,
.news-page .news-header-section .events-search .search-form .search-input-wrapper:focus-within,
.news-page .events-header-section .news-search .search-form .search-input-wrapper:focus-within,
.news-page .events-header-section .events-search .search-form .search-input-wrapper:focus-within,
.events-page .news-header-section .news-search .search-form .search-input-wrapper:focus-within,
.events-page .news-header-section .events-search .search-form .search-input-wrapper:focus-within,
.events-page .events-header-section .news-search .search-form .search-input-wrapper:focus-within,
.events-page .events-header-section .events-search .search-form .search-input-wrapper:focus-within,
.search-page .news-header-section .news-search .search-form .search-input-wrapper:focus-within,
.search-page .news-header-section .events-search .search-form .search-input-wrapper:focus-within,
.search-page .events-header-section .news-search .search-form .search-input-wrapper:focus-within,
.search-page .events-header-section .events-search .search-form .search-input-wrapper:focus-within {
  border-color: var(--tf-purple);
  box-shadow: 0 8px 30px rgba(92, 36, 131, 0.2);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.98);
}
.news-page .news-header-section .news-search .search-form .search-input-wrapper:hover,
.news-page .news-header-section .events-search .search-form .search-input-wrapper:hover,
.news-page .events-header-section .news-search .search-form .search-input-wrapper:hover,
.news-page .events-header-section .events-search .search-form .search-input-wrapper:hover,
.events-page .news-header-section .news-search .search-form .search-input-wrapper:hover,
.events-page .news-header-section .events-search .search-form .search-input-wrapper:hover,
.events-page .events-header-section .news-search .search-form .search-input-wrapper:hover,
.events-page .events-header-section .events-search .search-form .search-input-wrapper:hover,
.search-page .news-header-section .news-search .search-form .search-input-wrapper:hover,
.search-page .news-header-section .events-search .search-form .search-input-wrapper:hover,
.search-page .events-header-section .news-search .search-form .search-input-wrapper:hover,
.search-page .events-header-section .events-search .search-form .search-input-wrapper:hover {
  border-color: rgba(92, 36, 131, 0.3);
  box-shadow: 0 6px 25px rgba(92, 36, 131, 0.12);
}
.news-page .news-header-section .news-search .search-form .search-field,
.news-page .news-header-section .events-search .search-form .search-field,
.news-page .events-header-section .news-search .search-form .search-field,
.news-page .events-header-section .events-search .search-form .search-field,
.events-page .news-header-section .news-search .search-form .search-field,
.events-page .news-header-section .events-search .search-form .search-field,
.events-page .events-header-section .news-search .search-form .search-field,
.events-page .events-header-section .events-search .search-form .search-field,
.search-page .news-header-section .news-search .search-form .search-field,
.search-page .news-header-section .events-search .search-form .search-field,
.search-page .events-header-section .news-search .search-form .search-field,
.search-page .events-header-section .events-search .search-form .search-field {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px 10px 0;
  font-size: 15px;
  font-family: var(--tf-avenir);
  font-weight: 400;
  background: transparent;
  color: var(--tf-gray);
  letter-spacing: 0.2px;
  box-shadow: none !important;
  line-height: 1.4;
}
.news-page .news-header-section .news-search .search-form .search-field::placeholder,
.news-page .news-header-section .events-search .search-form .search-field::placeholder,
.news-page .events-header-section .news-search .search-form .search-field::placeholder,
.news-page .events-header-section .events-search .search-form .search-field::placeholder,
.events-page .news-header-section .news-search .search-form .search-field::placeholder,
.events-page .news-header-section .events-search .search-form .search-field::placeholder,
.events-page .events-header-section .news-search .search-form .search-field::placeholder,
.events-page .events-header-section .events-search .search-form .search-field::placeholder,
.search-page .news-header-section .news-search .search-form .search-field::placeholder,
.search-page .news-header-section .events-search .search-form .search-field::placeholder,
.search-page .events-header-section .news-search .search-form .search-field::placeholder,
.search-page .events-header-section .events-search .search-form .search-field::placeholder {
  color: #999;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.news-page .news-header-section .news-search .search-form .search-field:focus::placeholder,
.news-page .news-header-section .events-search .search-form .search-field:focus::placeholder,
.news-page .events-header-section .news-search .search-form .search-field:focus::placeholder,
.news-page .events-header-section .events-search .search-form .search-field:focus::placeholder,
.events-page .news-header-section .news-search .search-form .search-field:focus::placeholder,
.events-page .news-header-section .events-search .search-form .search-field:focus::placeholder,
.events-page .events-header-section .news-search .search-form .search-field:focus::placeholder,
.events-page .events-header-section .events-search .search-form .search-field:focus::placeholder,
.search-page .news-header-section .news-search .search-form .search-field:focus::placeholder,
.search-page .news-header-section .events-search .search-form .search-field:focus::placeholder,
.search-page .events-header-section .news-search .search-form .search-field:focus::placeholder,
.search-page .events-header-section .events-search .search-form .search-field:focus::placeholder {
  opacity: 0.5;
}
.news-page .news-header-section .news-search .search-form .search-submit,
.news-page .news-header-section .events-search .search-form .search-submit,
.news-page .events-header-section .news-search .search-form .search-submit,
.news-page .events-header-section .events-search .search-form .search-submit,
.events-page .news-header-section .news-search .search-form .search-submit,
.events-page .news-header-section .events-search .search-form .search-submit,
.events-page .events-header-section .news-search .search-form .search-submit,
.events-page .events-header-section .events-search .search-form .search-submit,
.search-page .news-header-section .news-search .search-form .search-submit,
.search-page .news-header-section .events-search .search-form .search-submit,
.search-page .events-header-section .news-search .search-form .search-submit,
.search-page .events-header-section .events-search .search-form .search-submit {
  background: linear-gradient(135deg, var(--tf-purple) 0%, var(--tf-pink) 100%);
  border: none;
  border-radius: 50px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
  margin-left: 6px;
  box-shadow: 0 4px 15px rgba(92, 36, 131, 0.25);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.news-page .news-header-section .news-search .search-form .search-submit::before,
.news-page .news-header-section .events-search .search-form .search-submit::before,
.news-page .events-header-section .news-search .search-form .search-submit::before,
.news-page .events-header-section .events-search .search-form .search-submit::before,
.events-page .news-header-section .news-search .search-form .search-submit::before,
.events-page .news-header-section .events-search .search-form .search-submit::before,
.events-page .events-header-section .news-search .search-form .search-submit::before,
.events-page .events-header-section .events-search .search-form .search-submit::before,
.search-page .news-header-section .news-search .search-form .search-submit::before,
.search-page .news-header-section .events-search .search-form .search-submit::before,
.search-page .events-header-section .news-search .search-form .search-submit::before,
.search-page .events-header-section .events-search .search-form .search-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.news-page .news-header-section .news-search .search-form .search-submit:hover,
.news-page .news-header-section .events-search .search-form .search-submit:hover,
.news-page .events-header-section .news-search .search-form .search-submit:hover,
.news-page .events-header-section .events-search .search-form .search-submit:hover,
.events-page .news-header-section .news-search .search-form .search-submit:hover,
.events-page .news-header-section .events-search .search-form .search-submit:hover,
.events-page .events-header-section .news-search .search-form .search-submit:hover,
.events-page .events-header-section .events-search .search-form .search-submit:hover,
.search-page .news-header-section .news-search .search-form .search-submit:hover,
.search-page .news-header-section .events-search .search-form .search-submit:hover,
.search-page .events-header-section .news-search .search-form .search-submit:hover,
.search-page .events-header-section .events-search .search-form .search-submit:hover {
  background: linear-gradient(135deg, var(--tf-pink) 0%, var(--tf-purple) 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(92, 36, 131, 0.4);
}
.news-page .news-header-section .news-search .search-form .search-submit:hover::before,
.news-page .news-header-section .events-search .search-form .search-submit:hover::before,
.news-page .events-header-section .news-search .search-form .search-submit:hover::before,
.news-page .events-header-section .events-search .search-form .search-submit:hover::before,
.events-page .news-header-section .news-search .search-form .search-submit:hover::before,
.events-page .news-header-section .events-search .search-form .search-submit:hover::before,
.events-page .events-header-section .news-search .search-form .search-submit:hover::before,
.events-page .events-header-section .events-search .search-form .search-submit:hover::before,
.search-page .news-header-section .news-search .search-form .search-submit:hover::before,
.search-page .news-header-section .events-search .search-form .search-submit:hover::before,
.search-page .events-header-section .news-search .search-form .search-submit:hover::before,
.search-page .events-header-section .events-search .search-form .search-submit:hover::before {
  left: 100%;
}
.news-page .news-header-section .news-search .search-form .search-submit:hover i,
.news-page .news-header-section .events-search .search-form .search-submit:hover i,
.news-page .events-header-section .news-search .search-form .search-submit:hover i,
.news-page .events-header-section .events-search .search-form .search-submit:hover i,
.events-page .news-header-section .news-search .search-form .search-submit:hover i,
.events-page .news-header-section .events-search .search-form .search-submit:hover i,
.events-page .events-header-section .news-search .search-form .search-submit:hover i,
.events-page .events-header-section .events-search .search-form .search-submit:hover i,
.search-page .news-header-section .news-search .search-form .search-submit:hover i,
.search-page .news-header-section .events-search .search-form .search-submit:hover i,
.search-page .events-header-section .news-search .search-form .search-submit:hover i,
.search-page .events-header-section .events-search .search-form .search-submit:hover i {
  transform: scale(1.1);
}
.news-page .news-header-section .news-search .search-form .search-submit:active,
.news-page .news-header-section .events-search .search-form .search-submit:active,
.news-page .events-header-section .news-search .search-form .search-submit:active,
.news-page .events-header-section .events-search .search-form .search-submit:active,
.events-page .news-header-section .news-search .search-form .search-submit:active,
.events-page .news-header-section .events-search .search-form .search-submit:active,
.events-page .events-header-section .news-search .search-form .search-submit:active,
.events-page .events-header-section .events-search .search-form .search-submit:active,
.search-page .news-header-section .news-search .search-form .search-submit:active,
.search-page .news-header-section .events-search .search-form .search-submit:active,
.search-page .events-header-section .news-search .search-form .search-submit:active,
.search-page .events-header-section .events-search .search-form .search-submit:active {
  transform: scale(1.05) rotate(2deg);
}
.news-page .news-header-section .news-search .search-form .search-submit i,
.news-page .news-header-section .events-search .search-form .search-submit i,
.news-page .events-header-section .news-search .search-form .search-submit i,
.news-page .events-header-section .events-search .search-form .search-submit i,
.events-page .news-header-section .news-search .search-form .search-submit i,
.events-page .news-header-section .events-search .search-form .search-submit i,
.events-page .events-header-section .news-search .search-form .search-submit i,
.events-page .events-header-section .events-search .search-form .search-submit i,
.search-page .news-header-section .news-search .search-form .search-submit i,
.search-page .news-header-section .events-search .search-form .search-submit i,
.search-page .events-header-section .news-search .search-form .search-submit i,
.search-page .events-header-section .events-search .search-form .search-submit i {
  font-size: 16px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.news-page .news-header-section .news-search .search-form .search-submit svg,
.news-page .news-header-section .events-search .search-form .search-submit svg,
.news-page .events-header-section .news-search .search-form .search-submit svg,
.news-page .events-header-section .events-search .search-form .search-submit svg,
.events-page .news-header-section .news-search .search-form .search-submit svg,
.events-page .news-header-section .events-search .search-form .search-submit svg,
.events-page .events-header-section .news-search .search-form .search-submit svg,
.events-page .events-header-section .events-search .search-form .search-submit svg,
.search-page .news-header-section .news-search .search-form .search-submit svg,
.search-page .news-header-section .events-search .search-form .search-submit svg,
.search-page .events-header-section .news-search .search-form .search-submit svg,
.search-page .events-header-section .events-search .search-form .search-submit svg {
  display: none;
}
.news-page .news-posts-section,
.news-page .events-posts-section,
.events-page .news-posts-section,
.events-page .events-posts-section,
.search-page .news-posts-section,
.search-page .events-posts-section {
  padding: 0 0 120px;
  background: transparent;
}
.news-page .news-posts-section .news-posts-grid,
.news-page .news-posts-section .events-posts-grid,
.news-page .events-posts-section .news-posts-grid,
.news-page .events-posts-section .events-posts-grid,
.events-page .news-posts-section .news-posts-grid,
.events-page .news-posts-section .events-posts-grid,
.events-page .events-posts-section .news-posts-grid,
.events-page .events-posts-section .events-posts-grid,
.search-page .news-posts-section .news-posts-grid,
.search-page .news-posts-section .events-posts-grid,
.search-page .events-posts-section .news-posts-grid,
.search-page .events-posts-section .events-posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 80px;
}
.news-page .news-posts-section.events-posts-section .events-posts-grid,
.news-page .events-posts-section.events-posts-section .events-posts-grid,
.events-page .news-posts-section.events-posts-section .events-posts-grid,
.events-page .events-posts-section.events-posts-section .events-posts-grid,
.search-page .news-posts-section.events-posts-section .events-posts-grid,
.search-page .events-posts-section.events-posts-section .events-posts-grid {
  padding: 30px;
}
.news-page .news-posts-section .news-post-card,
.news-page .news-posts-section .events-post-card,
.news-page .events-posts-section .news-post-card,
.news-page .events-posts-section .events-post-card,
.events-page .news-posts-section .news-post-card,
.events-page .news-posts-section .events-post-card,
.events-page .events-posts-section .news-post-card,
.events-page .events-posts-section .events-post-card,
.search-page .news-posts-section .news-post-card,
.search-page .news-posts-section .events-post-card,
.search-page .events-posts-section .news-post-card,
.search-page .events-posts-section .events-post-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 64px) / 3);
  min-width: 0;
}
.news-page .news-posts-section .news-post-card:hover,
.news-page .news-posts-section .events-post-card:hover,
.news-page .events-posts-section .news-post-card:hover,
.news-page .events-posts-section .events-post-card:hover,
.events-page .news-posts-section .news-post-card:hover,
.events-page .news-posts-section .events-post-card:hover,
.events-page .events-posts-section .news-post-card:hover,
.events-page .events-posts-section .events-post-card:hover,
.search-page .news-posts-section .news-post-card:hover,
.search-page .news-posts-section .events-post-card:hover,
.search-page .events-posts-section .news-post-card:hover,
.search-page .events-posts-section .events-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(92, 36, 131, 0.1);
}
.news-page .news-posts-section .news-post-card .post-thumbnail,
.news-page .news-posts-section .events-post-card .post-thumbnail,
.news-page .events-posts-section .news-post-card .post-thumbnail,
.news-page .events-posts-section .events-post-card .post-thumbnail,
.events-page .news-posts-section .news-post-card .post-thumbnail,
.events-page .news-posts-section .events-post-card .post-thumbnail,
.events-page .events-posts-section .news-post-card .post-thumbnail,
.events-page .events-posts-section .events-post-card .post-thumbnail,
.search-page .news-posts-section .news-post-card .post-thumbnail,
.search-page .news-posts-section .events-post-card .post-thumbnail,
.search-page .events-posts-section .news-post-card .post-thumbnail,
.search-page .events-posts-section .events-post-card .post-thumbnail {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f0f0f0;
}
.news-page .news-posts-section .news-post-card .post-thumbnail a,
.news-page .news-posts-section .events-post-card .post-thumbnail a,
.news-page .events-posts-section .news-post-card .post-thumbnail a,
.news-page .events-posts-section .events-post-card .post-thumbnail a,
.events-page .news-posts-section .news-post-card .post-thumbnail a,
.events-page .news-posts-section .events-post-card .post-thumbnail a,
.events-page .events-posts-section .news-post-card .post-thumbnail a,
.events-page .events-posts-section .events-post-card .post-thumbnail a,
.search-page .news-posts-section .news-post-card .post-thumbnail a,
.search-page .news-posts-section .events-post-card .post-thumbnail a,
.search-page .events-posts-section .news-post-card .post-thumbnail a,
.search-page .events-posts-section .events-post-card .post-thumbnail a {
  display: block;
  width: 100%;
  height: 100%;
}
.news-page .news-posts-section .news-post-card .post-thumbnail .post-featured-image,
.news-page .news-posts-section .events-post-card .post-thumbnail .post-featured-image,
.news-page .events-posts-section .news-post-card .post-thumbnail .post-featured-image,
.news-page .events-posts-section .events-post-card .post-thumbnail .post-featured-image,
.events-page .news-posts-section .news-post-card .post-thumbnail .post-featured-image,
.events-page .news-posts-section .events-post-card .post-thumbnail .post-featured-image,
.events-page .events-posts-section .news-post-card .post-thumbnail .post-featured-image,
.events-page .events-posts-section .events-post-card .post-thumbnail .post-featured-image,
.search-page .news-posts-section .news-post-card .post-thumbnail .post-featured-image,
.search-page .news-posts-section .events-post-card .post-thumbnail .post-featured-image,
.search-page .events-posts-section .news-post-card .post-thumbnail .post-featured-image,
.search-page .events-posts-section .events-post-card .post-thumbnail .post-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-page .news-posts-section .news-post-card .post-thumbnail:hover .post-featured-image,
.news-page .news-posts-section .events-post-card .post-thumbnail:hover .post-featured-image,
.news-page .events-posts-section .news-post-card .post-thumbnail:hover .post-featured-image,
.news-page .events-posts-section .events-post-card .post-thumbnail:hover .post-featured-image,
.events-page .news-posts-section .news-post-card .post-thumbnail:hover .post-featured-image,
.events-page .news-posts-section .events-post-card .post-thumbnail:hover .post-featured-image,
.events-page .events-posts-section .news-post-card .post-thumbnail:hover .post-featured-image,
.events-page .events-posts-section .events-post-card .post-thumbnail:hover .post-featured-image,
.search-page .news-posts-section .news-post-card .post-thumbnail:hover .post-featured-image,
.search-page .news-posts-section .events-post-card .post-thumbnail:hover .post-featured-image,
.search-page .events-posts-section .news-post-card .post-thumbnail:hover .post-featured-image,
.search-page .events-posts-section .events-post-card .post-thumbnail:hover .post-featured-image {
  transform: scale(1.08);
}
.news-page .news-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
.news-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
.news-page .events-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
.news-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
.events-page .news-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
.events-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
.events-page .events-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
.events-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
.search-page .news-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
.search-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
.search-page .events-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
.search-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-page .news-posts-section .news-post-card .post-thumbnail .event-venue-logo-card img,
.news-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card img,
.news-page .events-posts-section .news-post-card .post-thumbnail .event-venue-logo-card img,
.news-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card img,
.events-page .news-posts-section .news-post-card .post-thumbnail .event-venue-logo-card img,
.events-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card img,
.events-page .events-posts-section .news-post-card .post-thumbnail .event-venue-logo-card img,
.events-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card img,
.search-page .news-posts-section .news-post-card .post-thumbnail .event-venue-logo-card img,
.search-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card img,
.search-page .events-posts-section .news-post-card .post-thumbnail .event-venue-logo-card img,
.search-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.news-page .news-posts-section .news-post-card .post-thumbnail .event-venue-logo-card:hover,
.news-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card:hover,
.news-page .events-posts-section .news-post-card .post-thumbnail .event-venue-logo-card:hover,
.news-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card:hover,
.events-page .news-posts-section .news-post-card .post-thumbnail .event-venue-logo-card:hover,
.events-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card:hover,
.events-page .events-posts-section .news-post-card .post-thumbnail .event-venue-logo-card:hover,
.events-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card:hover,
.search-page .news-posts-section .news-post-card .post-thumbnail .event-venue-logo-card:hover,
.search-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card:hover,
.search-page .events-posts-section .news-post-card .post-thumbnail .event-venue-logo-card:hover,
.search-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.news-page .news-posts-section .news-post-card .post-thumbnail-logo-only,
.news-page .news-posts-section .events-post-card .post-thumbnail-logo-only,
.news-page .events-posts-section .news-post-card .post-thumbnail-logo-only,
.news-page .events-posts-section .events-post-card .post-thumbnail-logo-only,
.events-page .news-posts-section .news-post-card .post-thumbnail-logo-only,
.events-page .news-posts-section .events-post-card .post-thumbnail-logo-only,
.events-page .events-posts-section .news-post-card .post-thumbnail-logo-only,
.events-page .events-posts-section .events-post-card .post-thumbnail-logo-only,
.search-page .news-posts-section .news-post-card .post-thumbnail-logo-only,
.search-page .news-posts-section .events-post-card .post-thumbnail-logo-only,
.search-page .events-posts-section .news-post-card .post-thumbnail-logo-only,
.search-page .events-posts-section .events-post-card .post-thumbnail-logo-only {
  background: linear-gradient(135deg, var(--tf-purple) 0%, var(--tf-pink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-page .news-posts-section .news-post-card .post-thumbnail-logo-only .event-venue-logo-standalone,
.news-page .news-posts-section .events-post-card .post-thumbnail-logo-only .event-venue-logo-standalone,
.news-page .events-posts-section .news-post-card .post-thumbnail-logo-only .event-venue-logo-standalone,
.news-page .events-posts-section .events-post-card .post-thumbnail-logo-only .event-venue-logo-standalone,
.events-page .news-posts-section .news-post-card .post-thumbnail-logo-only .event-venue-logo-standalone,
.events-page .news-posts-section .events-post-card .post-thumbnail-logo-only .event-venue-logo-standalone,
.events-page .events-posts-section .news-post-card .post-thumbnail-logo-only .event-venue-logo-standalone,
.events-page .events-posts-section .events-post-card .post-thumbnail-logo-only .event-venue-logo-standalone,
.search-page .news-posts-section .news-post-card .post-thumbnail-logo-only .event-venue-logo-standalone,
.search-page .news-posts-section .events-post-card .post-thumbnail-logo-only .event-venue-logo-standalone,
.search-page .events-posts-section .news-post-card .post-thumbnail-logo-only .event-venue-logo-standalone,
.search-page .events-posts-section .events-post-card .post-thumbnail-logo-only .event-venue-logo-standalone {
  width: 120px;
  height: 120px;
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.news-page .news-posts-section .news-post-card .post-thumbnail-logo-only .event-venue-logo-standalone img,
.news-page .news-posts-section .events-post-card .post-thumbnail-logo-only .event-venue-logo-standalone img,
.news-page .events-posts-section .news-post-card .post-thumbnail-logo-only .event-venue-logo-standalone img,
.news-page .events-posts-section .events-post-card .post-thumbnail-logo-only .event-venue-logo-standalone img,
.events-page .news-posts-section .news-post-card .post-thumbnail-logo-only .event-venue-logo-standalone img,
.events-page .news-posts-section .events-post-card .post-thumbnail-logo-only .event-venue-logo-standalone img,
.events-page .events-posts-section .news-post-card .post-thumbnail-logo-only .event-venue-logo-standalone img,
.events-page .events-posts-section .events-post-card .post-thumbnail-logo-only .event-venue-logo-standalone img,
.search-page .news-posts-section .news-post-card .post-thumbnail-logo-only .event-venue-logo-standalone img,
.search-page .news-posts-section .events-post-card .post-thumbnail-logo-only .event-venue-logo-standalone img,
.search-page .events-posts-section .news-post-card .post-thumbnail-logo-only .event-venue-logo-standalone img,
.search-page .events-posts-section .events-post-card .post-thumbnail-logo-only .event-venue-logo-standalone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.news-page .news-posts-section .news-post-card .post-content,
.news-page .news-posts-section .events-post-card .post-content,
.news-page .events-posts-section .news-post-card .post-content,
.news-page .events-posts-section .events-post-card .post-content,
.events-page .news-posts-section .news-post-card .post-content,
.events-page .news-posts-section .events-post-card .post-content,
.events-page .events-posts-section .news-post-card .post-content,
.events-page .events-posts-section .events-post-card .post-content,
.search-page .news-posts-section .news-post-card .post-content,
.search-page .news-posts-section .events-post-card .post-content,
.search-page .events-posts-section .news-post-card .post-content,
.search-page .events-posts-section .events-post-card .post-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.news-page .news-posts-section .news-post-card .post-categories,
.news-page .news-posts-section .events-post-card .post-categories,
.news-page .events-posts-section .news-post-card .post-categories,
.news-page .events-posts-section .events-post-card .post-categories,
.events-page .news-posts-section .news-post-card .post-categories,
.events-page .news-posts-section .events-post-card .post-categories,
.events-page .events-posts-section .news-post-card .post-categories,
.events-page .events-posts-section .events-post-card .post-categories,
.search-page .news-posts-section .news-post-card .post-categories,
.search-page .news-posts-section .events-post-card .post-categories,
.search-page .events-posts-section .news-post-card .post-categories,
.search-page .events-posts-section .events-post-card .post-categories {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.news-page .news-posts-section .news-post-card .post-categories .category-tag,
.news-page .news-posts-section .events-post-card .post-categories .category-tag,
.news-page .events-posts-section .news-post-card .post-categories .category-tag,
.news-page .events-posts-section .events-post-card .post-categories .category-tag,
.events-page .news-posts-section .news-post-card .post-categories .category-tag,
.events-page .news-posts-section .events-post-card .post-categories .category-tag,
.events-page .events-posts-section .news-post-card .post-categories .category-tag,
.events-page .events-posts-section .events-post-card .post-categories .category-tag,
.search-page .news-posts-section .news-post-card .post-categories .category-tag,
.search-page .news-posts-section .events-post-card .post-categories .category-tag,
.search-page .events-posts-section .news-post-card .post-categories .category-tag,
.search-page .events-posts-section .events-post-card .post-categories .category-tag {
  padding: 6px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--tf-avenir);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.news-page .news-posts-section .news-post-card .post-categories .category-tag:hover,
.news-page .news-posts-section .events-post-card .post-categories .category-tag:hover,
.news-page .events-posts-section .news-post-card .post-categories .category-tag:hover,
.news-page .events-posts-section .events-post-card .post-categories .category-tag:hover,
.events-page .news-posts-section .news-post-card .post-categories .category-tag:hover,
.events-page .news-posts-section .events-post-card .post-categories .category-tag:hover,
.events-page .events-posts-section .news-post-card .post-categories .category-tag:hover,
.events-page .events-posts-section .events-post-card .post-categories .category-tag:hover,
.search-page .news-posts-section .news-post-card .post-categories .category-tag:hover,
.search-page .news-posts-section .events-post-card .post-categories .category-tag:hover,
.search-page .events-posts-section .news-post-card .post-categories .category-tag:hover,
.search-page .events-posts-section .events-post-card .post-categories .category-tag:hover {
  background: linear-gradient(135deg, #E55A2B 0%, #D44A1A 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}
.news-page .news-posts-section .news-post-card .post-categories .category-tag:visited,
.news-page .news-posts-section .events-post-card .post-categories .category-tag:visited,
.news-page .events-posts-section .news-post-card .post-categories .category-tag:visited,
.news-page .events-posts-section .events-post-card .post-categories .category-tag:visited,
.events-page .news-posts-section .news-post-card .post-categories .category-tag:visited,
.events-page .news-posts-section .events-post-card .post-categories .category-tag:visited,
.events-page .events-posts-section .news-post-card .post-categories .category-tag:visited,
.events-page .events-posts-section .events-post-card .post-categories .category-tag:visited,
.search-page .news-posts-section .news-post-card .post-categories .category-tag:visited,
.search-page .news-posts-section .events-post-card .post-categories .category-tag:visited,
.search-page .events-posts-section .news-post-card .post-categories .category-tag:visited,
.search-page .events-posts-section .events-post-card .post-categories .category-tag:visited {
  color: white;
}
.news-page .news-posts-section .news-post-card .event-date-badge,
.news-page .news-posts-section .events-post-card .event-date-badge,
.news-page .events-posts-section .news-post-card .event-date-badge,
.news-page .events-posts-section .events-post-card .event-date-badge,
.events-page .news-posts-section .news-post-card .event-date-badge,
.events-page .news-posts-section .events-post-card .event-date-badge,
.events-page .events-posts-section .news-post-card .event-date-badge,
.events-page .events-posts-section .events-post-card .event-date-badge,
.search-page .news-posts-section .news-post-card .event-date-badge,
.search-page .news-posts-section .events-post-card .event-date-badge,
.search-page .events-posts-section .news-post-card .event-date-badge,
.search-page .events-posts-section .events-post-card .event-date-badge {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--tf-purple) 0%, var(--tf-pink) 100%);
  border-radius: 10px;
  padding: 10px 18px;
  margin-bottom: 16px;
  box-shadow: 0 3px 10px rgba(92, 36, 131, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
}
.news-page .news-posts-section .news-post-card .event-date-badge:hover,
.news-page .news-posts-section .events-post-card .event-date-badge:hover,
.news-page .events-posts-section .news-post-card .event-date-badge:hover,
.news-page .events-posts-section .events-post-card .event-date-badge:hover,
.events-page .news-posts-section .news-post-card .event-date-badge:hover,
.events-page .news-posts-section .events-post-card .event-date-badge:hover,
.events-page .events-posts-section .news-post-card .event-date-badge:hover,
.events-page .events-posts-section .events-post-card .event-date-badge:hover,
.search-page .news-posts-section .news-post-card .event-date-badge:hover,
.search-page .news-posts-section .events-post-card .event-date-badge:hover,
.search-page .events-posts-section .news-post-card .event-date-badge:hover,
.search-page .events-posts-section .events-post-card .event-date-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(92, 36, 131, 0.3);
}
.news-page .news-posts-section .news-post-card .event-date-badge .event-date-day,
.news-page .news-posts-section .events-post-card .event-date-badge .event-date-day,
.news-page .events-posts-section .news-post-card .event-date-badge .event-date-day,
.news-page .events-posts-section .events-post-card .event-date-badge .event-date-day,
.events-page .news-posts-section .news-post-card .event-date-badge .event-date-day,
.events-page .news-posts-section .events-post-card .event-date-badge .event-date-day,
.events-page .events-posts-section .news-post-card .event-date-badge .event-date-day,
.events-page .events-posts-section .events-post-card .event-date-badge .event-date-day,
.search-page .news-posts-section .news-post-card .event-date-badge .event-date-day,
.search-page .news-posts-section .events-post-card .event-date-badge .event-date-day,
.search-page .events-posts-section .news-post-card .event-date-badge .event-date-day,
.search-page .events-posts-section .events-post-card .event-date-badge .event-date-day {
  font-family: var(--tf-avenir);
  font-size: 20px;
  font-weight: 700;
  color: white;
  line-height: 1;
  letter-spacing: -0.3px;
}
.news-page .news-posts-section .news-post-card .event-date-badge .event-date-month,
.news-page .news-posts-section .events-post-card .event-date-badge .event-date-month,
.news-page .events-posts-section .news-post-card .event-date-badge .event-date-month,
.news-page .events-posts-section .events-post-card .event-date-badge .event-date-month,
.events-page .news-posts-section .news-post-card .event-date-badge .event-date-month,
.events-page .news-posts-section .events-post-card .event-date-badge .event-date-month,
.events-page .events-posts-section .news-post-card .event-date-badge .event-date-month,
.events-page .events-posts-section .events-post-card .event-date-badge .event-date-month,
.search-page .news-posts-section .news-post-card .event-date-badge .event-date-month,
.search-page .news-posts-section .events-post-card .event-date-badge .event-date-month,
.search-page .events-posts-section .news-post-card .event-date-badge .event-date-month,
.search-page .events-posts-section .events-post-card .event-date-badge .event-date-month {
  font-family: var(--tf-avenir);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}
.news-page .news-posts-section .news-post-card .event-date-badge .event-date-year,
.news-page .news-posts-section .events-post-card .event-date-badge .event-date-year,
.news-page .events-posts-section .news-post-card .event-date-badge .event-date-year,
.news-page .events-posts-section .events-post-card .event-date-badge .event-date-year,
.events-page .news-posts-section .news-post-card .event-date-badge .event-date-year,
.events-page .news-posts-section .events-post-card .event-date-badge .event-date-year,
.events-page .events-posts-section .news-post-card .event-date-badge .event-date-year,
.events-page .events-posts-section .events-post-card .event-date-badge .event-date-year,
.search-page .news-posts-section .news-post-card .event-date-badge .event-date-year,
.search-page .news-posts-section .events-post-card .event-date-badge .event-date-year,
.search-page .events-posts-section .news-post-card .event-date-badge .event-date-year,
.search-page .events-posts-section .events-post-card .event-date-badge .event-date-year {
  font-family: var(--tf-avenir);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}
.news-page .news-posts-section .news-post-card .event-date-badge .event-date-day::after,
.news-page .news-posts-section .news-post-card .event-date-badge .event-date-month::after,
.news-page .news-posts-section .events-post-card .event-date-badge .event-date-day::after,
.news-page .news-posts-section .events-post-card .event-date-badge .event-date-month::after,
.news-page .events-posts-section .news-post-card .event-date-badge .event-date-day::after,
.news-page .events-posts-section .news-post-card .event-date-badge .event-date-month::after,
.news-page .events-posts-section .events-post-card .event-date-badge .event-date-day::after,
.news-page .events-posts-section .events-post-card .event-date-badge .event-date-month::after,
.events-page .news-posts-section .news-post-card .event-date-badge .event-date-day::after,
.events-page .news-posts-section .news-post-card .event-date-badge .event-date-month::after,
.events-page .news-posts-section .events-post-card .event-date-badge .event-date-day::after,
.events-page .news-posts-section .events-post-card .event-date-badge .event-date-month::after,
.events-page .events-posts-section .news-post-card .event-date-badge .event-date-day::after,
.events-page .events-posts-section .news-post-card .event-date-badge .event-date-month::after,
.events-page .events-posts-section .events-post-card .event-date-badge .event-date-day::after,
.events-page .events-posts-section .events-post-card .event-date-badge .event-date-month::after,
.search-page .news-posts-section .news-post-card .event-date-badge .event-date-day::after,
.search-page .news-posts-section .news-post-card .event-date-badge .event-date-month::after,
.search-page .news-posts-section .events-post-card .event-date-badge .event-date-day::after,
.search-page .news-posts-section .events-post-card .event-date-badge .event-date-month::after,
.search-page .events-posts-section .news-post-card .event-date-badge .event-date-day::after,
.search-page .events-posts-section .news-post-card .event-date-badge .event-date-month::after,
.search-page .events-posts-section .events-post-card .event-date-badge .event-date-day::after,
.search-page .events-posts-section .events-post-card .event-date-badge .event-date-month::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
  margin-left: 8px;
  vertical-align: middle;
}
.news-page .news-posts-section .news-post-card .event-date-badge .event-date-year::after,
.news-page .news-posts-section .events-post-card .event-date-badge .event-date-year::after,
.news-page .events-posts-section .news-post-card .event-date-badge .event-date-year::after,
.news-page .events-posts-section .events-post-card .event-date-badge .event-date-year::after,
.events-page .news-posts-section .news-post-card .event-date-badge .event-date-year::after,
.events-page .news-posts-section .events-post-card .event-date-badge .event-date-year::after,
.events-page .events-posts-section .news-post-card .event-date-badge .event-date-year::after,
.events-page .events-posts-section .events-post-card .event-date-badge .event-date-year::after,
.search-page .news-posts-section .news-post-card .event-date-badge .event-date-year::after,
.search-page .news-posts-section .events-post-card .event-date-badge .event-date-year::after,
.search-page .events-posts-section .news-post-card .event-date-badge .event-date-year::after,
.search-page .events-posts-section .events-post-card .event-date-badge .event-date-year::after {
  display: none;
}
.news-page .news-posts-section .news-post-card .post-meta,
.news-page .news-posts-section .events-post-card .post-meta,
.news-page .events-posts-section .news-post-card .post-meta,
.news-page .events-posts-section .events-post-card .post-meta,
.events-page .news-posts-section .news-post-card .post-meta,
.events-page .news-posts-section .events-post-card .post-meta,
.events-page .events-posts-section .news-post-card .post-meta,
.events-page .events-posts-section .events-post-card .post-meta,
.search-page .news-posts-section .news-post-card .post-meta,
.search-page .news-posts-section .events-post-card .post-meta,
.search-page .events-posts-section .news-post-card .post-meta,
.search-page .events-posts-section .events-post-card .post-meta {
  display: none;
}
.news-page .news-posts-section .news-post-card .post-title,
.news-page .news-posts-section .events-post-card .post-title,
.news-page .events-posts-section .news-post-card .post-title,
.news-page .events-posts-section .events-post-card .post-title,
.events-page .news-posts-section .news-post-card .post-title,
.events-page .news-posts-section .events-post-card .post-title,
.events-page .events-posts-section .news-post-card .post-title,
.events-page .events-posts-section .events-post-card .post-title,
.search-page .news-posts-section .news-post-card .post-title,
.search-page .news-posts-section .events-post-card .post-title,
.search-page .events-posts-section .news-post-card .post-title,
.search-page .events-posts-section .events-post-card .post-title {
  margin-bottom: 16px;
  flex-grow: 1;
}
.news-page .news-posts-section .news-post-card .post-title a,
.news-page .news-posts-section .events-post-card .post-title a,
.news-page .events-posts-section .news-post-card .post-title a,
.news-page .events-posts-section .events-post-card .post-title a,
.events-page .news-posts-section .news-post-card .post-title a,
.events-page .news-posts-section .events-post-card .post-title a,
.events-page .events-posts-section .news-post-card .post-title a,
.events-page .events-posts-section .events-post-card .post-title a,
.search-page .news-posts-section .news-post-card .post-title a,
.search-page .news-posts-section .events-post-card .post-title a,
.search-page .events-posts-section .news-post-card .post-title a,
.search-page .events-posts-section .events-post-card .post-title a {
  font-family: var(--tf-avenir);
  font-size: 22px;
  font-weight: 600;
  color: var(--tf-gray);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: block;
  letter-spacing: -0.3px;
}
.news-page .news-posts-section .news-post-card .post-title a:hover,
.news-page .news-posts-section .events-post-card .post-title a:hover,
.news-page .events-posts-section .news-post-card .post-title a:hover,
.news-page .events-posts-section .events-post-card .post-title a:hover,
.events-page .news-posts-section .news-post-card .post-title a:hover,
.events-page .news-posts-section .events-post-card .post-title a:hover,
.events-page .events-posts-section .news-post-card .post-title a:hover,
.events-page .events-posts-section .events-post-card .post-title a:hover,
.search-page .news-posts-section .news-post-card .post-title a:hover,
.search-page .news-posts-section .events-post-card .post-title a:hover,
.search-page .events-posts-section .news-post-card .post-title a:hover,
.search-page .events-posts-section .events-post-card .post-title a:hover {
  color: var(--tf-purple);
}
.news-page .news-posts-section .news-post-card .post-excerpt,
.news-page .news-posts-section .events-post-card .post-excerpt,
.news-page .events-posts-section .news-post-card .post-excerpt,
.news-page .events-posts-section .events-post-card .post-excerpt,
.events-page .news-posts-section .news-post-card .post-excerpt,
.events-page .news-posts-section .events-post-card .post-excerpt,
.events-page .events-posts-section .news-post-card .post-excerpt,
.events-page .events-posts-section .events-post-card .post-excerpt,
.search-page .news-posts-section .news-post-card .post-excerpt,
.search-page .news-posts-section .events-post-card .post-excerpt,
.search-page .events-posts-section .news-post-card .post-excerpt,
.search-page .events-posts-section .events-post-card .post-excerpt {
  font-family: var(--tf-avenir);
  font-size: 15px;
  color: var(--tf-gray);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
  opacity: 0.85;
}
.news-page .news-posts-section .news-post-card .read-more-wrapper,
.news-page .news-posts-section .events-post-card .read-more-wrapper,
.news-page .events-posts-section .news-post-card .read-more-wrapper,
.news-page .events-posts-section .events-post-card .read-more-wrapper,
.events-page .news-posts-section .news-post-card .read-more-wrapper,
.events-page .news-posts-section .events-post-card .read-more-wrapper,
.events-page .events-posts-section .news-post-card .read-more-wrapper,
.events-page .events-posts-section .events-post-card .read-more-wrapper,
.search-page .news-posts-section .news-post-card .read-more-wrapper,
.search-page .news-posts-section .events-post-card .read-more-wrapper,
.search-page .events-posts-section .news-post-card .read-more-wrapper,
.search-page .events-posts-section .events-post-card .read-more-wrapper {
  margin-top: auto;
  padding-top: 8px;
}
.news-page .news-posts-section .news-post-card .read-more-wrapper .read-more-btn,
.news-page .news-posts-section .events-post-card .read-more-wrapper .read-more-btn,
.news-page .events-posts-section .news-post-card .read-more-wrapper .read-more-btn,
.news-page .events-posts-section .events-post-card .read-more-wrapper .read-more-btn,
.events-page .news-posts-section .news-post-card .read-more-wrapper .read-more-btn,
.events-page .news-posts-section .events-post-card .read-more-wrapper .read-more-btn,
.events-page .events-posts-section .news-post-card .read-more-wrapper .read-more-btn,
.events-page .events-posts-section .events-post-card .read-more-wrapper .read-more-btn,
.search-page .news-posts-section .news-post-card .read-more-wrapper .read-more-btn,
.search-page .news-posts-section .events-post-card .read-more-wrapper .read-more-btn,
.search-page .events-posts-section .news-post-card .read-more-wrapper .read-more-btn,
.search-page .events-posts-section .events-post-card .read-more-wrapper .read-more-btn {
  display: flex;
  width: 100%;
  padding: 14px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: var(--tf-purple);
  color: white;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-align: center;
  font-family: var(--tf-avenir);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(92, 36, 131, 0.2);
}
.news-page .news-posts-section .news-post-card .read-more-wrapper .read-more-btn:hover,
.news-page .news-posts-section .events-post-card .read-more-wrapper .read-more-btn:hover,
.news-page .events-posts-section .news-post-card .read-more-wrapper .read-more-btn:hover,
.news-page .events-posts-section .events-post-card .read-more-wrapper .read-more-btn:hover,
.events-page .news-posts-section .news-post-card .read-more-wrapper .read-more-btn:hover,
.events-page .news-posts-section .events-post-card .read-more-wrapper .read-more-btn:hover,
.events-page .events-posts-section .news-post-card .read-more-wrapper .read-more-btn:hover,
.events-page .events-posts-section .events-post-card .read-more-wrapper .read-more-btn:hover,
.search-page .news-posts-section .news-post-card .read-more-wrapper .read-more-btn:hover,
.search-page .news-posts-section .events-post-card .read-more-wrapper .read-more-btn:hover,
.search-page .events-posts-section .news-post-card .read-more-wrapper .read-more-btn:hover,
.search-page .events-posts-section .events-post-card .read-more-wrapper .read-more-btn:hover {
  background: var(--tf-pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 36, 131, 0.3);
  color: white;
}
.news-page .news-posts-section .news-post-card .read-more-wrapper .read-more-btn:visited,
.news-page .news-posts-section .events-post-card .read-more-wrapper .read-more-btn:visited,
.news-page .events-posts-section .news-post-card .read-more-wrapper .read-more-btn:visited,
.news-page .events-posts-section .events-post-card .read-more-wrapper .read-more-btn:visited,
.events-page .news-posts-section .news-post-card .read-more-wrapper .read-more-btn:visited,
.events-page .news-posts-section .events-post-card .read-more-wrapper .read-more-btn:visited,
.events-page .events-posts-section .news-post-card .read-more-wrapper .read-more-btn:visited,
.events-page .events-posts-section .events-post-card .read-more-wrapper .read-more-btn:visited,
.search-page .news-posts-section .news-post-card .read-more-wrapper .read-more-btn:visited,
.search-page .news-posts-section .events-post-card .read-more-wrapper .read-more-btn:visited,
.search-page .events-posts-section .news-post-card .read-more-wrapper .read-more-btn:visited,
.search-page .events-posts-section .events-post-card .read-more-wrapper .read-more-btn:visited {
  color: white;
}
.news-page .news-posts-section .no-posts-message,
.news-page .events-posts-section .no-posts-message,
.events-page .news-posts-section .no-posts-message,
.events-page .events-posts-section .no-posts-message,
.search-page .news-posts-section .no-posts-message,
.search-page .events-posts-section .no-posts-message {
  text-align: center;
  padding: 80px 20px;
}
.news-page .news-posts-section .no-posts-message h3,
.news-page .events-posts-section .no-posts-message h3,
.events-page .news-posts-section .no-posts-message h3,
.events-page .events-posts-section .no-posts-message h3,
.search-page .news-posts-section .no-posts-message h3,
.search-page .events-posts-section .no-posts-message h3 {
  font-family: var(--tf-avenir);
  font-size: 32px;
  color: var(--tf-gray);
  margin-bottom: 16px;
}
.news-page .news-posts-section .no-posts-message p,
.news-page .events-posts-section .no-posts-message p,
.events-page .news-posts-section .no-posts-message p,
.events-page .events-posts-section .no-posts-message p,
.search-page .news-posts-section .no-posts-message p,
.search-page .events-posts-section .no-posts-message p {
  font-family: var(--tf-avenir);
  font-size: 18px;
  color: var(--tf-gray);
  max-width: 500px;
  margin: 0 auto 20px;
}
.news-page .news-posts-section .news-pagination,
.news-page .news-posts-section .events-pagination,
.news-page .events-posts-section .news-pagination,
.news-page .events-posts-section .events-pagination,
.events-page .news-posts-section .news-pagination,
.events-page .news-posts-section .events-pagination,
.events-page .events-posts-section .news-pagination,
.events-page .events-posts-section .events-pagination,
.search-page .news-posts-section .news-pagination,
.search-page .news-posts-section .events-pagination,
.search-page .events-posts-section .news-pagination,
.search-page .events-posts-section .events-pagination {
  display: flex;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 40px;
  gap: 16px;
}
.news-page .news-posts-section .news-pagination .page-numbers,
.news-page .news-posts-section .events-pagination .page-numbers,
.news-page .events-posts-section .news-pagination .page-numbers,
.news-page .events-posts-section .events-pagination .page-numbers,
.events-page .news-posts-section .news-pagination .page-numbers,
.events-page .news-posts-section .events-pagination .page-numbers,
.events-page .events-posts-section .news-pagination .page-numbers,
.events-page .events-posts-section .events-pagination .page-numbers,
.search-page .news-posts-section .news-pagination .page-numbers,
.search-page .news-posts-section .events-pagination .page-numbers,
.search-page .events-posts-section .news-pagination .page-numbers,
.search-page .events-posts-section .events-pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 18px;
}
.news-page .news-posts-section .news-pagination .page-numbers a, .news-page .news-posts-section .news-pagination .page-numbers span,
.news-page .news-posts-section .events-pagination .page-numbers a,
.news-page .news-posts-section .events-pagination .page-numbers span,
.news-page .events-posts-section .news-pagination .page-numbers a,
.news-page .events-posts-section .news-pagination .page-numbers span,
.news-page .events-posts-section .events-pagination .page-numbers a,
.news-page .events-posts-section .events-pagination .page-numbers span,
.events-page .news-posts-section .news-pagination .page-numbers a,
.events-page .news-posts-section .news-pagination .page-numbers span,
.events-page .news-posts-section .events-pagination .page-numbers a,
.events-page .news-posts-section .events-pagination .page-numbers span,
.events-page .events-posts-section .news-pagination .page-numbers a,
.events-page .events-posts-section .news-pagination .page-numbers span,
.events-page .events-posts-section .events-pagination .page-numbers a,
.events-page .events-posts-section .events-pagination .page-numbers span,
.search-page .news-posts-section .news-pagination .page-numbers a,
.search-page .news-posts-section .news-pagination .page-numbers span,
.search-page .news-posts-section .events-pagination .page-numbers a,
.search-page .news-posts-section .events-pagination .page-numbers span,
.search-page .events-posts-section .news-pagination .page-numbers a,
.search-page .events-posts-section .news-pagination .page-numbers span,
.search-page .events-posts-section .events-pagination .page-numbers a,
.search-page .events-posts-section .events-pagination .page-numbers span {
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  color: var(--tf-gray);
  text-decoration: none;
  font-family: var(--tf-avenir);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 44px;
  text-align: center;
  background: transparent;
}
.news-page .news-posts-section .news-pagination .page-numbers a:hover:not(.current), .news-page .news-posts-section .news-pagination .page-numbers span:hover:not(.current),
.news-page .news-posts-section .events-pagination .page-numbers a:hover:not(.current),
.news-page .news-posts-section .events-pagination .page-numbers span:hover:not(.current),
.news-page .events-posts-section .news-pagination .page-numbers a:hover:not(.current),
.news-page .events-posts-section .news-pagination .page-numbers span:hover:not(.current),
.news-page .events-posts-section .events-pagination .page-numbers a:hover:not(.current),
.news-page .events-posts-section .events-pagination .page-numbers span:hover:not(.current),
.events-page .news-posts-section .news-pagination .page-numbers a:hover:not(.current),
.events-page .news-posts-section .news-pagination .page-numbers span:hover:not(.current),
.events-page .news-posts-section .events-pagination .page-numbers a:hover:not(.current),
.events-page .news-posts-section .events-pagination .page-numbers span:hover:not(.current),
.events-page .events-posts-section .news-pagination .page-numbers a:hover:not(.current),
.events-page .events-posts-section .news-pagination .page-numbers span:hover:not(.current),
.events-page .events-posts-section .events-pagination .page-numbers a:hover:not(.current),
.events-page .events-posts-section .events-pagination .page-numbers span:hover:not(.current),
.search-page .news-posts-section .news-pagination .page-numbers a:hover:not(.current),
.search-page .news-posts-section .news-pagination .page-numbers span:hover:not(.current),
.search-page .news-posts-section .events-pagination .page-numbers a:hover:not(.current),
.search-page .news-posts-section .events-pagination .page-numbers span:hover:not(.current),
.search-page .events-posts-section .news-pagination .page-numbers a:hover:not(.current),
.search-page .events-posts-section .news-pagination .page-numbers span:hover:not(.current),
.search-page .events-posts-section .events-pagination .page-numbers a:hover:not(.current),
.search-page .events-posts-section .events-pagination .page-numbers span:hover:not(.current) {
  border-color: var(--tf-purple);
  color: var(--tf-purple);
  background: rgba(92, 36, 131, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 36, 131, 0.15);
}
.news-page .news-posts-section .news-pagination .page-numbers a.prev, .news-page .news-posts-section .news-pagination .page-numbers a.next, .news-page .news-posts-section .news-pagination .page-numbers span.prev, .news-page .news-posts-section .news-pagination .page-numbers span.next,
.news-page .news-posts-section .events-pagination .page-numbers a.prev,
.news-page .news-posts-section .events-pagination .page-numbers a.next,
.news-page .news-posts-section .events-pagination .page-numbers span.prev,
.news-page .news-posts-section .events-pagination .page-numbers span.next,
.news-page .events-posts-section .news-pagination .page-numbers a.prev,
.news-page .events-posts-section .news-pagination .page-numbers a.next,
.news-page .events-posts-section .news-pagination .page-numbers span.prev,
.news-page .events-posts-section .news-pagination .page-numbers span.next,
.news-page .events-posts-section .events-pagination .page-numbers a.prev,
.news-page .events-posts-section .events-pagination .page-numbers a.next,
.news-page .events-posts-section .events-pagination .page-numbers span.prev,
.news-page .events-posts-section .events-pagination .page-numbers span.next,
.events-page .news-posts-section .news-pagination .page-numbers a.prev,
.events-page .news-posts-section .news-pagination .page-numbers a.next,
.events-page .news-posts-section .news-pagination .page-numbers span.prev,
.events-page .news-posts-section .news-pagination .page-numbers span.next,
.events-page .news-posts-section .events-pagination .page-numbers a.prev,
.events-page .news-posts-section .events-pagination .page-numbers a.next,
.events-page .news-posts-section .events-pagination .page-numbers span.prev,
.events-page .news-posts-section .events-pagination .page-numbers span.next,
.events-page .events-posts-section .news-pagination .page-numbers a.prev,
.events-page .events-posts-section .news-pagination .page-numbers a.next,
.events-page .events-posts-section .news-pagination .page-numbers span.prev,
.events-page .events-posts-section .news-pagination .page-numbers span.next,
.events-page .events-posts-section .events-pagination .page-numbers a.prev,
.events-page .events-posts-section .events-pagination .page-numbers a.next,
.events-page .events-posts-section .events-pagination .page-numbers span.prev,
.events-page .events-posts-section .events-pagination .page-numbers span.next,
.search-page .news-posts-section .news-pagination .page-numbers a.prev,
.search-page .news-posts-section .news-pagination .page-numbers a.next,
.search-page .news-posts-section .news-pagination .page-numbers span.prev,
.search-page .news-posts-section .news-pagination .page-numbers span.next,
.search-page .news-posts-section .events-pagination .page-numbers a.prev,
.search-page .news-posts-section .events-pagination .page-numbers a.next,
.search-page .news-posts-section .events-pagination .page-numbers span.prev,
.search-page .news-posts-section .events-pagination .page-numbers span.next,
.search-page .events-posts-section .news-pagination .page-numbers a.prev,
.search-page .events-posts-section .news-pagination .page-numbers a.next,
.search-page .events-posts-section .news-pagination .page-numbers span.prev,
.search-page .events-posts-section .news-pagination .page-numbers span.next,
.search-page .events-posts-section .events-pagination .page-numbers a.prev,
.search-page .events-posts-section .events-pagination .page-numbers a.next,
.search-page .events-posts-section .events-pagination .page-numbers span.prev,
.search-page .events-posts-section .events-pagination .page-numbers span.next {
  padding: 14px 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  position: relative;
  font-size: 0;
  line-height: 0;
}
.news-page .news-posts-section .news-pagination .page-numbers a.prev i, .news-page .news-posts-section .news-pagination .page-numbers a.next i, .news-page .news-posts-section .news-pagination .page-numbers span.prev i, .news-page .news-posts-section .news-pagination .page-numbers span.next i,
.news-page .news-posts-section .events-pagination .page-numbers a.prev i,
.news-page .news-posts-section .events-pagination .page-numbers a.next i,
.news-page .news-posts-section .events-pagination .page-numbers span.prev i,
.news-page .news-posts-section .events-pagination .page-numbers span.next i,
.news-page .events-posts-section .news-pagination .page-numbers a.prev i,
.news-page .events-posts-section .news-pagination .page-numbers a.next i,
.news-page .events-posts-section .news-pagination .page-numbers span.prev i,
.news-page .events-posts-section .news-pagination .page-numbers span.next i,
.news-page .events-posts-section .events-pagination .page-numbers a.prev i,
.news-page .events-posts-section .events-pagination .page-numbers a.next i,
.news-page .events-posts-section .events-pagination .page-numbers span.prev i,
.news-page .events-posts-section .events-pagination .page-numbers span.next i,
.events-page .news-posts-section .news-pagination .page-numbers a.prev i,
.events-page .news-posts-section .news-pagination .page-numbers a.next i,
.events-page .news-posts-section .news-pagination .page-numbers span.prev i,
.events-page .news-posts-section .news-pagination .page-numbers span.next i,
.events-page .news-posts-section .events-pagination .page-numbers a.prev i,
.events-page .news-posts-section .events-pagination .page-numbers a.next i,
.events-page .news-posts-section .events-pagination .page-numbers span.prev i,
.events-page .news-posts-section .events-pagination .page-numbers span.next i,
.events-page .events-posts-section .news-pagination .page-numbers a.prev i,
.events-page .events-posts-section .news-pagination .page-numbers a.next i,
.events-page .events-posts-section .news-pagination .page-numbers span.prev i,
.events-page .events-posts-section .news-pagination .page-numbers span.next i,
.events-page .events-posts-section .events-pagination .page-numbers a.prev i,
.events-page .events-posts-section .events-pagination .page-numbers a.next i,
.events-page .events-posts-section .events-pagination .page-numbers span.prev i,
.events-page .events-posts-section .events-pagination .page-numbers span.next i,
.search-page .news-posts-section .news-pagination .page-numbers a.prev i,
.search-page .news-posts-section .news-pagination .page-numbers a.next i,
.search-page .news-posts-section .news-pagination .page-numbers span.prev i,
.search-page .news-posts-section .news-pagination .page-numbers span.next i,
.search-page .news-posts-section .events-pagination .page-numbers a.prev i,
.search-page .news-posts-section .events-pagination .page-numbers a.next i,
.search-page .news-posts-section .events-pagination .page-numbers span.prev i,
.search-page .news-posts-section .events-pagination .page-numbers span.next i,
.search-page .events-posts-section .news-pagination .page-numbers a.prev i,
.search-page .events-posts-section .news-pagination .page-numbers a.next i,
.search-page .events-posts-section .news-pagination .page-numbers span.prev i,
.search-page .events-posts-section .news-pagination .page-numbers span.next i,
.search-page .events-posts-section .events-pagination .page-numbers a.prev i,
.search-page .events-posts-section .events-pagination .page-numbers a.next i,
.search-page .events-posts-section .events-pagination .page-numbers span.prev i,
.search-page .events-posts-section .events-pagination .page-numbers span.next i {
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  color: var(--tf-purple);
}
.news-page .news-posts-section .news-pagination .page-numbers a.prev:hover, .news-page .news-posts-section .news-pagination .page-numbers a.next:hover, .news-page .news-posts-section .news-pagination .page-numbers span.prev:hover, .news-page .news-posts-section .news-pagination .page-numbers span.next:hover,
.news-page .news-posts-section .events-pagination .page-numbers a.prev:hover,
.news-page .news-posts-section .events-pagination .page-numbers a.next:hover,
.news-page .news-posts-section .events-pagination .page-numbers span.prev:hover,
.news-page .news-posts-section .events-pagination .page-numbers span.next:hover,
.news-page .events-posts-section .news-pagination .page-numbers a.prev:hover,
.news-page .events-posts-section .news-pagination .page-numbers a.next:hover,
.news-page .events-posts-section .news-pagination .page-numbers span.prev:hover,
.news-page .events-posts-section .news-pagination .page-numbers span.next:hover,
.news-page .events-posts-section .events-pagination .page-numbers a.prev:hover,
.news-page .events-posts-section .events-pagination .page-numbers a.next:hover,
.news-page .events-posts-section .events-pagination .page-numbers span.prev:hover,
.news-page .events-posts-section .events-pagination .page-numbers span.next:hover,
.events-page .news-posts-section .news-pagination .page-numbers a.prev:hover,
.events-page .news-posts-section .news-pagination .page-numbers a.next:hover,
.events-page .news-posts-section .news-pagination .page-numbers span.prev:hover,
.events-page .news-posts-section .news-pagination .page-numbers span.next:hover,
.events-page .news-posts-section .events-pagination .page-numbers a.prev:hover,
.events-page .news-posts-section .events-pagination .page-numbers a.next:hover,
.events-page .news-posts-section .events-pagination .page-numbers span.prev:hover,
.events-page .news-posts-section .events-pagination .page-numbers span.next:hover,
.events-page .events-posts-section .news-pagination .page-numbers a.prev:hover,
.events-page .events-posts-section .news-pagination .page-numbers a.next:hover,
.events-page .events-posts-section .news-pagination .page-numbers span.prev:hover,
.events-page .events-posts-section .news-pagination .page-numbers span.next:hover,
.events-page .events-posts-section .events-pagination .page-numbers a.prev:hover,
.events-page .events-posts-section .events-pagination .page-numbers a.next:hover,
.events-page .events-posts-section .events-pagination .page-numbers span.prev:hover,
.events-page .events-posts-section .events-pagination .page-numbers span.next:hover,
.search-page .news-posts-section .news-pagination .page-numbers a.prev:hover,
.search-page .news-posts-section .news-pagination .page-numbers a.next:hover,
.search-page .news-posts-section .news-pagination .page-numbers span.prev:hover,
.search-page .news-posts-section .news-pagination .page-numbers span.next:hover,
.search-page .news-posts-section .events-pagination .page-numbers a.prev:hover,
.search-page .news-posts-section .events-pagination .page-numbers a.next:hover,
.search-page .news-posts-section .events-pagination .page-numbers span.prev:hover,
.search-page .news-posts-section .events-pagination .page-numbers span.next:hover,
.search-page .events-posts-section .news-pagination .page-numbers a.prev:hover,
.search-page .events-posts-section .news-pagination .page-numbers a.next:hover,
.search-page .events-posts-section .news-pagination .page-numbers span.prev:hover,
.search-page .events-posts-section .news-pagination .page-numbers span.next:hover,
.search-page .events-posts-section .events-pagination .page-numbers a.prev:hover,
.search-page .events-posts-section .events-pagination .page-numbers a.next:hover,
.search-page .events-posts-section .events-pagination .page-numbers span.prev:hover,
.search-page .events-posts-section .events-pagination .page-numbers span.next:hover {
  border-color: var(--tf-purple);
  background: rgba(92, 36, 131, 0.08);
}
.news-page .news-posts-section .news-pagination .page-numbers a.prev:hover i, .news-page .news-posts-section .news-pagination .page-numbers a.next:hover i, .news-page .news-posts-section .news-pagination .page-numbers span.prev:hover i, .news-page .news-posts-section .news-pagination .page-numbers span.next:hover i,
.news-page .news-posts-section .events-pagination .page-numbers a.prev:hover i,
.news-page .news-posts-section .events-pagination .page-numbers a.next:hover i,
.news-page .news-posts-section .events-pagination .page-numbers span.prev:hover i,
.news-page .news-posts-section .events-pagination .page-numbers span.next:hover i,
.news-page .events-posts-section .news-pagination .page-numbers a.prev:hover i,
.news-page .events-posts-section .news-pagination .page-numbers a.next:hover i,
.news-page .events-posts-section .news-pagination .page-numbers span.prev:hover i,
.news-page .events-posts-section .news-pagination .page-numbers span.next:hover i,
.news-page .events-posts-section .events-pagination .page-numbers a.prev:hover i,
.news-page .events-posts-section .events-pagination .page-numbers a.next:hover i,
.news-page .events-posts-section .events-pagination .page-numbers span.prev:hover i,
.news-page .events-posts-section .events-pagination .page-numbers span.next:hover i,
.events-page .news-posts-section .news-pagination .page-numbers a.prev:hover i,
.events-page .news-posts-section .news-pagination .page-numbers a.next:hover i,
.events-page .news-posts-section .news-pagination .page-numbers span.prev:hover i,
.events-page .news-posts-section .news-pagination .page-numbers span.next:hover i,
.events-page .news-posts-section .events-pagination .page-numbers a.prev:hover i,
.events-page .news-posts-section .events-pagination .page-numbers a.next:hover i,
.events-page .news-posts-section .events-pagination .page-numbers span.prev:hover i,
.events-page .news-posts-section .events-pagination .page-numbers span.next:hover i,
.events-page .events-posts-section .news-pagination .page-numbers a.prev:hover i,
.events-page .events-posts-section .news-pagination .page-numbers a.next:hover i,
.events-page .events-posts-section .news-pagination .page-numbers span.prev:hover i,
.events-page .events-posts-section .news-pagination .page-numbers span.next:hover i,
.events-page .events-posts-section .events-pagination .page-numbers a.prev:hover i,
.events-page .events-posts-section .events-pagination .page-numbers a.next:hover i,
.events-page .events-posts-section .events-pagination .page-numbers span.prev:hover i,
.events-page .events-posts-section .events-pagination .page-numbers span.next:hover i,
.search-page .news-posts-section .news-pagination .page-numbers a.prev:hover i,
.search-page .news-posts-section .news-pagination .page-numbers a.next:hover i,
.search-page .news-posts-section .news-pagination .page-numbers span.prev:hover i,
.search-page .news-posts-section .news-pagination .page-numbers span.next:hover i,
.search-page .news-posts-section .events-pagination .page-numbers a.prev:hover i,
.search-page .news-posts-section .events-pagination .page-numbers a.next:hover i,
.search-page .news-posts-section .events-pagination .page-numbers span.prev:hover i,
.search-page .news-posts-section .events-pagination .page-numbers span.next:hover i,
.search-page .events-posts-section .news-pagination .page-numbers a.prev:hover i,
.search-page .events-posts-section .news-pagination .page-numbers a.next:hover i,
.search-page .events-posts-section .news-pagination .page-numbers span.prev:hover i,
.search-page .events-posts-section .news-pagination .page-numbers span.next:hover i,
.search-page .events-posts-section .events-pagination .page-numbers a.prev:hover i,
.search-page .events-posts-section .events-pagination .page-numbers a.next:hover i,
.search-page .events-posts-section .events-pagination .page-numbers span.prev:hover i,
.search-page .events-posts-section .events-pagination .page-numbers span.next:hover i {
  color: var(--tf-purple);
  transform: scale(1.15);
}
.news-page .news-posts-section .news-pagination .page-numbers a.prev:hover i, .news-page .news-posts-section .news-pagination .page-numbers span.prev:hover i,
.news-page .news-posts-section .events-pagination .page-numbers a.prev:hover i,
.news-page .news-posts-section .events-pagination .page-numbers span.prev:hover i,
.news-page .events-posts-section .news-pagination .page-numbers a.prev:hover i,
.news-page .events-posts-section .news-pagination .page-numbers span.prev:hover i,
.news-page .events-posts-section .events-pagination .page-numbers a.prev:hover i,
.news-page .events-posts-section .events-pagination .page-numbers span.prev:hover i,
.events-page .news-posts-section .news-pagination .page-numbers a.prev:hover i,
.events-page .news-posts-section .news-pagination .page-numbers span.prev:hover i,
.events-page .news-posts-section .events-pagination .page-numbers a.prev:hover i,
.events-page .news-posts-section .events-pagination .page-numbers span.prev:hover i,
.events-page .events-posts-section .news-pagination .page-numbers a.prev:hover i,
.events-page .events-posts-section .news-pagination .page-numbers span.prev:hover i,
.events-page .events-posts-section .events-pagination .page-numbers a.prev:hover i,
.events-page .events-posts-section .events-pagination .page-numbers span.prev:hover i,
.search-page .news-posts-section .news-pagination .page-numbers a.prev:hover i,
.search-page .news-posts-section .news-pagination .page-numbers span.prev:hover i,
.search-page .news-posts-section .events-pagination .page-numbers a.prev:hover i,
.search-page .news-posts-section .events-pagination .page-numbers span.prev:hover i,
.search-page .events-posts-section .news-pagination .page-numbers a.prev:hover i,
.search-page .events-posts-section .news-pagination .page-numbers span.prev:hover i,
.search-page .events-posts-section .events-pagination .page-numbers a.prev:hover i,
.search-page .events-posts-section .events-pagination .page-numbers span.prev:hover i {
  transform: translateX(-3px) scale(1.15);
}
.news-page .news-posts-section .news-pagination .page-numbers a.next:hover i, .news-page .news-posts-section .news-pagination .page-numbers span.next:hover i,
.news-page .news-posts-section .events-pagination .page-numbers a.next:hover i,
.news-page .news-posts-section .events-pagination .page-numbers span.next:hover i,
.news-page .events-posts-section .news-pagination .page-numbers a.next:hover i,
.news-page .events-posts-section .news-pagination .page-numbers span.next:hover i,
.news-page .events-posts-section .events-pagination .page-numbers a.next:hover i,
.news-page .events-posts-section .events-pagination .page-numbers span.next:hover i,
.events-page .news-posts-section .news-pagination .page-numbers a.next:hover i,
.events-page .news-posts-section .news-pagination .page-numbers span.next:hover i,
.events-page .news-posts-section .events-pagination .page-numbers a.next:hover i,
.events-page .news-posts-section .events-pagination .page-numbers span.next:hover i,
.events-page .events-posts-section .news-pagination .page-numbers a.next:hover i,
.events-page .events-posts-section .news-pagination .page-numbers span.next:hover i,
.events-page .events-posts-section .events-pagination .page-numbers a.next:hover i,
.events-page .events-posts-section .events-pagination .page-numbers span.next:hover i,
.search-page .news-posts-section .news-pagination .page-numbers a.next:hover i,
.search-page .news-posts-section .news-pagination .page-numbers span.next:hover i,
.search-page .news-posts-section .events-pagination .page-numbers a.next:hover i,
.search-page .news-posts-section .events-pagination .page-numbers span.next:hover i,
.search-page .events-posts-section .news-pagination .page-numbers a.next:hover i,
.search-page .events-posts-section .news-pagination .page-numbers span.next:hover i,
.search-page .events-posts-section .events-pagination .page-numbers a.next:hover i,
.search-page .events-posts-section .events-pagination .page-numbers span.next:hover i {
  transform: translateX(3px) scale(1.15);
}
.news-page .news-posts-section .news-pagination .page-numbers a:visited, .news-page .news-posts-section .news-pagination .page-numbers span:visited,
.news-page .news-posts-section .events-pagination .page-numbers a:visited,
.news-page .news-posts-section .events-pagination .page-numbers span:visited,
.news-page .events-posts-section .news-pagination .page-numbers a:visited,
.news-page .events-posts-section .news-pagination .page-numbers span:visited,
.news-page .events-posts-section .events-pagination .page-numbers a:visited,
.news-page .events-posts-section .events-pagination .page-numbers span:visited,
.events-page .news-posts-section .news-pagination .page-numbers a:visited,
.events-page .news-posts-section .news-pagination .page-numbers span:visited,
.events-page .news-posts-section .events-pagination .page-numbers a:visited,
.events-page .news-posts-section .events-pagination .page-numbers span:visited,
.events-page .events-posts-section .news-pagination .page-numbers a:visited,
.events-page .events-posts-section .news-pagination .page-numbers span:visited,
.events-page .events-posts-section .events-pagination .page-numbers a:visited,
.events-page .events-posts-section .events-pagination .page-numbers span:visited,
.search-page .news-posts-section .news-pagination .page-numbers a:visited,
.search-page .news-posts-section .news-pagination .page-numbers span:visited,
.search-page .news-posts-section .events-pagination .page-numbers a:visited,
.search-page .news-posts-section .events-pagination .page-numbers span:visited,
.search-page .events-posts-section .news-pagination .page-numbers a:visited,
.search-page .events-posts-section .news-pagination .page-numbers span:visited,
.search-page .events-posts-section .events-pagination .page-numbers a:visited,
.search-page .events-posts-section .events-pagination .page-numbers span:visited {
  color: var(--tf-gray);
}
.news-page .news-posts-section .news-pagination .page-numbers.current, .news-page .news-posts-section .news-pagination .page-numbers.page-numbers span.current, .news-page .news-posts-section .news-pagination .page-numbers.page-numbers a.current,
.news-page .news-posts-section .events-pagination .page-numbers.current,
.news-page .news-posts-section .events-pagination .page-numbers.page-numbers span.current,
.news-page .news-posts-section .events-pagination .page-numbers.page-numbers a.current,
.news-page .events-posts-section .news-pagination .page-numbers.current,
.news-page .events-posts-section .news-pagination .page-numbers.page-numbers span.current,
.news-page .events-posts-section .news-pagination .page-numbers.page-numbers a.current,
.news-page .events-posts-section .events-pagination .page-numbers.current,
.news-page .events-posts-section .events-pagination .page-numbers.page-numbers span.current,
.news-page .events-posts-section .events-pagination .page-numbers.page-numbers a.current,
.events-page .news-posts-section .news-pagination .page-numbers.current,
.events-page .news-posts-section .news-pagination .page-numbers.page-numbers span.current,
.events-page .news-posts-section .news-pagination .page-numbers.page-numbers a.current,
.events-page .news-posts-section .events-pagination .page-numbers.current,
.events-page .news-posts-section .events-pagination .page-numbers.page-numbers span.current,
.events-page .news-posts-section .events-pagination .page-numbers.page-numbers a.current,
.events-page .events-posts-section .news-pagination .page-numbers.current,
.events-page .events-posts-section .news-pagination .page-numbers.page-numbers span.current,
.events-page .events-posts-section .news-pagination .page-numbers.page-numbers a.current,
.events-page .events-posts-section .events-pagination .page-numbers.current,
.events-page .events-posts-section .events-pagination .page-numbers.page-numbers span.current,
.events-page .events-posts-section .events-pagination .page-numbers.page-numbers a.current,
.search-page .news-posts-section .news-pagination .page-numbers.current,
.search-page .news-posts-section .news-pagination .page-numbers.page-numbers span.current,
.search-page .news-posts-section .news-pagination .page-numbers.page-numbers a.current,
.search-page .news-posts-section .events-pagination .page-numbers.current,
.search-page .news-posts-section .events-pagination .page-numbers.page-numbers span.current,
.search-page .news-posts-section .events-pagination .page-numbers.page-numbers a.current,
.search-page .events-posts-section .news-pagination .page-numbers.current,
.search-page .events-posts-section .news-pagination .page-numbers.page-numbers span.current,
.search-page .events-posts-section .news-pagination .page-numbers.page-numbers a.current,
.search-page .events-posts-section .events-pagination .page-numbers.current,
.search-page .events-posts-section .events-pagination .page-numbers.page-numbers span.current,
.search-page .events-posts-section .events-pagination .page-numbers.page-numbers a.current {
  background: var(--tf-purple) !important;
  border-color: var(--tf-purple) !important;
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  width: 32px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-page .news-posts-section .news-pagination .page-numbers .dots,
.news-page .news-posts-section .events-pagination .page-numbers .dots,
.news-page .events-posts-section .news-pagination .page-numbers .dots,
.news-page .events-posts-section .events-pagination .page-numbers .dots,
.events-page .news-posts-section .news-pagination .page-numbers .dots,
.events-page .news-posts-section .events-pagination .page-numbers .dots,
.events-page .events-posts-section .news-pagination .page-numbers .dots,
.events-page .events-posts-section .events-pagination .page-numbers .dots,
.search-page .news-posts-section .news-pagination .page-numbers .dots,
.search-page .news-posts-section .events-pagination .page-numbers .dots,
.search-page .events-posts-section .news-pagination .page-numbers .dots,
.search-page .events-posts-section .events-pagination .page-numbers .dots {
  padding: 14px 10px;
  color: #999;
  border: none;
}
@media (max-width: 992px) {
  .news-page .events-banner-section,
  .events-page .events-banner-section,
  .search-page .events-banner-section {
    min-height: 350px;
  }
  .news-page .events-banner-section .banner-overlay .banner-content,
  .events-page .events-banner-section .banner-overlay .banner-content,
  .search-page .events-banner-section .banner-overlay .banner-content {
    padding: 40px 20px;
  }
  .news-page .events-banner-section .banner-overlay .banner-content .events-banner-heading,
  .events-page .events-banner-section .banner-overlay .banner-content .events-banner-heading,
  .search-page .events-banner-section .banner-overlay .banner-content .events-banner-heading {
    font-size: 40px;
  }
  .news-page .events-banner-section .banner-overlay .banner-content .events-banner-subheading,
  .events-page .events-banner-section .banner-overlay .banner-content .events-banner-subheading,
  .search-page .events-banner-section .banner-overlay .banner-content .events-banner-subheading {
    font-size: 16px;
  }
  .news-page .news-header-section,
  .news-page .events-header-section,
  .events-page .news-header-section,
  .events-page .events-header-section,
  .search-page .news-header-section,
  .search-page .events-header-section {
    padding: 80px 0 60px;
  }
  .news-page .news-header-section .news-heading,
  .news-page .news-header-section .events-heading,
  .news-page .events-header-section .news-heading,
  .news-page .events-header-section .events-heading,
  .events-page .news-header-section .news-heading,
  .events-page .news-header-section .events-heading,
  .events-page .events-header-section .news-heading,
  .events-page .events-header-section .events-heading,
  .search-page .news-header-section .news-heading,
  .search-page .news-header-section .events-heading,
  .search-page .events-header-section .news-heading,
  .search-page .events-header-section .events-heading {
    font-size: 40px;
  }
  .news-page .news-header-section .news-subheading,
  .news-page .news-header-section .events-subheading,
  .news-page .events-header-section .news-subheading,
  .news-page .events-header-section .events-subheading,
  .events-page .news-header-section .news-subheading,
  .events-page .news-header-section .events-subheading,
  .events-page .events-header-section .news-subheading,
  .events-page .events-header-section .events-subheading,
  .search-page .news-header-section .news-subheading,
  .search-page .news-header-section .events-subheading,
  .search-page .events-header-section .news-subheading,
  .search-page .events-header-section .events-subheading {
    font-size: 16px;
  }
  .news-page .news-posts-section .news-posts-grid,
  .news-page .news-posts-section .events-posts-grid,
  .news-page .events-posts-section .news-posts-grid,
  .news-page .events-posts-section .events-posts-grid,
  .events-page .news-posts-section .news-posts-grid,
  .events-page .news-posts-section .events-posts-grid,
  .events-page .events-posts-section .news-posts-grid,
  .events-page .events-posts-section .events-posts-grid,
  .search-page .news-posts-section .news-posts-grid,
  .search-page .news-posts-section .events-posts-grid,
  .search-page .events-posts-section .news-posts-grid,
  .search-page .events-posts-section .events-posts-grid {
    gap: 30px;
  }
  .news-page .news-posts-section .news-post-card,
  .news-page .news-posts-section .events-post-card,
  .news-page .events-posts-section .news-post-card,
  .news-page .events-posts-section .events-post-card,
  .events-page .news-posts-section .news-post-card,
  .events-page .news-posts-section .events-post-card,
  .events-page .events-posts-section .news-post-card,
  .events-page .events-posts-section .events-post-card,
  .search-page .news-posts-section .news-post-card,
  .search-page .news-posts-section .events-post-card,
  .search-page .events-posts-section .news-post-card,
  .search-page .events-posts-section .events-post-card {
    flex: 0 0 calc(50% - 15px);
  }
  .news-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
  .news-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
  .events-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
  .events-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
  .search-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
  .search-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card {
    width: 70px;
    height: 70px;
    padding: 6px;
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 768px) {
  .news-page .events-banner-section,
  .events-page .events-banner-section,
  .search-page .events-banner-section {
    min-height: 300px;
  }
  .news-page .events-banner-section .banner-overlay .banner-content,
  .events-page .events-banner-section .banner-overlay .banner-content,
  .search-page .events-banner-section .banner-overlay .banner-content {
    padding: 30px 15px;
  }
  .news-page .events-banner-section .banner-overlay .banner-content .events-banner-heading,
  .events-page .events-banner-section .banner-overlay .banner-content .events-banner-heading,
  .search-page .events-banner-section .banner-overlay .banner-content .events-banner-heading {
    font-size: 32px;
  }
  .news-page .events-banner-section .banner-overlay .banner-content .events-banner-subheading,
  .events-page .events-banner-section .banner-overlay .banner-content .events-banner-subheading,
  .search-page .events-banner-section .banner-overlay .banner-content .events-banner-subheading {
    font-size: 15px;
  }
  .news-page .news-header-section,
  .news-page .events-header-section,
  .events-page .news-header-section,
  .events-page .events-header-section,
  .search-page .news-header-section,
  .search-page .events-header-section {
    padding: 60px 0 50px;
  }
  .news-page .news-header-section .news-heading,
  .news-page .news-header-section .events-heading,
  .news-page .events-header-section .news-heading,
  .news-page .events-header-section .events-heading,
  .events-page .news-header-section .news-heading,
  .events-page .news-header-section .events-heading,
  .events-page .events-header-section .news-heading,
  .events-page .events-header-section .events-heading,
  .search-page .news-header-section .news-heading,
  .search-page .news-header-section .events-heading,
  .search-page .events-header-section .news-heading,
  .search-page .events-header-section .events-heading {
    font-size: 32px;
  }
  .news-page .news-header-section .news-subheading,
  .news-page .news-header-section .events-subheading,
  .news-page .events-header-section .news-subheading,
  .news-page .events-header-section .events-subheading,
  .events-page .news-header-section .news-subheading,
  .events-page .news-header-section .events-subheading,
  .events-page .events-header-section .news-subheading,
  .events-page .events-header-section .events-subheading,
  .search-page .news-header-section .news-subheading,
  .search-page .news-header-section .events-subheading,
  .search-page .events-header-section .news-subheading,
  .search-page .events-header-section .events-subheading {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .news-page .news-header-section .news-search,
  .news-page .news-header-section .events-search,
  .news-page .events-header-section .news-search,
  .news-page .events-header-section .events-search,
  .events-page .news-header-section .news-search,
  .events-page .news-header-section .events-search,
  .events-page .events-header-section .news-search,
  .events-page .events-header-section .events-search,
  .search-page .news-header-section .news-search,
  .search-page .news-header-section .events-search,
  .search-page .events-header-section .news-search,
  .search-page .events-header-section .events-search {
    margin-top: 35px;
  }
  .news-page .news-header-section .news-search .search-form,
  .news-page .news-header-section .events-search .search-form,
  .news-page .events-header-section .news-search .search-form,
  .news-page .events-header-section .events-search .search-form,
  .events-page .news-header-section .news-search .search-form,
  .events-page .news-header-section .events-search .search-form,
  .events-page .events-header-section .news-search .search-form,
  .events-page .events-header-section .events-search .search-form,
  .search-page .news-header-section .news-search .search-form,
  .search-page .news-header-section .events-search .search-form,
  .search-page .events-header-section .news-search .search-form,
  .search-page .events-header-section .events-search .search-form {
    max-width: 100%;
  }
  .news-page .news-header-section .news-search .search-form .search-input-wrapper,
  .news-page .news-header-section .events-search .search-form .search-input-wrapper,
  .news-page .events-header-section .news-search .search-form .search-input-wrapper,
  .news-page .events-header-section .events-search .search-form .search-input-wrapper,
  .events-page .news-header-section .news-search .search-form .search-input-wrapper,
  .events-page .news-header-section .events-search .search-form .search-input-wrapper,
  .events-page .events-header-section .news-search .search-form .search-input-wrapper,
  .events-page .events-header-section .events-search .search-form .search-input-wrapper,
  .search-page .news-header-section .news-search .search-form .search-input-wrapper,
  .search-page .news-header-section .events-search .search-form .search-input-wrapper,
  .search-page .events-header-section .news-search .search-form .search-input-wrapper,
  .search-page .events-header-section .events-search .search-form .search-input-wrapper {
    padding: 4px 5px 4px 20px;
  }
  .news-page .news-header-section .news-search .search-form .search-field,
  .news-page .news-header-section .events-search .search-form .search-field,
  .news-page .events-header-section .news-search .search-form .search-field,
  .news-page .events-header-section .events-search .search-form .search-field,
  .events-page .news-header-section .news-search .search-form .search-field,
  .events-page .news-header-section .events-search .search-form .search-field,
  .events-page .events-header-section .news-search .search-form .search-field,
  .events-page .events-header-section .events-search .search-form .search-field,
  .search-page .news-header-section .news-search .search-form .search-field,
  .search-page .news-header-section .events-search .search-form .search-field,
  .search-page .events-header-section .news-search .search-form .search-field,
  .search-page .events-header-section .events-search .search-form .search-field {
    padding: 9px 12px 9px 0;
    font-size: 15px;
  }
  .news-page .news-header-section .news-search .search-form .search-submit,
  .news-page .news-header-section .events-search .search-form .search-submit,
  .news-page .events-header-section .news-search .search-form .search-submit,
  .news-page .events-header-section .events-search .search-form .search-submit,
  .events-page .news-header-section .news-search .search-form .search-submit,
  .events-page .news-header-section .events-search .search-form .search-submit,
  .events-page .events-header-section .news-search .search-form .search-submit,
  .events-page .events-header-section .events-search .search-form .search-submit,
  .search-page .news-header-section .news-search .search-form .search-submit,
  .search-page .news-header-section .events-search .search-form .search-submit,
  .search-page .events-header-section .news-search .search-form .search-submit,
  .search-page .events-header-section .events-search .search-form .search-submit {
    width: 42px;
    height: 42px;
    margin-left: 4px;
  }
  .news-page .news-header-section .news-search .search-form .search-submit i,
  .news-page .news-header-section .events-search .search-form .search-submit i,
  .news-page .events-header-section .news-search .search-form .search-submit i,
  .news-page .events-header-section .events-search .search-form .search-submit i,
  .events-page .news-header-section .news-search .search-form .search-submit i,
  .events-page .news-header-section .events-search .search-form .search-submit i,
  .events-page .events-header-section .news-search .search-form .search-submit i,
  .events-page .events-header-section .events-search .search-form .search-submit i,
  .search-page .news-header-section .news-search .search-form .search-submit i,
  .search-page .news-header-section .events-search .search-form .search-submit i,
  .search-page .events-header-section .news-search .search-form .search-submit i,
  .search-page .events-header-section .events-search .search-form .search-submit i {
    font-size: 15px;
  }
  .news-page .news-posts-section,
  .news-page .events-posts-section,
  .events-page .news-posts-section,
  .events-page .events-posts-section,
  .search-page .news-posts-section,
  .search-page .events-posts-section {
    padding: 0 0 80px;
  }
  .news-page .news-posts-section .news-posts-grid,
  .news-page .news-posts-section .events-posts-grid,
  .news-page .events-posts-section .news-posts-grid,
  .news-page .events-posts-section .events-posts-grid,
  .events-page .news-posts-section .news-posts-grid,
  .events-page .news-posts-section .events-posts-grid,
  .events-page .events-posts-section .news-posts-grid,
  .events-page .events-posts-section .events-posts-grid,
  .search-page .news-posts-section .news-posts-grid,
  .search-page .news-posts-section .events-posts-grid,
  .search-page .events-posts-section .news-posts-grid,
  .search-page .events-posts-section .events-posts-grid {
    gap: 30px;
    padding: 0;
  }
  .news-page .news-posts-section.events-posts-section .events-posts-grid,
  .news-page .events-posts-section.events-posts-section .events-posts-grid,
  .events-page .news-posts-section.events-posts-section .events-posts-grid,
  .events-page .events-posts-section.events-posts-section .events-posts-grid,
  .search-page .news-posts-section.events-posts-section .events-posts-grid,
  .search-page .events-posts-section.events-posts-section .events-posts-grid {
    padding: 0;
  }
  .news-page .news-posts-section .news-post-card,
  .news-page .news-posts-section .events-post-card,
  .news-page .events-posts-section .news-post-card,
  .news-page .events-posts-section .events-post-card,
  .events-page .news-posts-section .news-post-card,
  .events-page .news-posts-section .events-post-card,
  .events-page .events-posts-section .news-post-card,
  .events-page .events-posts-section .events-post-card,
  .search-page .news-posts-section .news-post-card,
  .search-page .news-posts-section .events-post-card,
  .search-page .events-posts-section .news-post-card,
  .search-page .events-posts-section .events-post-card {
    flex: 0 0 100%;
  }
  .news-page .news-posts-section .news-post-card .post-content,
  .news-page .news-posts-section .events-post-card .post-content,
  .news-page .events-posts-section .news-post-card .post-content,
  .news-page .events-posts-section .events-post-card .post-content,
  .events-page .news-posts-section .news-post-card .post-content,
  .events-page .news-posts-section .events-post-card .post-content,
  .events-page .events-posts-section .news-post-card .post-content,
  .events-page .events-posts-section .events-post-card .post-content,
  .search-page .news-posts-section .news-post-card .post-content,
  .search-page .news-posts-section .events-post-card .post-content,
  .search-page .events-posts-section .news-post-card .post-content,
  .search-page .events-posts-section .events-post-card .post-content {
    padding: 20px;
  }
  .news-page .news-posts-section .news-post-card .post-title a,
  .news-page .news-posts-section .events-post-card .post-title a,
  .news-page .events-posts-section .news-post-card .post-title a,
  .news-page .events-posts-section .events-post-card .post-title a,
  .events-page .news-posts-section .news-post-card .post-title a,
  .events-page .news-posts-section .events-post-card .post-title a,
  .events-page .events-posts-section .news-post-card .post-title a,
  .events-page .events-posts-section .events-post-card .post-title a,
  .search-page .news-posts-section .news-post-card .post-title a,
  .search-page .news-posts-section .events-post-card .post-title a,
  .search-page .events-posts-section .news-post-card .post-title a,
  .search-page .events-posts-section .events-post-card .post-title a {
    font-size: 18px;
  }
  .news-page .news-posts-section .news-post-card .post-excerpt,
  .news-page .news-posts-section .events-post-card .post-excerpt,
  .news-page .events-posts-section .news-post-card .post-excerpt,
  .news-page .events-posts-section .events-post-card .post-excerpt,
  .events-page .news-posts-section .news-post-card .post-excerpt,
  .events-page .news-posts-section .events-post-card .post-excerpt,
  .events-page .events-posts-section .news-post-card .post-excerpt,
  .events-page .events-posts-section .events-post-card .post-excerpt,
  .search-page .news-posts-section .news-post-card .post-excerpt,
  .search-page .news-posts-section .events-post-card .post-excerpt,
  .search-page .events-posts-section .news-post-card .post-excerpt,
  .search-page .events-posts-section .events-post-card .post-excerpt {
    font-size: 13px;
  }
  .news-page .news-posts-section .news-post-card .event-date-badge,
  .news-page .news-posts-section .events-post-card .event-date-badge,
  .news-page .events-posts-section .news-post-card .event-date-badge,
  .news-page .events-posts-section .events-post-card .event-date-badge,
  .events-page .news-posts-section .news-post-card .event-date-badge,
  .events-page .news-posts-section .events-post-card .event-date-badge,
  .events-page .events-posts-section .news-post-card .event-date-badge,
  .events-page .events-posts-section .events-post-card .event-date-badge,
  .search-page .news-posts-section .news-post-card .event-date-badge,
  .search-page .news-posts-section .events-post-card .event-date-badge,
  .search-page .events-posts-section .news-post-card .event-date-badge,
  .search-page .events-posts-section .events-post-card .event-date-badge {
    padding: 8px 14px;
    gap: 6px;
    margin-bottom: 10px;
  }
  .news-page .news-posts-section .news-post-card .event-date-badge .event-date-day,
  .news-page .news-posts-section .events-post-card .event-date-badge .event-date-day,
  .news-page .events-posts-section .news-post-card .event-date-badge .event-date-day,
  .news-page .events-posts-section .events-post-card .event-date-badge .event-date-day,
  .events-page .news-posts-section .news-post-card .event-date-badge .event-date-day,
  .events-page .news-posts-section .events-post-card .event-date-badge .event-date-day,
  .events-page .events-posts-section .news-post-card .event-date-badge .event-date-day,
  .events-page .events-posts-section .events-post-card .event-date-badge .event-date-day,
  .search-page .news-posts-section .news-post-card .event-date-badge .event-date-day,
  .search-page .news-posts-section .events-post-card .event-date-badge .event-date-day,
  .search-page .events-posts-section .news-post-card .event-date-badge .event-date-day,
  .search-page .events-posts-section .events-post-card .event-date-badge .event-date-day {
    font-size: 18px;
  }
  .news-page .news-posts-section .news-post-card .event-date-badge .event-date-month,
  .news-page .news-posts-section .events-post-card .event-date-badge .event-date-month,
  .news-page .events-posts-section .news-post-card .event-date-badge .event-date-month,
  .news-page .events-posts-section .events-post-card .event-date-badge .event-date-month,
  .events-page .news-posts-section .news-post-card .event-date-badge .event-date-month,
  .events-page .news-posts-section .events-post-card .event-date-badge .event-date-month,
  .events-page .events-posts-section .news-post-card .event-date-badge .event-date-month,
  .events-page .events-posts-section .events-post-card .event-date-badge .event-date-month,
  .search-page .news-posts-section .news-post-card .event-date-badge .event-date-month,
  .search-page .news-posts-section .events-post-card .event-date-badge .event-date-month,
  .search-page .events-posts-section .news-post-card .event-date-badge .event-date-month,
  .search-page .events-posts-section .events-post-card .event-date-badge .event-date-month {
    font-size: 11px;
  }
  .news-page .news-posts-section .news-post-card .event-date-badge .event-date-year,
  .news-page .news-posts-section .events-post-card .event-date-badge .event-date-year,
  .news-page .events-posts-section .news-post-card .event-date-badge .event-date-year,
  .news-page .events-posts-section .events-post-card .event-date-badge .event-date-year,
  .events-page .news-posts-section .news-post-card .event-date-badge .event-date-year,
  .events-page .news-posts-section .events-post-card .event-date-badge .event-date-year,
  .events-page .events-posts-section .news-post-card .event-date-badge .event-date-year,
  .events-page .events-posts-section .events-post-card .event-date-badge .event-date-year,
  .search-page .news-posts-section .news-post-card .event-date-badge .event-date-year,
  .search-page .news-posts-section .events-post-card .event-date-badge .event-date-year,
  .search-page .events-posts-section .news-post-card .event-date-badge .event-date-year,
  .search-page .events-posts-section .events-post-card .event-date-badge .event-date-year {
    font-size: 11px;
  }
  .news-page .news-posts-section .news-post-card .event-date-badge .event-date-day::after,
  .news-page .news-posts-section .news-post-card .event-date-badge .event-date-month::after,
  .news-page .news-posts-section .events-post-card .event-date-badge .event-date-day::after,
  .news-page .news-posts-section .events-post-card .event-date-badge .event-date-month::after,
  .news-page .events-posts-section .news-post-card .event-date-badge .event-date-day::after,
  .news-page .events-posts-section .news-post-card .event-date-badge .event-date-month::after,
  .news-page .events-posts-section .events-post-card .event-date-badge .event-date-day::after,
  .news-page .events-posts-section .events-post-card .event-date-badge .event-date-month::after,
  .events-page .news-posts-section .news-post-card .event-date-badge .event-date-day::after,
  .events-page .news-posts-section .news-post-card .event-date-badge .event-date-month::after,
  .events-page .news-posts-section .events-post-card .event-date-badge .event-date-day::after,
  .events-page .news-posts-section .events-post-card .event-date-badge .event-date-month::after,
  .events-page .events-posts-section .news-post-card .event-date-badge .event-date-day::after,
  .events-page .events-posts-section .news-post-card .event-date-badge .event-date-month::after,
  .events-page .events-posts-section .events-post-card .event-date-badge .event-date-day::after,
  .events-page .events-posts-section .events-post-card .event-date-badge .event-date-month::after,
  .search-page .news-posts-section .news-post-card .event-date-badge .event-date-day::after,
  .search-page .news-posts-section .news-post-card .event-date-badge .event-date-month::after,
  .search-page .news-posts-section .events-post-card .event-date-badge .event-date-day::after,
  .search-page .news-posts-section .events-post-card .event-date-badge .event-date-month::after,
  .search-page .events-posts-section .news-post-card .event-date-badge .event-date-day::after,
  .search-page .events-posts-section .news-post-card .event-date-badge .event-date-month::after,
  .search-page .events-posts-section .events-post-card .event-date-badge .event-date-day::after,
  .search-page .events-posts-section .events-post-card .event-date-badge .event-date-month::after {
    height: 12px;
    margin-left: 6px;
  }
  .news-page .news-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
  .news-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
  .news-page .events-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
  .news-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
  .events-page .news-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
  .events-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
  .events-page .events-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
  .events-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
  .search-page .news-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
  .search-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
  .search-page .events-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
  .search-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card {
    width: 60px;
    height: 60px;
    padding: 5px;
    top: 8px;
    right: 8px;
  }
}
@media (max-width: 480px) {
  .news-page .events-banner-section,
  .events-page .events-banner-section,
  .search-page .events-banner-section {
    min-height: 250px;
  }
  .news-page .events-banner-section .banner-overlay .banner-content,
  .events-page .events-banner-section .banner-overlay .banner-content,
  .search-page .events-banner-section .banner-overlay .banner-content {
    padding: 25px 15px;
  }
  .news-page .events-banner-section .banner-overlay .banner-content .events-banner-heading,
  .events-page .events-banner-section .banner-overlay .banner-content .events-banner-heading,
  .search-page .events-banner-section .banner-overlay .banner-content .events-banner-heading {
    font-size: 28px;
  }
  .news-page .events-banner-section .banner-overlay .banner-content .events-banner-subheading,
  .events-page .events-banner-section .banner-overlay .banner-content .events-banner-subheading,
  .search-page .events-banner-section .banner-overlay .banner-content .events-banner-subheading {
    font-size: 14px;
  }
  .news-page .news-header-section,
  .news-page .events-header-section,
  .events-page .news-header-section,
  .events-page .events-header-section,
  .search-page .news-header-section,
  .search-page .events-header-section {
    padding: 40px 0 40px;
  }
  .news-page .news-header-section .news-heading,
  .news-page .news-header-section .events-heading,
  .news-page .events-header-section .news-heading,
  .news-page .events-header-section .events-heading,
  .events-page .news-header-section .news-heading,
  .events-page .news-header-section .events-heading,
  .events-page .events-header-section .news-heading,
  .events-page .events-header-section .events-heading,
  .search-page .news-header-section .news-heading,
  .search-page .news-header-section .events-heading,
  .search-page .events-header-section .news-heading,
  .search-page .events-header-section .events-heading {
    font-size: 28px;
    line-height: 1.3;
  }
  .news-page .news-header-section .news-subheading,
  .news-page .news-header-section .events-subheading,
  .news-page .events-header-section .news-subheading,
  .news-page .events-header-section .events-subheading,
  .events-page .news-header-section .news-subheading,
  .events-page .news-header-section .events-subheading,
  .events-page .events-header-section .news-subheading,
  .events-page .events-header-section .events-subheading,
  .search-page .news-header-section .news-subheading,
  .search-page .news-header-section .events-subheading,
  .search-page .events-header-section .news-subheading,
  .search-page .events-header-section .events-subheading {
    font-size: 14px;
  }
  .news-page .news-posts-section,
  .news-page .events-posts-section,
  .events-page .news-posts-section,
  .events-page .events-posts-section,
  .search-page .news-posts-section,
  .search-page .events-posts-section {
    padding: 0 0 60px;
  }
  .news-page .news-posts-section .news-posts-grid,
  .news-page .news-posts-section .events-posts-grid,
  .news-page .events-posts-section .news-posts-grid,
  .news-page .events-posts-section .events-posts-grid,
  .events-page .news-posts-section .news-posts-grid,
  .events-page .news-posts-section .events-posts-grid,
  .events-page .events-posts-section .news-posts-grid,
  .events-page .events-posts-section .events-posts-grid,
  .search-page .news-posts-section .news-posts-grid,
  .search-page .news-posts-section .events-posts-grid,
  .search-page .events-posts-section .news-posts-grid,
  .search-page .events-posts-section .events-posts-grid {
    gap: 20px;
    padding: 0;
  }
  .news-page .news-posts-section.events-posts-section .events-posts-grid,
  .news-page .events-posts-section.events-posts-section .events-posts-grid,
  .events-page .news-posts-section.events-posts-section .events-posts-grid,
  .events-page .events-posts-section.events-posts-section .events-posts-grid,
  .search-page .news-posts-section.events-posts-section .events-posts-grid,
  .search-page .events-posts-section.events-posts-section .events-posts-grid {
    padding: 0;
  }
  .news-page .news-posts-section .news-post-card,
  .news-page .news-posts-section .events-post-card,
  .news-page .events-posts-section .news-post-card,
  .news-page .events-posts-section .events-post-card,
  .events-page .news-posts-section .news-post-card,
  .events-page .news-posts-section .events-post-card,
  .events-page .events-posts-section .news-post-card,
  .events-page .events-posts-section .events-post-card,
  .search-page .news-posts-section .news-post-card,
  .search-page .news-posts-section .events-post-card,
  .search-page .events-posts-section .news-post-card,
  .search-page .events-posts-section .events-post-card {
    flex: 0 0 100%;
  }
  .news-page .news-posts-section .news-post-card .post-thumbnail,
  .news-page .news-posts-section .events-post-card .post-thumbnail,
  .news-page .events-posts-section .news-post-card .post-thumbnail,
  .news-page .events-posts-section .events-post-card .post-thumbnail,
  .events-page .news-posts-section .news-post-card .post-thumbnail,
  .events-page .news-posts-section .events-post-card .post-thumbnail,
  .events-page .events-posts-section .news-post-card .post-thumbnail,
  .events-page .events-posts-section .events-post-card .post-thumbnail,
  .search-page .news-posts-section .news-post-card .post-thumbnail,
  .search-page .news-posts-section .events-post-card .post-thumbnail,
  .search-page .events-posts-section .news-post-card .post-thumbnail,
  .search-page .events-posts-section .events-post-card .post-thumbnail {
    height: 180px;
  }
  .news-page .news-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
  .news-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
  .news-page .events-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
  .news-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
  .events-page .news-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
  .events-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
  .events-page .events-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
  .events-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
  .search-page .news-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
  .search-page .news-posts-section .events-post-card .post-thumbnail .event-venue-logo-card,
  .search-page .events-posts-section .news-post-card .post-thumbnail .event-venue-logo-card,
  .search-page .events-posts-section .events-post-card .post-thumbnail .event-venue-logo-card {
    width: 50px;
    height: 50px;
    padding: 4px;
    top: 6px;
    right: 6px;
  }
  .news-page .news-posts-section .news-post-card .post-content,
  .news-page .news-posts-section .events-post-card .post-content,
  .news-page .events-posts-section .news-post-card .post-content,
  .news-page .events-posts-section .events-post-card .post-content,
  .events-page .news-posts-section .news-post-card .post-content,
  .events-page .news-posts-section .events-post-card .post-content,
  .events-page .events-posts-section .news-post-card .post-content,
  .events-page .events-posts-section .events-post-card .post-content,
  .search-page .news-posts-section .news-post-card .post-content,
  .search-page .news-posts-section .events-post-card .post-content,
  .search-page .events-posts-section .news-post-card .post-content,
  .search-page .events-posts-section .events-post-card .post-content {
    padding: 18px;
  }
  .news-page .news-posts-section .news-post-card .post-title a,
  .news-page .news-posts-section .events-post-card .post-title a,
  .news-page .events-posts-section .news-post-card .post-title a,
  .news-page .events-posts-section .events-post-card .post-title a,
  .events-page .news-posts-section .news-post-card .post-title a,
  .events-page .news-posts-section .events-post-card .post-title a,
  .events-page .events-posts-section .news-post-card .post-title a,
  .events-page .events-posts-section .events-post-card .post-title a,
  .search-page .news-posts-section .news-post-card .post-title a,
  .search-page .news-posts-section .events-post-card .post-title a,
  .search-page .events-posts-section .news-post-card .post-title a,
  .search-page .events-posts-section .events-post-card .post-title a {
    font-size: 16px;
  }
  .news-page .news-posts-section .news-post-card .event-date-badge,
  .news-page .news-posts-section .events-post-card .event-date-badge,
  .news-page .events-posts-section .news-post-card .event-date-badge,
  .news-page .events-posts-section .events-post-card .event-date-badge,
  .events-page .news-posts-section .news-post-card .event-date-badge,
  .events-page .news-posts-section .events-post-card .event-date-badge,
  .events-page .events-posts-section .news-post-card .event-date-badge,
  .events-page .events-posts-section .events-post-card .event-date-badge,
  .search-page .news-posts-section .news-post-card .event-date-badge,
  .search-page .news-posts-section .events-post-card .event-date-badge,
  .search-page .events-posts-section .news-post-card .event-date-badge,
  .search-page .events-posts-section .events-post-card .event-date-badge {
    padding: 7px 12px;
    gap: 5px;
    margin-bottom: 10px;
  }
  .news-page .news-posts-section .news-post-card .event-date-badge .event-date-day,
  .news-page .news-posts-section .events-post-card .event-date-badge .event-date-day,
  .news-page .events-posts-section .news-post-card .event-date-badge .event-date-day,
  .news-page .events-posts-section .events-post-card .event-date-badge .event-date-day,
  .events-page .news-posts-section .news-post-card .event-date-badge .event-date-day,
  .events-page .news-posts-section .events-post-card .event-date-badge .event-date-day,
  .events-page .events-posts-section .news-post-card .event-date-badge .event-date-day,
  .events-page .events-posts-section .events-post-card .event-date-badge .event-date-day,
  .search-page .news-posts-section .news-post-card .event-date-badge .event-date-day,
  .search-page .news-posts-section .events-post-card .event-date-badge .event-date-day,
  .search-page .events-posts-section .news-post-card .event-date-badge .event-date-day,
  .search-page .events-posts-section .events-post-card .event-date-badge .event-date-day {
    font-size: 16px;
  }
  .news-page .news-posts-section .news-post-card .event-date-badge .event-date-month,
  .news-page .news-posts-section .events-post-card .event-date-badge .event-date-month,
  .news-page .events-posts-section .news-post-card .event-date-badge .event-date-month,
  .news-page .events-posts-section .events-post-card .event-date-badge .event-date-month,
  .events-page .news-posts-section .news-post-card .event-date-badge .event-date-month,
  .events-page .news-posts-section .events-post-card .event-date-badge .event-date-month,
  .events-page .events-posts-section .news-post-card .event-date-badge .event-date-month,
  .events-page .events-posts-section .events-post-card .event-date-badge .event-date-month,
  .search-page .news-posts-section .news-post-card .event-date-badge .event-date-month,
  .search-page .news-posts-section .events-post-card .event-date-badge .event-date-month,
  .search-page .events-posts-section .news-post-card .event-date-badge .event-date-month,
  .search-page .events-posts-section .events-post-card .event-date-badge .event-date-month {
    font-size: 10px;
  }
  .news-page .news-posts-section .news-post-card .event-date-badge .event-date-year,
  .news-page .news-posts-section .events-post-card .event-date-badge .event-date-year,
  .news-page .events-posts-section .news-post-card .event-date-badge .event-date-year,
  .news-page .events-posts-section .events-post-card .event-date-badge .event-date-year,
  .events-page .news-posts-section .news-post-card .event-date-badge .event-date-year,
  .events-page .news-posts-section .events-post-card .event-date-badge .event-date-year,
  .events-page .events-posts-section .news-post-card .event-date-badge .event-date-year,
  .events-page .events-posts-section .events-post-card .event-date-badge .event-date-year,
  .search-page .news-posts-section .news-post-card .event-date-badge .event-date-year,
  .search-page .news-posts-section .events-post-card .event-date-badge .event-date-year,
  .search-page .events-posts-section .news-post-card .event-date-badge .event-date-year,
  .search-page .events-posts-section .events-post-card .event-date-badge .event-date-year {
    font-size: 10px;
  }
  .news-page .news-posts-section .news-post-card .event-date-badge .event-date-day::after,
  .news-page .news-posts-section .news-post-card .event-date-badge .event-date-month::after,
  .news-page .news-posts-section .events-post-card .event-date-badge .event-date-day::after,
  .news-page .news-posts-section .events-post-card .event-date-badge .event-date-month::after,
  .news-page .events-posts-section .news-post-card .event-date-badge .event-date-day::after,
  .news-page .events-posts-section .news-post-card .event-date-badge .event-date-month::after,
  .news-page .events-posts-section .events-post-card .event-date-badge .event-date-day::after,
  .news-page .events-posts-section .events-post-card .event-date-badge .event-date-month::after,
  .events-page .news-posts-section .news-post-card .event-date-badge .event-date-day::after,
  .events-page .news-posts-section .news-post-card .event-date-badge .event-date-month::after,
  .events-page .news-posts-section .events-post-card .event-date-badge .event-date-day::after,
  .events-page .news-posts-section .events-post-card .event-date-badge .event-date-month::after,
  .events-page .events-posts-section .news-post-card .event-date-badge .event-date-day::after,
  .events-page .events-posts-section .news-post-card .event-date-badge .event-date-month::after,
  .events-page .events-posts-section .events-post-card .event-date-badge .event-date-day::after,
  .events-page .events-posts-section .events-post-card .event-date-badge .event-date-month::after,
  .search-page .news-posts-section .news-post-card .event-date-badge .event-date-day::after,
  .search-page .news-posts-section .news-post-card .event-date-badge .event-date-month::after,
  .search-page .news-posts-section .events-post-card .event-date-badge .event-date-day::after,
  .search-page .news-posts-section .events-post-card .event-date-badge .event-date-month::after,
  .search-page .events-posts-section .news-post-card .event-date-badge .event-date-day::after,
  .search-page .events-posts-section .news-post-card .event-date-badge .event-date-month::after,
  .search-page .events-posts-section .events-post-card .event-date-badge .event-date-day::after,
  .search-page .events-posts-section .events-post-card .event-date-badge .event-date-month::after {
    height: 11px;
    margin-left: 5px;
  }
  .news-page .news-posts-section .news-post-card .post-excerpt,
  .news-page .news-posts-section .events-post-card .post-excerpt,
  .news-page .events-posts-section .news-post-card .post-excerpt,
  .news-page .events-posts-section .events-post-card .post-excerpt,
  .events-page .news-posts-section .news-post-card .post-excerpt,
  .events-page .news-posts-section .events-post-card .post-excerpt,
  .events-page .events-posts-section .news-post-card .post-excerpt,
  .events-page .events-posts-section .events-post-card .post-excerpt,
  .search-page .news-posts-section .news-post-card .post-excerpt,
  .search-page .news-posts-section .events-post-card .post-excerpt,
  .search-page .events-posts-section .news-post-card .post-excerpt,
  .search-page .events-posts-section .events-post-card .post-excerpt {
    font-size: 13px;
  }
  .news-page .news-posts-section .news-post-card .post-categories .category-tag,
  .news-page .news-posts-section .events-post-card .post-categories .category-tag,
  .news-page .events-posts-section .news-post-card .post-categories .category-tag,
  .news-page .events-posts-section .events-post-card .post-categories .category-tag,
  .events-page .news-posts-section .news-post-card .post-categories .category-tag,
  .events-page .news-posts-section .events-post-card .post-categories .category-tag,
  .events-page .events-posts-section .news-post-card .post-categories .category-tag,
  .events-page .events-posts-section .events-post-card .post-categories .category-tag,
  .search-page .news-posts-section .news-post-card .post-categories .category-tag,
  .search-page .news-posts-section .events-post-card .post-categories .category-tag,
  .search-page .events-posts-section .news-post-card .post-categories .category-tag,
  .search-page .events-posts-section .events-post-card .post-categories .category-tag {
    font-size: 11px;
    padding: 5px 10px;
  }
  .news-page .news-posts-section .news-post-card .read-more-btn,
  .news-page .news-posts-section .events-post-card .read-more-btn,
  .news-page .events-posts-section .news-post-card .read-more-btn,
  .news-page .events-posts-section .events-post-card .read-more-btn,
  .events-page .news-posts-section .news-post-card .read-more-btn,
  .events-page .news-posts-section .events-post-card .read-more-btn,
  .events-page .events-posts-section .news-post-card .read-more-btn,
  .events-page .events-posts-section .events-post-card .read-more-btn,
  .search-page .news-posts-section .news-post-card .read-more-btn,
  .search-page .news-posts-section .events-post-card .read-more-btn,
  .search-page .events-posts-section .news-post-card .read-more-btn,
  .search-page .events-posts-section .events-post-card .read-more-btn {
    font-size: 13px;
    padding: 12px 16px;
  }
  .news-page .news-posts-section .news-pagination,
  .news-page .news-posts-section .events-pagination,
  .news-page .events-posts-section .news-pagination,
  .news-page .events-posts-section .events-pagination,
  .events-page .news-posts-section .news-pagination,
  .events-page .news-posts-section .events-pagination,
  .events-page .events-posts-section .news-pagination,
  .events-page .events-posts-section .events-pagination,
  .search-page .news-posts-section .news-pagination,
  .search-page .news-posts-section .events-pagination,
  .search-page .events-posts-section .news-pagination,
  .search-page .events-posts-section .events-pagination {
    margin-top: 60px;
    margin-bottom: 30px;
  }
  .news-page .news-posts-section .news-pagination .page-numbers,
  .news-page .news-posts-section .events-pagination .page-numbers,
  .news-page .events-posts-section .news-pagination .page-numbers,
  .news-page .events-posts-section .events-pagination .page-numbers,
  .events-page .news-posts-section .news-pagination .page-numbers,
  .events-page .news-posts-section .events-pagination .page-numbers,
  .events-page .events-posts-section .news-pagination .page-numbers,
  .events-page .events-posts-section .events-pagination .page-numbers,
  .search-page .news-posts-section .news-pagination .page-numbers,
  .search-page .news-posts-section .events-pagination .page-numbers,
  .search-page .events-posts-section .news-pagination .page-numbers,
  .search-page .events-posts-section .events-pagination .page-numbers {
    gap: 14px;
  }
  .news-page .news-posts-section .news-pagination .page-numbers a, .news-page .news-posts-section .news-pagination .page-numbers span,
  .news-page .news-posts-section .events-pagination .page-numbers a,
  .news-page .news-posts-section .events-pagination .page-numbers span,
  .news-page .events-posts-section .news-pagination .page-numbers a,
  .news-page .events-posts-section .news-pagination .page-numbers span,
  .news-page .events-posts-section .events-pagination .page-numbers a,
  .news-page .events-posts-section .events-pagination .page-numbers span,
  .events-page .news-posts-section .news-pagination .page-numbers a,
  .events-page .news-posts-section .news-pagination .page-numbers span,
  .events-page .news-posts-section .events-pagination .page-numbers a,
  .events-page .news-posts-section .events-pagination .page-numbers span,
  .events-page .events-posts-section .news-pagination .page-numbers a,
  .events-page .events-posts-section .news-pagination .page-numbers span,
  .events-page .events-posts-section .events-pagination .page-numbers a,
  .events-page .events-posts-section .events-pagination .page-numbers span,
  .search-page .news-posts-section .news-pagination .page-numbers a,
  .search-page .news-posts-section .news-pagination .page-numbers span,
  .search-page .news-posts-section .events-pagination .page-numbers a,
  .search-page .news-posts-section .events-pagination .page-numbers span,
  .search-page .events-posts-section .news-pagination .page-numbers a,
  .search-page .events-posts-section .news-pagination .page-numbers span,
  .search-page .events-posts-section .events-pagination .page-numbers a,
  .search-page .events-posts-section .events-pagination .page-numbers span {
    padding: 12px 16px;
    font-size: 14px;
  }
  .news-page .news-posts-section .news-pagination .page-numbers .current,
  .news-page .news-posts-section .news-pagination .page-numbers span.current,
  .news-page .news-posts-section .events-pagination .page-numbers .current,
  .news-page .news-posts-section .events-pagination .page-numbers span.current,
  .news-page .events-posts-section .news-pagination .page-numbers .current,
  .news-page .events-posts-section .news-pagination .page-numbers span.current,
  .news-page .events-posts-section .events-pagination .page-numbers .current,
  .news-page .events-posts-section .events-pagination .page-numbers span.current,
  .events-page .news-posts-section .news-pagination .page-numbers .current,
  .events-page .news-posts-section .news-pagination .page-numbers span.current,
  .events-page .news-posts-section .events-pagination .page-numbers .current,
  .events-page .news-posts-section .events-pagination .page-numbers span.current,
  .events-page .events-posts-section .news-pagination .page-numbers .current,
  .events-page .events-posts-section .news-pagination .page-numbers span.current,
  .events-page .events-posts-section .events-pagination .page-numbers .current,
  .events-page .events-posts-section .events-pagination .page-numbers span.current,
  .search-page .news-posts-section .news-pagination .page-numbers .current,
  .search-page .news-posts-section .news-pagination .page-numbers span.current,
  .search-page .news-posts-section .events-pagination .page-numbers .current,
  .search-page .news-posts-section .events-pagination .page-numbers span.current,
  .search-page .events-posts-section .news-pagination .page-numbers .current,
  .search-page .events-posts-section .news-pagination .page-numbers span.current,
  .search-page .events-posts-section .events-pagination .page-numbers .current,
  .search-page .events-posts-section .events-pagination .page-numbers span.current {
    background: var(--tf-purple) !important;
    border-color: var(--tf-purple) !important;
    color: #fff !important;
    padding: 12px 16px;
  }
}

/**
 * Together Forever - Single Post Styles
 * 
 * Styles for single blog post pages
 * 
 * @package Together_Forever
 * @since 1.0.0
 */
/* ==========================================================================
   Single Post Template Styles
   ========================================================================== */
.single-post .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.single-post .single-post-hero {
  position: relative;
  min-height: 550px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-post .single-post-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(92, 36, 131, 0.75) 0%, rgba(149, 27, 129, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-post .single-post-hero .hero-overlay .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.single-post .single-post-hero .hero-overlay .hero-content {
  text-align: center;
  padding: 80px 20px;
}
.single-post .single-post-hero .hero-overlay .hero-content .single-post-title {
  font-family: var(--tf-avenir);
  font-size: 52px;
  font-weight: 700;
  color: white;
  margin: 0 auto 32px;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  letter-spacing: -0.5px;
}
.single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row .back-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--tf-purple);
  border: none;
  border-radius: 50px;
  padding: 12px 26px;
  font-family: var(--tf-avenir);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row .back-button svg {
  width: 16px;
  height: 16px;
}
.single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row .back-button:hover {
  background: var(--tf-pink);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row .post-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row .post-categories .category-tag {
  display: flex;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--tf-purple);
  text-decoration: none;
  font-family: var(--tf-avenir);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row .post-categories .category-tag:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.single-post .single-post-header {
  background: linear-gradient(135deg, var(--tf-purple) 0%, var(--tf-pink) 100%);
  padding: 80px 0;
}
.single-post .single-post-header .header-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.single-post .single-post-header .header-content .back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--tf-purple);
  border: none;
  border-radius: 50px;
  padding: 12px 26px;
  font-family: var(--tf-avenir);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.single-post .single-post-header .header-content .back-button svg {
  width: 16px;
  height: 16px;
}
.single-post .single-post-header .header-content .back-button:hover {
  background: var(--tf-pink);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.single-post .single-post-header .header-content .single-post-title-header {
  font-family: var(--tf-avenir);
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin: 0 0 28px 0;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}
.single-post .single-post-header .header-content .post-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.single-post .single-post-header .header-content .post-categories .category-tag {
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--tf-purple);
  text-decoration: none;
  font-family: var(--tf-avenir);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.single-post .single-post-header .header-content .post-categories .category-tag:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.single-post .single-post-content {
  background: #f8f6ff;
  padding: 100px 0 120px;
}
.single-post .single-post-content .single-post-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}
.single-post .single-post-content .single-post-wrapper .single-post-main {
  background: white;
  border-radius: 16px;
  padding: 60px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header {
  margin-bottom: 32px;
  padding-bottom: 0;
  border-bottom: none;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--tf-purple) 0%, var(--tf-pink) 100%);
  border-radius: 10px;
  padding: 10px 18px;
  margin-bottom: 24px;
  box-shadow: 0 3px 10px rgba(92, 36, 131, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(92, 36, 131, 0.3);
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-day {
  font-family: var(--tf-avenir);
  font-size: 20px;
  font-weight: 700;
  color: white;
  line-height: 1;
  letter-spacing: -0.3px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-month {
  font-family: var(--tf-avenir);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-year {
  font-family: var(--tf-avenir);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-day::after,
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-month::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
  margin-left: 8px;
  vertical-align: middle;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-year::after {
  display: none;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .post-date {
  display: none;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .single-post-title-fallback {
  font-family: var(--tf-avenir);
  font-size: 42px;
  font-weight: 700;
  color: var(--tf-purple);
  margin: 0 0 30px 0;
  line-height: 1.2;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text {
  font-family: var(--tf-avenir);
  font-size: 19px;
  line-height: 1.85;
  color: var(--tf-gray);
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text p {
  margin-bottom: 24px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text p:last-child {
  margin-bottom: 0;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h1, .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h2, .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h3, .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h4, .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h5, .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h6 {
  font-family: var(--tf-avenir);
  color: var(--tf-purple);
  margin-top: 48px;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h1 {
  font-size: 36px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h2 {
  font-size: 32px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h3 {
  font-size: 28px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h4 {
  font-size: 24px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h5 {
  font-size: 20px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h6 {
  font-size: 18px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text a {
  color: var(--tf-purple);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text a:hover {
  color: var(--tf-pink);
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 36px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text blockquote {
  border-left: 4px solid var(--tf-purple);
  padding: 24px 32px;
  margin: 36px 0;
  background: #f8f6ff;
  border-radius: 12px;
  font-style: italic;
  color: var(--tf-gray);
  font-size: 18px;
  line-height: 1.7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text ul, .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text ol {
  margin: 24px 0;
  padding-left: 32px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text ul li, .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text ol li {
  margin-bottom: 12px;
  line-height: 1.85;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text code {
  background: #f0e6f5;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 16px;
  color: var(--tf-purple);
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text pre {
  background: var(--tf-gray);
  color: white;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 30px 0;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text pre code {
  background: transparent;
  color: white;
  padding: 0;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-tags {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #f0e6f5;
  font-family: var(--tf-avenir);
  font-size: 16px;
  color: var(--tf-gray);
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-tags strong {
  color: var(--tf-purple);
  font-weight: 600;
  margin-right: 8px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-tags a {
  color: var(--tf-purple);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-right: 8px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-tags a:hover {
  color: var(--tf-pink);
  text-decoration: underline;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar {
  position: sticky;
  top: 120px;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content {
  background: white;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .sidebar-title {
  font-family: var(--tf-avenir);
  font-size: 24px;
  font-weight: 700;
  color: var(--tf-purple);
  margin: 0 0 28px 0;
  letter-spacing: -0.3px;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f0e6f5;
  transition: all 0.3s ease;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card:hover {
  transform: translateX(4px);
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-thumbnail {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
  background: #f0f0f0;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-thumbnail a {
  display: block;
  width: 100%;
  height: 100%;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-thumbnail .related-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-thumbnail .related-post-image:hover {
  transform: scale(1.08);
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .related-post-categories {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .related-post-categories .category-tag {
  padding: 6px 10px;
  border-radius: 47px;
  background: #f0e6f5;
  color: var(--tf-purple);
  text-decoration: none;
  font-family: var(--tf-avenir);
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .related-post-categories .category-tag:hover {
  background: #e6d4ed;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .related-post-title {
  margin: 0 0 12px 0;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .related-post-title a {
  font-family: var(--tf-avenir);
  font-size: 17px;
  font-weight: 600;
  color: var(--tf-gray);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
  letter-spacing: -0.2px;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .related-post-title a:hover {
  color: var(--tf-purple);
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .related-post-excerpt {
  font-family: var(--tf-avenir);
  font-size: 15px;
  color: var(--tf-gray);
  line-height: 1.65;
  margin: 0 0 14px 0;
  opacity: 0.85;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .read-more-btn {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 50px;
  background: var(--tf-purple);
  color: white;
  text-decoration: none;
  font-family: var(--tf-avenir);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.2px;
  box-shadow: 0 2px 6px rgba(92, 36, 131, 0.2);
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .read-more-btn:hover {
  background: var(--tf-pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(92, 36, 131, 0.3);
  color: white;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .no-related-posts {
  font-family: var(--tf-avenir);
  font-size: 14px;
  color: var(--tf-gray);
  text-align: center;
  padding: 20px 0;
}
@media (max-width: 1200px) {
  .single-post .single-post-content {
    padding: 80px 0 100px;
  }
  .single-post .single-post-content .single-post-wrapper {
    gap: 48px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main {
    padding: 48px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .single-post .single-post-hero {
    min-height: 450px;
  }
  .single-post .single-post-hero .hero-overlay .hero-content {
    padding: 60px 20px;
  }
  .single-post .single-post-hero .hero-overlay .hero-content .single-post-title {
    font-size: 40px;
    margin-bottom: 28px;
  }
  .single-post .single-post-header {
    padding: 60px 0;
  }
  .single-post .single-post-header .header-content .single-post-title-header {
    font-size: 40px;
    margin-bottom: 24px;
  }
  .single-post .single-post-content {
    padding: 80px 0 100px;
  }
  .single-post .single-post-content .single-post-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-sidebar {
    position: static;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main {
    padding: 48px 40px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header {
    margin-bottom: 28px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge {
    padding: 9px 16px;
    gap: 7px;
    margin-bottom: 20px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-day {
    font-size: 19px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-month {
    font-size: 11px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-year {
    font-size: 11px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-day::after,
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-month::after {
    height: 13px;
    margin-left: 7px;
  }
}
@media (max-width: 768px) {
  .single-post .single-post-hero {
    min-height: 350px;
  }
  .single-post .single-post-hero .hero-overlay .hero-content {
    padding: 30px 15px;
  }
  .single-post .single-post-hero .hero-overlay .hero-content .single-post-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row {
    flex-direction: column;
    gap: 15px;
  }
  .single-post .single-post-header {
    padding: 40px 0;
  }
  .single-post .single-post-header .header-content .single-post-title-header {
    font-size: 28px;
  }
  .single-post .single-post-header .header-content .back-button {
    margin-bottom: 20px;
  }
  .single-post .single-post-content {
    padding: 60px 0 80px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main {
    padding: 40px 28px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header {
    margin-bottom: 24px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge {
    padding: 8px 14px;
    gap: 6px;
    margin-bottom: 20px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-day {
    font-size: 17px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-month {
    font-size: 10px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-year {
    font-size: 10px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-day::after,
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-month::after {
    height: 12px;
    margin-left: 6px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .single-post-title-fallback {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text {
    font-size: 17px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h1 {
    font-size: 28px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h2 {
    font-size: 24px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h3 {
    font-size: 22px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h4 {
    font-size: 20px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h5 {
    font-size: 18px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h6 {
    font-size: 16px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content {
    padding: 25px 20px;
  }
}
@media (max-width: 480px) {
  .single-post .single-post-hero {
    min-height: 300px;
  }
  .single-post .single-post-hero .hero-overlay .hero-content .single-post-title {
    font-size: 24px;
  }
  .single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row .back-button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row .post-categories .category-tag {
    font-size: 12px;
    padding: 8px 12px;
  }
  .single-post .single-post-header {
    padding: 30px 0;
  }
  .single-post .single-post-header .header-content .single-post-title-header {
    font-size: 24px;
  }
  .single-post .single-post-header .header-content .back-button {
    padding: 10px 20px;
    font-size: 14px;
    margin-bottom: 15px;
  }
  .single-post .single-post-header .header-content .post-categories .category-tag {
    font-size: 12px;
    padding: 8px 12px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main {
    padding: 36px 24px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header {
    margin-bottom: 20px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge {
    padding: 7px 12px;
    gap: 5px;
    margin-bottom: 18px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-day {
    font-size: 16px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-month {
    font-size: 9px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-year {
    font-size: 9px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-day::after,
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-month::after {
    height: 11px;
    margin-left: 5px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .single-post-title-fallback {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text {
    font-size: 16px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h1 {
    font-size: 24px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h2 {
    font-size: 22px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h3 {
    font-size: 20px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h4 {
    font-size: 18px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h5 {
    font-size: 16px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h6 {
    font-size: 15px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text blockquote {
    padding: 15px 20px;
  }
}

/* ==========================================================================
   Single Event Specific Styles
   ========================================================================== */
.single-event .single-event-hero {
  position: relative;
}
.single-event .single-event-hero .event-venue-logo {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 10;
  width: 150px;
  height: auto;
  background: rgba(0, 0, 0, 0.4);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.single-event .single-event-hero .event-venue-logo img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 80px;
  object-fit: contain;
}
.single-event .single-event-hero .event-venue-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.single-event .single-event-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.single-event .single-event-header {
  position: relative;
}
.single-event .single-event-header .container {
  position: relative;
}
.single-event .single-event-header .container .header-content {
  position: relative;
}
.single-event .single-event-header .container .header-content .event-venue-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 150px;
  height: auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.single-event .single-event-header .container .header-content .event-venue-logo img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 80px;
  object-fit: contain;
}
.single-event .single-event-header .container .header-content .event-venue-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
  .single-event .single-event-hero .event-venue-logo {
    width: 120px;
    padding: 12px;
    top: 20px;
    right: 20px;
  }
  .single-event .single-event-hero .event-venue-logo img {
    max-height: 60px;
  }
  .single-event .single-event-header .container .header-content .event-venue-logo {
    width: 120px;
    padding: 12px;
    top: 15px;
    right: 15px;
  }
  .single-event .single-event-header .container .header-content .event-venue-logo img {
    max-height: 60px;
  }
}
@media (max-width: 768px) {
  .single-event .single-event-hero .event-venue-logo {
    width: 100px;
    padding: 10px;
    top: 15px;
    right: 15px;
  }
  .single-event .single-event-hero .event-venue-logo img {
    max-height: 50px;
  }
  .single-event .single-event-header .container .header-content .event-venue-logo {
    width: 100px;
    padding: 10px;
    top: 10px;
    right: 10px;
  }
  .single-event .single-event-header .container .header-content .event-venue-logo img {
    max-height: 50px;
  }
}
@media (max-width: 480px) {
  .single-event .single-event-hero .event-venue-logo {
    width: 80px;
    padding: 8px;
    top: 10px;
    right: 10px;
  }
  .single-event .single-event-hero .event-venue-logo img {
    max-height: 40px;
  }
  .single-event .single-event-header .container .header-content .event-venue-logo {
    width: 80px;
    padding: 8px;
    top: 10px;
    right: 10px;
  }
  .single-event .single-event-header .container .header-content .event-venue-logo img {
    max-height: 40px;
  }
}

/* ==========================================================================
   Our Beneficiaries Page Styles
   ========================================================================== */
/* Tabs Section */
.beneficiaries-tabs {
  padding: 60px 0;
}

.tabs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tabs-navigation {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 10px;
}

.tabs-content {
  /* Background and padding are handled by kids-section */
}

.tab-panel {
  display: none;
  scroll-margin-top: 100px;
}
.tab-panel.active {
  display: block;
}

.tab-header {
  text-align: center;
  margin-bottom: 40px;
}

.tab-title {
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-700);
  font-size: 2.5rem;
  color: var(--tf-purple);
  text-align: center;
  margin-bottom: 15px;
}

.tab-description {
  color: var(--tf-gray);
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 16px;
}

/* Kids grid styles are inherited from the theme's main SCSS */
.placeholder-message {
  width: 100%;
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 2px dashed #dee2e6;
}
.placeholder-message p {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tabs-section {
    padding: 0;
  }
  .tabs-container {
    padding: 0;
  }
  .tabs-navigation {
    gap: 15px;
    justify-content: center;
  }
  .tabs-navigation .tab-button {
    padding: 10px 15px;
    font-size: 0.9rem;
    flex: 0 0 auto;
    min-width: 300px;
    max-width: 100%;
  }
  .tab-title {
    font-size: 2rem;
  }
  .tab-description {
    font-size: 1rem;
  }
  /* Kids grid responsive styles are inherited from the theme's main SCSS */
}
@media (max-width: 480px) {
  .tabs-section {
    padding: 0;
  }
  .tabs-container {
    padding: 0;
  }
  .tabs-navigation {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .tabs-navigation .tab-button {
    flex: none;
    padding: 12px 15px;
    min-width: 300px;
    max-width: 100%;
  }
  .tab-description {
    font-size: 0.9rem;
  }
}
/**
 * Together Forever - Certificate Page Styles
 * 
 * This file contains styles for the certificate/gift certificate page.
 * 
 * @package Together_Forever
 * @since 1.0.0
 * @version 1.1.0 - Removed all @media (max-width: 768px) queries
 */
/*! Certificate CSS v1.1.0 - No 768px media queries */
/**
 * Together Forever - Root Styles
 * 
 * This file contains CSS custom properties (variables), 
 * base styles, and global configurations.
 * 
 * @package Together_Forever
 * @since 1.0.0
 */
/* ==========================================================================
   CSS Custom Properties (Variables)
   ========================================================================== */
:root {
  /* Brand Colors */
  --tf-purple: #5C2483;
  --tf-pink: #951B81;
  --tf-gray: #333;
  --tf-purple-gradient: linear-gradient(90deg, #5C2483 0%, #951B81 100%);
}

/* ==========================================================================
   Font Face Declarations
   ========================================================================== */
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-UltraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-UltraLightIt.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Demi.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-DemiItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-HeavyItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
/* ==========================================================================
   Typography Variables
   ========================================================================== */
:root {
  /* Font Families */
  --tf-avenir: "Avenir Next Cyr", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  /* Font Weights */
  --tf-fw-100: 100;
  --tf-fw-200: 200;
  --tf-fw-300: 300;
  --tf-fw-400: 400;
  --tf-fw-500: 500;
  --tf-fw-600: 600;
  --tf-fw-700: 700;
  --tf-fw-800: 800;
}

/* ==========================================================================
   Global Typography
   ========================================================================== */
/* Apply Avenir font to all text elements */
* {
  font-family: var(--tf-avenir);
}

/* Specific text elements */
body,
html,
p,
h1, h2, h3, h4, h5, h6,
a,
span,
div,
article,
section,
header,
footer,
main,
nav,
ul, ol, li,
button,
input,
textarea,
select,
label,
blockquote,
cite,
em,
strong,
small,
code,
pre,
mark,
del,
ins,
sub,
sup {
  font-family: var(--tf-avenir);
}

/* ==========================================================================
   Page Structure
   ========================================================================== */
/* Override Astra theme container constraints */
.ast-container {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
}

article {
  width: 100vw;
  margin: 0;
  padding: 0;
}

section {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Certificate Section
   ========================================================================== */
.certificate-content {
  padding: 60px 0;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.certificate-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.certificate-section {
  margin-bottom: 80px;
}

.certificate-container {
  width: 100%;
}

.certificate-text {
  max-width: 900px;
  margin: 0 auto;
}
.certificate-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--tf-gray);
  margin-bottom: 16px;
  font-weight: 400;
}

/* Decorative horizontal line */
.coolhr {
  height: 3px;
  background: var(--tf-purple-gradient);
  border-radius: 2px;
  width: 80px;
}
.coolhr.mb-3 {
  margin-bottom: 20px;
}
.coolhr.mt-3 {
  margin-top: 20px;
}
.coolhr.mb-4 {
  margin-bottom: 30px;
}

.certificate-title {
  font-size: 42px;
  font-weight: 700;
  background: var(--tf-purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
}

.certificate-note {
  font-size: 20px;
  font-weight: 600;
  color: var(--tf-purple);
  margin: 20px 0;
  line-height: 1.4;
}

/* Beneficiary Events/Steps */
.benef-events {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}
@media (max-width: 640px) {
  .benef-events {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.benef-event {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(92, 36, 131, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benef-event:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(92, 36, 131, 0.15);
}

.benef-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.benef-icon.benef-icon--document {
  filter: hue-rotate(280deg);
}
.benef-icon.benef-icon--valid {
  filter: hue-rotate(280deg);
}

.benef-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--tf-gray);
  line-height: 1.4;
}

.certificate-slogan {
  font-size: 24px;
  font-weight: 700;
  background: var(--tf-purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 40px;
  line-height: 1.4;
  text-align: center;
  padding: 30px 20px;
  background-color: #fafafa;
  border-radius: 12px;
}

/* ==========================================================================
   Certificate Form Section
   ========================================================================== */
.certificate-form-section {
  background: white;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 4px 24px rgba(92, 36, 131, 0.1);
}
@media (max-width: 480px) {
  .certificate-form-section {
    padding: 30px 20px;
  }
}

.certificate-form-container {
  max-width: 100%;
}

.certificate-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 1024px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.form-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.has-error .form-input {
  border-color: #dc3545;
}
.form-group.has-error .form-input:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.form-group.has-error .form-error {
  display: block;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--tf-gray);
  margin-bottom: 4px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: var(--tf-avenir);
  background: white;
}
.form-input:focus {
  outline: none;
  border-color: var(--tf-purple);
  box-shadow: 0 0 0 3px rgba(92, 36, 131, 0.1);
}
.form-input::placeholder {
  color: #999;
}

.form-error {
  display: none;
  font-size: 13px;
  color: #dc3545;
  margin-top: 4px;
}

/* Radio Custom Styles */
.radio-custom-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.radio-custom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.radio-custom input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-custom input[type=radio]:checked + .radio-label {
  color: white;
}
.radio-custom input[type=radio]:checked ~ .radio-label {
  color: white;
}
.radio-custom input[type=radio]:checked ~ .radio-label,
.radio-custom input[type=radio]:checked + .radio-label {
  color: white;
}
.radio-custom:has(input:checked) {
  background: rgb(92, 36, 131);
  border-color: rgba(92, 36, 131, 0.1);
}
.radio-custom:has(input:checked) .radio-label {
  color: white;
}
.radio-custom:hover {
  border-color: var(--tf-purple);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 36, 131, 0.15);
}

.radio-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--tf-gray);
  transition: color 0.3s ease;
  text-align: center;
  width: 100%;
}

.custom-amount-group {
  margin-top: 12px;
}
.custom-amount-group .form-input {
  width: 100%;
}

/* Certificate Background Selector */
.certificate-background-selector {
  margin: 30px 0;
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Full Width Certificate Preview */
.certificate-preview-full {
  width: 100%;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
}

.certificate-preview-container {
  width: 100%;
  max-width: 100%;
  position: relative;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.certificate-preview-img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
  min-height: 200px;
  object-fit: contain;
  background: white;
}

.certificate-backgrounds {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
  justify-content: center;
}

.certificate-bg-option {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.certificate-bg-option input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.certificate-bg-preview {
  position: relative;
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid #e0e0e0;
  transition: all 0.3s ease;
  background: #f5f5f5;
}

.certificate-bg-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.certificate-bg-check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.certificate-bg-option.selected .certificate-bg-preview {
  border-color: var(--tf-purple, #5C2483);
  box-shadow: 0 4px 12px rgba(92, 36, 131, 0.3);
}

.certificate-bg-option.selected .certificate-bg-check {
  transform: translate(-50%, -50%) scale(1);
}

.certificate-bg-option:hover .certificate-bg-preview {
  border-color: var(--tf-pink, #951B81);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(149, 27, 129, 0.2);
}

.certificate-bg-label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  text-align: center;
}

.certificate-bg-option.selected .certificate-bg-label {
  color: var(--tf-purple, #5C2483);
  font-weight: 600;
}

/* Form Actions */
.form-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.btn-submit {
  padding: 16px 60px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(92, 36, 131, 0.25);
}
@media (max-width: 480px) {
  .btn-submit {
    width: 100%;
    padding: 14px 40px;
  }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
  .certificate-section {
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .certificate-title {
    font-size: 28px;
  }
  .certificate-note {
    font-size: 16px;
  }
  .benef-event {
    padding: 16px;
    gap: 12px;
  }
  .benef-icon {
    width: 40px;
    height: 40px;
  }
  .benef-text {
    font-size: 14px;
  }
  .certificate-slogan {
    font-size: 18px;
  }
}
/* ==========================================================================
   Certificate Success Page Styles
   ========================================================================== */
/* Certificate Display Styles */
.certificate-display-section {
  padding: 70px 0;
}

.certificate-display-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--tf-purple);
  text-align: center;
  margin-bottom: 30px;
}

.certificate-display-container {
  margin: 0 auto;
  width: 800px;
  height: 338px;
}

.certificate-html-wrapper {
  max-width: 100%;
  max-height: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.cert-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
}

.cert-content {
  position: relative;
  z-index: 1;
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Certificate Header */
.cert-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.cert-logo {
  width: 70px;
  flex-shrink: 0;
}
.cert-logo img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.cert-title {
  font-family: "Gilroy-ExtraBold", "Montserrat", sans-serif;
  font-size: 33px;
  color: #5C2483;
  text-align: center;
}

/* Certificate Body */
.cert-body {
  display: flex;
  gap: 30px;
  flex: 1;
  align-items: flex-start;
}

/* Left Column */
.cert-left-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cert-dear {
  font-size: 11px;
  color: #5C2483;
}

.cert-name {
  font-family: "Gilroy-ExtraBold", "Montserrat", sans-serif;
  font-size: 23px;
  color: #5C2483;
  line-height: 130%;
}

.cert-text {
  font-size: 11px;
  line-height: 130%;
  color: #5C2483;
}

/* Right Column */
.cert-right-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cert-text-confirm {
  font-size: 11px;
  line-height: 130%;
  color: #951B81;
}

.cert-amount-container {
  display: flex;
  margin-top: 10px;
  gap: 16px;
  max-width: 230px;
  justify-content: space-between;
}

.cert-amount {
  font-family: "Gilroy-ExtraBold", "Montserrat", sans-serif;
  font-size: 29px;
  color: #951B81;
}

.cert-number-label {
  font-size: 11px;
  color: #951B81;
}

.cert-code {
  font-family: "Gilroy-Medium", "Montserrat", sans-serif;
  font-size: 16px;
  color: #951B81;
}

.cert-qr {
  width: 94px;
  flex-shrink: 0;
}
.cert-qr img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.certificate-actions {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.btn-download {
  background: var(--tf-purple);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(92, 36, 131, 0.3);
}
.btn-download:hover {
  background: var(--tf-pink);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(92, 36, 131, 0.4);
}
.btn-download:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn-download svg {
  flex-shrink: 0;
}

/* Certificate Success Content */
.certificate-success-content {
  min-height: 60vh;
}

.certificate-form-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(92, 36, 131, 0.1);
}

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

.success-icon {
  margin-bottom: 20px;
}

.success-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--tf-purple);
  margin-bottom: 20px;
}

.success-message {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.success-details {
  text-align: center;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.success-details h3 {
  color: var(--tf-purple);
  margin-bottom: 15px;
}
.success-details ul {
  list-style: none;
  padding: 0;
}
.success-details li {
  padding: 8px 0;
  color: #555;
}

.success-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: var(--tf-purple);
  color: white;
}
.btn-primary:hover {
  background: var(--tf-purple-gradient);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--tf-purple);
  border: 2px solid var(--tf-purple);
}
.btn-secondary:hover {
  background: var(--tf-purple);
  color: white;
}

.success-note {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 6px;
  padding: 15px;
  color: #856404;
  font-size: 0.9rem;
}

/* Hide certificate display on mobile, keep download button visible */
@media (max-width: 880px) {
  .certificate-display-title {
    display: none;
  }
  .certificate-display-container {
    display: none !important;
  }
}
/* Responsive adjustments for certificate display */
@media (max-width: 1024px) {
  .cert-content {
    padding: 30px 40px;
  }
  .cert-title {
    font-size: 28px;
  }
  .cert-body {
    gap: 30px;
  }
  .cert-name {
    font-size: 30px;
  }
  .cert-amount {
    font-size: 46px;
  }
}
/**
 * Together Forever - Activate Certificate Page Styles
 * 
 * @package Together_Forever
 * @since 1.0.0
 */
/**
 * Together Forever - Root Styles
 * 
 * This file contains CSS custom properties (variables), 
 * base styles, and global configurations.
 * 
 * @package Together_Forever
 * @since 1.0.0
 */
/* ==========================================================================
   CSS Custom Properties (Variables)
   ========================================================================== */
:root {
  /* Brand Colors */
  --tf-purple: #5C2483;
  --tf-pink: #951B81;
  --tf-gray: #333;
  --tf-purple-gradient: linear-gradient(90deg, #5C2483 0%, #951B81 100%);
}

/* ==========================================================================
   Font Face Declarations
   ========================================================================== */
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-UltraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-UltraLightIt.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Demi.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-DemiItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-HeavyItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
/* ==========================================================================
   Typography Variables
   ========================================================================== */
:root {
  /* Font Families */
  --tf-avenir: "Avenir Next Cyr", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  /* Font Weights */
  --tf-fw-100: 100;
  --tf-fw-200: 200;
  --tf-fw-300: 300;
  --tf-fw-400: 400;
  --tf-fw-500: 500;
  --tf-fw-600: 600;
  --tf-fw-700: 700;
  --tf-fw-800: 800;
}

/* ==========================================================================
   Global Typography
   ========================================================================== */
/* Apply Avenir font to all text elements */
* {
  font-family: var(--tf-avenir);
}

/* Specific text elements */
body,
html,
p,
h1, h2, h3, h4, h5, h6,
a,
span,
div,
article,
section,
header,
footer,
main,
nav,
ul, ol, li,
button,
input,
textarea,
select,
label,
blockquote,
cite,
em,
strong,
small,
code,
pre,
mark,
del,
ins,
sub,
sup {
  font-family: var(--tf-avenir);
}

/* ==========================================================================
   Page Structure
   ========================================================================== */
/* Override Astra theme container constraints */
.ast-container {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
}

article {
  width: 100vw;
  margin: 0;
  padding: 0;
}

section {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Activate Certificate Section
   ========================================================================== */
.activate-certificate-content {
  padding: 60px 0;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  min-height: 70vh;
}

.activate-certificate-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.activate-certificate-section {
  text-align: center;
}

.activate-title {
  font-size: 42px;
  font-weight: 700;
  background: var(--tf-purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .activate-title {
    font-size: 32px;
  }
}

.activate-intro {
  font-size: 18px;
  color: var(--tf-gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Activation Form */
.activation-form-section {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 4px 24px rgba(92, 36, 131, 0.1);
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .activation-form-section {
    padding: 30px 20px;
  }
}

.activation-form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}
.activation-form .form-group {
  margin-bottom: 24px;
}
.activation-form .form-label {
  display: block;
  font-weight: 600;
  color: var(--tf-gray);
  margin-bottom: 8px;
  font-size: 16px;
}
.activation-form .form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--tf-avenir);
  color: var(--tf-gray);
  background: white;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.activation-form .form-input:focus {
  outline: none;
  border-color: var(--tf-purple);
  box-shadow: 0 0 0 3px rgba(92, 36, 131, 0.1);
}
.activation-form .form-input.error-field {
  border-color: #dc3545;
}
.activation-form select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235C2483' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}
.activation-form select.form-input option {
  padding: 12px;
  font-size: 16px;
  color: var(--tf-gray);
  background: white;
  white-space: normal;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .activation-form .form-input {
    font-size: 16px;
    padding: 14px 16px;
  }
  .activation-form select.form-input,
  .activation-form #assigned-kid.kid-select {
    width: 100%;
    min-width: 100% !important;
    max-width: 100%;
    padding-right: 40px;
    min-height: 48px;
    -webkit-tap-highlight-color: rgba(92, 36, 131, 0.1);
    -webkit-touch-callout: none;
  }
  .activation-form select.form-input option,
  .activation-form #assigned-kid.kid-select option {
    padding: 12px 16px;
    font-size: 16px;
    line-height: 1.6;
    white-space: normal;
    word-wrap: break-word;
    overflow: visible;
    text-overflow: clip;
  }
}
@supports (-webkit-touch-callout: none) {
  @media (max-width: 768px) {
    .activation-form select.form-input,
    .activation-form #assigned-kid.kid-select {
      -webkit-appearance: menulist;
      appearance: menulist;
      background-image: none;
      padding-right: 16px;
    }
  }
}
.activation-form .kids-radio-list {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 8px;
  max-height: 500px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.activation-form .kids-radio-list::-webkit-scrollbar {
  width: 8px;
}
.activation-form .kids-radio-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.activation-form .kids-radio-list::-webkit-scrollbar-thumb {
  background: var(--tf-purple);
  border-radius: 4px;
}
.activation-form .kids-radio-list.error-field {
  border-color: #dc3545;
}
.activation-form .kids-radio-list .radio-option {
  margin-bottom: 8px;
}
.activation-form .kids-radio-list .radio-option:last-child {
  margin-bottom: 0;
}
.activation-form .kids-radio-list .radio-option .kid-radio-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.activation-form .kids-radio-list .radio-option .kid-radio-input:checked + .kid-radio-label .radio-indicator {
  background: var(--tf-purple);
  border-color: var(--tf-purple);
}
.activation-form .kids-radio-list .radio-option .kid-radio-input:checked + .kid-radio-label .radio-indicator::after {
  opacity: 1;
  transform: scale(1);
}
.activation-form .kids-radio-list .radio-option .kid-radio-input:checked + .kid-radio-label .radio-text {
  color: var(--tf-purple);
  font-weight: 600;
}
.activation-form .kids-radio-list .radio-option .kid-radio-input:focus + .kid-radio-label {
  outline: 2px solid var(--tf-purple);
  outline-offset: 2px;
  border-radius: 4px;
}
.activation-form .kids-radio-list .radio-option .kid-radio-label {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  -webkit-tap-highlight-color: rgba(92, 36, 131, 0.1);
}
.activation-form .kids-radio-list .radio-option .kid-radio-label:hover, .activation-form .kids-radio-list .radio-option .kid-radio-label:active {
  background-color: rgba(92, 36, 131, 0.05);
}
.activation-form .kids-radio-list .radio-option .kid-radio-label .radio-indicator {
  width: 24px;
  height: 24px;
  border: 2px solid #d0d0d0;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
  position: relative;
  background: white;
  transition: all 0.2s ease;
}
.activation-form .kids-radio-list .radio-option .kid-radio-label .radio-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.2s ease;
}
.activation-form .kids-radio-list .radio-option .kid-radio-label .radio-text {
  flex: 1;
  font-size: 16px;
  color: var(--tf-gray);
  line-height: 1.5;
  word-wrap: break-word;
  white-space: normal;
}

.code-input {
  font-family: "Courier New", monospace;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .code-input {
    font-size: 16px;
  }
}

.form-hint {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
  text-align: center;
}

/* Activation Message */
.activation-message {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}
.activation-message.success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.activation-message.error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.activation-message strong {
  font-weight: 600;
}

/* Button Loader */
.btn-activate {
  position: relative;
  min-width: 200px;
}
.btn-activate .btn-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Certificate Display */
.certificate-display {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 4px 24px rgba(92, 36, 131, 0.1);
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .certificate-display {
    padding: 30px 20px;
  }
}

.certificate-success {
  text-align: center;
  margin-bottom: 40px;
}
.certificate-success .success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #46b450 0%, #2e7d32 100%);
  color: white;
  font-size: 48px;
  line-height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(70, 180, 80, 0.3);
}
.certificate-success h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--tf-purple);
  margin: 0;
}
@media (max-width: 768px) {
  .certificate-success h2 {
    font-size: 24px;
  }
}

.certificate-details-box {
  background: #fafafa;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}
.certificate-details-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--tf-purple);
  margin-bottom: 20px;
  text-align: center;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}
.detail-row:last-child {
  border-bottom: none;
}
@media (max-width: 480px) {
  .detail-row {
    flex-direction: column;
    gap: 4px;
  }
}

.detail-label {
  font-weight: 600;
  color: #666;
}

.detail-value {
  color: var(--tf-gray);
  font-weight: 500;
}

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

/* Help Section */
.activation-help {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: left;
}
.activation-help h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--tf-purple);
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .activation-help {
    padding: 30px 20px;
  }
}

.help-items {
  display: grid;
  gap: 24px;
}

.help-item {
  padding: 20px;
  background: #fafafa;
  border-radius: 12px;
  border-left: 4px solid var(--tf-purple);
}
.help-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--tf-purple);
  margin-bottom: 8px;
}
.help-item p {
  margin: 0;
  color: var(--tf-gray);
  line-height: 1.6;
  font-size: 14px;
}
.help-item a {
  color: var(--tf-purple);
  text-decoration: underline;
}
.help-item a:hover {
  color: var(--tf-pink);
}

/* Responsive */
@media (max-width: 768px) {
  .activate-certificate-content {
    padding: 40px 0;
  }
  .activate-intro {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
/* ==========================================================================
   Global Article/Section Structure
   ========================================================================== */
/* Standard article wrapper with section structure */
article {
  width: 100%;
}
article > section {
  width: 100%;
}
article > section.container, article > section[style*=max-width] {
  max-width: 1400px !important;
  padding: 0 20px !important;
  margin: 0 auto !important;
}

/* Front Page Content Background */
.front-page-content {
  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* Responsive adjustments for the new structure */
@media (max-width: 1440px) {
  article > section[style*=max-width] {
    max-width: calc(100vw - 40px) !important;
  }
}
@media (max-width: 768px) {
  article > section[style*=max-width] {
    padding: 0 20px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}
@media (max-width: 480px) {
  article > section[style*=max-width] {
    padding: 0 20px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}
/* ==========================================================================
   CSS Reset & Normalize
   ========================================================================== */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
*,
*::before,
*::after {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding: 0;
  padding-block-start: 0;
  padding-block-end: 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
}

/* WordPress specific elements reset */
.entry-title,
.entry-content,
.entry-meta,
.entry-summary,
.entry-footer,
.post-title,
.post-content,
.post-meta,
.post-excerpt,
.post-thumbnail,
.wp-block-heading,
.wp-block-paragraph,
.wp-block-list,
.wp-block-quote,
.wp-block-code,
.wp-block-preformatted,
.wp-block-table,
.wp-block-button,
.wp-block-buttons,
.wp-block-group,
.wp-block-columns,
.wp-block-column,
.wp-block-image,
.wp-block-gallery,
.wp-block-media-text,
.wp-block-cover,
.wp-block-embed,
.wp-block-audio,
.wp-block-video,
.wp-block-file,
.wp-block-separator,
.wp-block-spacer,
.wp-block-social-links,
.wp-block-social-link,
.wp-block-navigation,
.wp-block-navigation-item,
.wp-block-site-title,
.wp-block-site-tagline,
.wp-block-query,
.wp-block-post-title,
.wp-block-post-content,
.wp-block-post-excerpt,
.wp-block-post-featured-image,
.wp-block-post-date,
.wp-block-post-author,
.wp-block-post-terms,
.wp-block-post-navigation-link,
.wp-block-query-pagination,
.wp-block-query-pagination-next,
.wp-block-query-pagination-previous,
.wp-block-query-pagination-numbers,
.wp-block-query-no-results,
.wp-block-query-title,
.wp-block-query-loop,
.wp-block-template-part,
.wp-block-archives,
.wp-block-calendar,
.wp-block-categories,
.wp-block-latest-comments,
.wp-block-latest-posts,
.wp-block-rss,
.wp-block-search,
.wp-block-tag-cloud,
.wp-block-text-columns,
.wp-block-more,
.wp-block-nextpage,
.wp-block-page-list,
.wp-block-post-author-biography,
.wp-block-post-author-name,
.wp-block-post-comments,
.wp-block-post-comments-form,
.wp-block-post-navigation,
.wp-block-post-template,
.wp-block-read-more,
.wp-block-term-description {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding: 0;
  padding-block-start: 0;
  padding-block-end: 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
}

/* Astra theme specific elements reset */
.entry-header,
.entry-content,
.entry-footer,
.ast-article-single,
.ast-article-inner,
.ast-container,
.ast-row,
.ast-col-xs-12,
.ast-col-sm-12,
.ast-col-md-12,
.ast-col-lg-12,
.ast-col-xl-12,
.ast-separate-container,
.ast-page-builder-template,
.ast-narrow-container,
.ast-wide-container,
.ast-full-width-layout,
.ast-box-layout,
.ast-padded-layout,
.ast-fluid-width-layout,
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-inner,
.ast-separate-container .ast-container,
.ast-separate-container .ast-row,
.ast-separate-container .ast-col-xs-12,
.ast-separate-container .ast-col-sm-12,
.ast-separate-container .ast-col-md-12,
.ast-separate-container .ast-col-lg-12,
.ast-separate-container .ast-col-xl-12,
.ast-page-builder-template .ast-article-single,
.ast-page-builder-template .ast-article-inner,
.ast-page-builder-template .ast-container,
.ast-page-builder-template .ast-row,
.ast-page-builder-template .ast-col-xs-12,
.ast-page-builder-template .ast-col-sm-12,
.ast-page-builder-template .ast-col-md-12,
.ast-page-builder-template .ast-col-lg-12,
.ast-page-builder-template .ast-col-xl-12,
.ast-narrow-container .ast-article-single,
.ast-narrow-container .ast-article-inner,
.ast-narrow-container .ast-container,
.ast-narrow-container .ast-row,
.ast-narrow-container .ast-col-xs-12,
.ast-narrow-container .ast-col-sm-12,
.ast-narrow-container .ast-col-md-12,
.ast-narrow-container .ast-col-lg-12,
.ast-narrow-container .ast-col-xl-12,
.ast-wide-container .ast-article-single,
.ast-wide-container .ast-article-inner,
.ast-wide-container .ast-container,
.ast-wide-container .ast-row,
.ast-wide-container .ast-col-xs-12,
.ast-wide-container .ast-col-sm-12,
.ast-wide-container .ast-col-md-12,
.ast-wide-container .ast-col-lg-12,
.ast-wide-container .ast-col-xl-12,
.ast-full-width-layout .ast-article-single,
.ast-full-width-layout .ast-article-inner,
.ast-full-width-layout .ast-container,
.ast-full-width-layout .ast-row,
.ast-full-width-layout .ast-col-xs-12,
.ast-full-width-layout .ast-col-sm-12,
.ast-full-width-layout .ast-col-md-12,
.ast-full-width-layout .ast-col-lg-12,
.ast-full-width-layout .ast-col-xl-12,
.ast-box-layout .ast-article-single,
.ast-box-layout .ast-article-inner,
.ast-box-layout .ast-container,
.ast-box-layout .ast-row,
.ast-box-layout .ast-col-xs-12,
.ast-box-layout .ast-col-sm-12,
.ast-box-layout .ast-col-md-12,
.ast-box-layout .ast-col-lg-12,
.ast-box-layout .ast-col-xl-12,
.ast-padded-layout .ast-article-single,
.ast-padded-layout .ast-article-inner,
.ast-padded-layout .ast-container,
.ast-padded-layout .ast-row,
.ast-padded-layout .ast-col-xs-12,
.ast-padded-layout .ast-col-sm-12,
.ast-padded-layout .ast-col-md-12,
.ast-padded-layout .ast-col-lg-12,
.ast-padded-layout .ast-col-xl-12,
.ast-fluid-width-layout .ast-article-single,
.ast-fluid-width-layout .ast-article-inner,
.ast-fluid-width-layout .ast-container,
.ast-fluid-width-layout .ast-row,
.ast-fluid-width-layout .ast-col-xs-12,
.ast-fluid-width-layout .ast-col-sm-12,
.ast-fluid-width-layout .ast-col-md-12,
.ast-fluid-width-layout .ast-col-lg-12,
.ast-fluid-width-layout .ast-col-xl-12 {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding: 0;
  padding-block-start: 0;
  padding-block-end: 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Links */
a {
  color: var(--tf-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover, a:focus {
  color: var(--tf-pink);
}

/* ==========================================================================
   Header Styles
   ========================================================================== */
.site-header {
  background-image: url("../images/nav-bg.png");
  background-size: cover;
  background-position: 66px center;
  background-repeat: no-repeat;
  padding: 15px 0;
  position: relative;
  border-bottom: 1px solid var(--tf-pink);
  /* Responsive design */
}
.site-header .header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Mobile Menu Toggle Button (Hamburger) */
}
.site-header .header-container .site-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-header .header-container .site-logo .logo-image {
  height: 60px;
  width: auto;
}
.site-header .header-container .site-logo .logo-text {
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-700);
  font-size: 1.2rem;
  color: var(--tf-purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.site-header .header-container .main-navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-header .header-container .main-navigation .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
.site-header .header-container .main-navigation .nav-menu li {
  position: relative;
}
.site-header .header-container .main-navigation .nav-menu a {
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-500);
  color: var(--tf-gray);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.site-header .header-container .main-navigation .nav-menu a:hover {
  color: var(--tf-purple);
}
@media (min-width: 769px) {
  .site-header .header-container .main-navigation .nav-menu .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 16px rgba(92, 36, 131, 0.2);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 0.75rem;
    border: 1px solid var(--tf-purple);
  }
  .site-header .header-container .main-navigation .nav-menu .menu-item-has-children .sub-menu li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(92, 36, 131, 0.08);
  }
  .site-header .header-container .main-navigation .nav-menu .menu-item-has-children .sub-menu li:last-child {
    border-bottom: none;
  }
  .site-header .header-container .main-navigation .nav-menu .menu-item-has-children .sub-menu li a {
    display: block;
    padding: 14px 14px 14px 18px;
    color: var(--tf-gray);
    font-size: 0.95rem;
    font-weight: var(--tf-fw-500);
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  .site-header .header-container .main-navigation .nav-menu .menu-item-has-children .sub-menu li a .ast-icon,
  .site-header .header-container .main-navigation .nav-menu .menu-item-has-children .sub-menu li a .icon-arrow,
  .site-header .header-container .main-navigation .nav-menu .menu-item-has-children .sub-menu li a .ast-icon.icon-arrow, .site-header .header-container .main-navigation .nav-menu .menu-item-has-children .sub-menu li a::after, .site-header .header-container .main-navigation .nav-menu .menu-item-has-children .sub-menu li a::before {
    display: none !important;
    content: none !important;
  }
  .site-header .header-container .main-navigation .nav-menu .menu-item-has-children .sub-menu li a:hover {
    color: var(--tf-purple);
    background: rgba(92, 36, 131, 0.08);
  }
  .site-header .header-container .main-navigation .nav-menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .site-header .header-container .main-navigation .nav-menu .menu-item-has-children .sub-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.site-header .header-container .main-navigation .contact-button {
  background: var(--tf-purple-gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-600);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.site-header .header-container .main-navigation .contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 36, 131, 0.3);
  color: white;
}
.site-header .header-container .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(92, 36, 131, 0.08) 0%, rgba(149, 27, 129, 0.08) 100%);
  border: 1.5px solid rgba(92, 36, 131, 0.2);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1001;
  backdrop-filter: blur(8px);
}
.site-header .header-container .mobile-menu-toggle .hamburger-line {
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--tf-purple) 0%, var(--tf-pink) 100%);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.site-header .header-container .mobile-menu-toggle:hover {
  background: linear-gradient(135deg, rgba(92, 36, 131, 0.15) 0%, rgba(149, 27, 129, 0.15) 100%);
  border-color: rgba(92, 36, 131, 0.35);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(92, 36, 131, 0.15);
}
.site-header .header-container .mobile-menu-toggle:active {
  transform: scale(0.98);
}
.site-header .header-container .mobile-menu-toggle[aria-expanded=true] {
  background: linear-gradient(135deg, var(--tf-purple) 0%, var(--tf-pink) 100%);
  border-color: var(--tf-purple);
}
.site-header .header-container .mobile-menu-toggle[aria-expanded=true] .hamburger-line {
  background: white;
}
.site-header .header-container .mobile-menu-toggle[aria-expanded=true] .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header .header-container .mobile-menu-toggle[aria-expanded=true] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.site-header .header-container .mobile-menu-toggle[aria-expanded=true] .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.site-header .header-container .mobile-menu-toggle[aria-expanded=true]:hover {
  background: linear-gradient(135deg, var(--tf-purple) 0%, var(--tf-pink) 100%);
  box-shadow: 0 6px 20px rgba(92, 36, 131, 0.3);
}
@media (max-width: 768px) {
  .site-header .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 15px 1rem;
    position: relative;
  }
  .site-header .header-container .mobile-menu-toggle {
    display: flex;
  }
  .site-header .header-container .mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(92, 36, 131, 0.12);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .site-header .header-container .mobile-menu-backdrop.is-active {
    opacity: 1;
    pointer-events: all;
  }
  .site-header .header-container .site-logo .logo-text {
    font-size: 1rem;
  }
  .site-header .header-container .site-logo .logo-image {
    height: 50px;
  }
  .site-header .header-container .main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 242, 252, 0.98) 100%);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 2rem;
    padding: 80px 2rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  .site-header .header-container .main-navigation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(92, 36, 131, 0.3) 0%, rgba(149, 27, 129, 0.4) 50%, rgba(92, 36, 131, 0.3) 100%);
  }
  .site-header .header-container .main-navigation.is-open {
    transform: translateX(0);
    box-shadow: 0 8px 40px rgba(92, 36, 131, 0.2);
  }
  .site-header .header-container .main-navigation .nav-menu {
    flex-direction: column;
    gap: 0;
    text-align: left;
    width: 100%;
  }
  .site-header .header-container .main-navigation .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(92, 36, 131, 0.08);
  }
  .site-header .header-container .main-navigation .nav-menu li:last-child {
    border-bottom: none;
  }
  .site-header .header-container .main-navigation .nav-menu li a {
    display: block;
    padding: 16px 0;
    font-size: 1.05rem;
    color: var(--tf-gray);
    transition: all 0.3s ease;
    position: relative;
  }
  .site-header .header-container .main-navigation .nav-menu li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, var(--tf-purple) 0%, var(--tf-pink) 100%);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
  }
  .site-header .header-container .main-navigation .nav-menu li a:hover, .site-header .header-container .main-navigation .nav-menu li a:focus {
    color: var(--tf-purple);
    padding-left: 16px;
  }
  .site-header .header-container .main-navigation .nav-menu li a:hover::before, .site-header .header-container .main-navigation .nav-menu li a:focus::before {
    height: 60%;
  }
  .site-header .header-container .main-navigation .nav-menu .sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    background: rgba(249, 242, 252, 0.3);
    border-left: 2px solid rgba(92, 36, 131, 0.15);
    margin-left: 16px;
    margin-top: 8px;
    border-radius: 0 8px 8px 0;
  }
  .site-header .header-container .main-navigation .nav-menu .sub-menu li {
    border-bottom: 1px solid rgba(92, 36, 131, 0.06);
  }
  .site-header .header-container .main-navigation .nav-menu .sub-menu li:last-child {
    border-bottom: none;
  }
  .site-header .header-container .main-navigation .nav-menu .sub-menu li a {
    padding: 12px 0;
    font-size: 0.95rem;
    color: rgba(102, 102, 102, 0.9);
  }
  .site-header .header-container .main-navigation .nav-menu .sub-menu li a .ast-icon,
  .site-header .header-container .main-navigation .nav-menu .sub-menu li a .icon-arrow,
  .site-header .header-container .main-navigation .nav-menu .sub-menu li a .ast-icon.icon-arrow, .site-header .header-container .main-navigation .nav-menu .sub-menu li a::after, .site-header .header-container .main-navigation .nav-menu .sub-menu li a::before {
    display: none !important;
    content: none !important;
  }
  .site-header .header-container .main-navigation .nav-menu .sub-menu li a:hover, .site-header .header-container .main-navigation .nav-menu .sub-menu li a:focus {
    color: var(--tf-pink);
    padding-left: 12px;
  }
  .site-header .header-container .main-navigation .contact-button {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    margin-top: 1rem;
    font-size: 0.95rem;
    border-radius: 12px;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==========================================================================
   Hero Section Styles
   ========================================================================== */
.hero-section {
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow-x: hidden;
}
.hero-section .hero-content {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.hero-section .hero-content .hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-section .hero-content .hero-text .hero-title {
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-700);
  font-size: 3rem;
  line-height: 1.2;
  color: var(--tf-purple);
  margin: 0;
}
.hero-section .hero-content .hero-text .hero-description {
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-400);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--tf-gray);
  margin: 0;
}
.hero-section .hero-content .hero-text .hero-stats {
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-500);
  font-size: 1.1rem;
  color: var(--tf-gray);
  margin: 0;
}
.hero-section .hero-content .hero-text .hero-stats .highlight {
  text-decoration: underline;
  font-weight: var(--tf-fw-700);
  color: var(--tf-purple);
}
.hero-section .hero-content .hero-text .hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.hero-section .hero-content .hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section .hero-content .hero-image .image-frame {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.hero-section .hero-content .hero-image .child-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }
  .hero-section .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  .hero-section .hero-content .hero-text {
    text-align: center;
    gap: 1.25rem;
  }
  .hero-section .hero-content .hero-text .hero-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    line-height: 1.3;
  }
  .hero-section .hero-content .hero-text .hero-description {
    font-size: clamp(1rem, 3vw, 1.1rem);
    line-height: 1.6;
  }
  .hero-section .hero-content .hero-text .hero-stats {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  }
  .hero-section .hero-content .hero-text .hero-buttons {
    justify-content: center;
    gap: 0.75rem;
  }
  .hero-section .hero-content .hero-text .hero-buttons .btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
  }
  .hero-section .hero-content .hero-image {
    order: -1;
  }
  .hero-section .hero-content .hero-image .image-frame {
    max-width: 280px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .hero-section {
    padding: 30px 0;
  }
  .hero-section .hero-content {
    gap: 24px;
  }
  .hero-section .hero-content .hero-text .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-section .hero-content .hero-text .hero-buttons .btn {
    width: 100%;
    max-width: 100%;
  }
}

/* Global Button Styles */
.btn {
  display: flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  width: fit-content;
  border-radius: 56px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 500;
}
.btn.btn-primary {
  background: var(--tf-purple);
  color: white;
}
.btn.btn-primary:hover {
  background: var(--tf-pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 36, 131, 0.3);
}
.btn.btn-secondary {
  background: white;
  color: var(--tf-purple);
  border-color: var(--tf-purple);
}
.btn.btn-secondary:hover {
  background: var(--tf-pink);
  color: white;
  transform: translateY(-2px);
}

/* Video Section */
.video-section {
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}
.video-section .video-container {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.video-section .video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  display: block;
}
@media (max-width: 768px) {
  .video-section {
    padding: 3rem 0;
  }
  .video-section .video-container {
    padding: 0 20px;
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  .video-section {
    padding: 2.5rem 0;
  }
  .video-section .video-container {
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  display: flex;
  justify-content: center;
}
.cta-section .cta-card {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 40px;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgb(255, 255, 255) 25%, rgb(149, 27, 129) 100%);
  box-shadow: 0 24px 48px rgba(92, 36, 131, 0.12);
  max-width: 960px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.cta-section .cta-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--tf-pink);
  z-index: -1;
  border-radius: 30px;
}
.cta-section .cta-card::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--tf-pink);
  z-index: -1;
  border-radius: 40px;
  opacity: 0.5;
}
.cta-section .cta-image {
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section .cta-image img {
  width: 100%;
  height: auto;
}
.cta-section .cta-content {
  width: 45%;
}
.cta-section .cta-title {
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-800);
  font-size: 24px;
  text-align: center;
  line-height: 1.3;
  color: var(--tf-purple);
  margin-bottom: 1rem;
}
.cta-section .cta-description {
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-500);
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a3b5c;
  margin-bottom: 1.75rem;
  text-align: center;
}
.cta-section .btn-gradient {
  background: var(--tf-purple-gradient);
  color: white;
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-700);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.cta-section .btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92, 36, 131, 0.4);
}
@media (max-width: 1024px) {
  .cta-section .cta-card {
    gap: 2rem;
    padding: 2rem 2.5rem;
  }
  .cta-section .cta-image {
    flex: 0 0 260px;
  }
}
@media (max-width: 820px) {
  .cta-section {
    padding: 3rem 0;
  }
  .cta-section .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 20px;
    margin: 0 20px;
    max-width: calc(100% - 40px);
    box-sizing: border-box;
  }
  .cta-section .cta-content {
    width: 100%;
  }
  .cta-section .cta-image {
    flex: 0 0 auto;
    width: 70%;
  }
  .cta-section .cta-image img {
    border-radius: 16px;
  }
  .cta-section .cta-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 520px) {
  .cta-section {
    padding: 2.5rem 0;
  }
  .cta-section .cta-card {
    padding: 1.75rem 20px;
    gap: 1.5rem;
    margin: 0 20px;
    max-width: calc(100% - 40px);
  }
  .cta-section .cta-image {
    width: 100%;
  }
  .cta-section .cta-title {
    font-size: clamp(1.4rem, 4vw, 1.6rem);
  }
  .cta-section .cta-description {
    font-size: clamp(0.95rem, 3vw, 1rem);
  }
}

/* ==========================================================================
   Foundation Helps Section
   ========================================================================== */
.foundation-helps {
  background-color: #F9F2FC;
  padding: 90px 0;
}
.foundation-helps .foundation-helps-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.foundation-helps .foundation-helps-wrapper {
  max-width: 980px;
  text-align: center;
}
.foundation-helps .foundation-helps-text {
  margin: 0;
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-700);
  font-size: 2.3rem;
  line-height: 1.35;
  color: var(--tf-purple);
}
.foundation-helps .foundation-helps-highlight {
  background: linear-gradient(92deg, #5C2483 0.25%, #951B81 80.37%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: var(--tf-fw-800);
}
@media (max-width: 992px) {
  .foundation-helps {
    padding: 70px 0;
  }
  .foundation-helps .foundation-helps-text {
    font-size: 2rem;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .foundation-helps {
    padding: 60px 0;
  }
  .foundation-helps .foundation-helps-section {
    padding: 0 20px;
  }
  .foundation-helps .foundation-helps-text {
    font-size: clamp(1.5rem, 4.5vw, 1.8rem);
    line-height: 1.4;
  }
}
@media (max-width: 480px) {
  .foundation-helps {
    padding: 48px 0;
  }
  .foundation-helps .foundation-helps-section {
    padding: 0 20px;
  }
  .foundation-helps .foundation-helps-text {
    font-size: clamp(1.3rem, 5vw, 1.5rem);
    line-height: 1.5;
  }
}

/* ==========================================================================
   Kids Cards Section
   ========================================================================== */
.kids-section {
  padding: 120px 0;
  /* Responsive Design */
}
.kids-section .section-title {
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-700);
  font-size: 2.5rem;
  color: var(--tf-purple);
  text-align: center;
  margin-bottom: 200px;
}
.kids-section .kids-grid {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 170px 30px;
  justify-content: center;
}
.kids-section .kids-grid .kid-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  width: 320px;
  max-width: 380px;
  position: relative;
}
.kids-section .kids-grid .kid-card .card-top {
  padding: 20px 20px 55px;
  background-color: #F2E5F8;
  border-radius: 20px 20px 0 0;
}
.kids-section .kids-grid .kid-card .card-top .card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.kids-section .kids-grid .kid-card .card-top .card-header .kid-image-container {
  position: absolute;
  width: 165px;
  height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -85px;
  z-index: 0;
}
.kids-section .kids-grid .kid-card .card-top .card-header .kid-image-container::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid var(--tf-purple);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: -1;
}
.kids-section .kids-grid .kid-card .card-top .card-header .kid-image-container .kid-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.kids-section .kids-grid .kid-card .card-top .card-header .elephant-progress {
  margin-left: auto;
}
.kids-section .kids-grid .kid-card .card-top .card-header .elephant-progress .elephant-container {
  position: relative;
  width: 100%;
  max-width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kids-section .kids-grid .kid-card .card-top .card-header .elephant-progress .elephant-container .elephant-progress-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}
.kids-section .kids-grid .kid-card .card-top .card-header .elephant-progress .elephant-container .progress-percentage {
  position: absolute;
  top: 40%;
  left: 60%;
  transform: translate(-50%, -50%);
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-700);
  font-size: 22px;
  color: #FFF;
  text-align: center;
  -webkit-text-stroke-width: 0.75px;
  -webkit-text-stroke-color: var(--tf-pink);
}
.kids-section .kids-grid .kid-card .amounts-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.kids-section .kids-grid .kid-card .amounts-section .amount-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.kids-section .kids-grid .kid-card .amounts-section .amount-row .amount-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.kids-section .kids-grid .kid-card .amounts-section .amount-row .amount-item .amount-label {
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-500);
  font-size: 14px;
  line-height: 100%;
  color: var(--tf-gray);
}
.kids-section .kids-grid .kid-card .amounts-section .amount-row .amount-item .amount-value {
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-700);
  font-size: 26px;
  line-height: 100%;
}
.kids-section .kids-grid .kid-card .amounts-section .amount-row .amount-item .amount-value.collected {
  color: var(--tf-pink);
}
.kids-section .kids-grid .kid-card .amounts-section .amount-row .amount-item .amount-value.required {
  color: var(--tf-purple);
}
.kids-section .kids-grid .kid-card .amounts-section .progress-bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
.kids-section .kids-grid .kid-card .amounts-section .progress-bar .progress-fill {
  height: 100%;
  background: var(--tf-purple);
  border-radius: 4px;
  transition: width 0.3s ease;
}
.kids-section .kids-grid .kid-card .card-bottom {
  padding: 40px 20px 20px;
  background-color: #FFF;
  border-radius: 20px 20px 20px 20px;
  margin-top: -40px;
}
.kids-section .kids-grid .kid-card .card-bottom .kid-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 110px;
  margin-top: 16px;
}
.kids-section .kids-grid .kid-card .card-bottom .kid-details .kid-name {
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-700);
  font-size: 22px;
  line-height: 130%;
  color: var(--tf-purple);
  margin: 0;
}
.kids-section .kids-grid .kid-card .card-bottom .kid-details .kid-age {
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-500);
  font-size: 18px;
  line-height: 130%;
  color: var(--tf-gray);
  margin: 0;
}
.kids-section .kids-grid .kid-card .card-bottom .kid-details .kid-diagnosis {
  font-family: var(--tf-avenir);
  font-size: 18px;
  line-height: 130%;
  color: var(--tf-gray);
  margin: 0;
  min-height: 65px;
}
.kids-section .kids-grid .kid-card .card-bottom .kid-details .kid-diagnosis .diagnosis-label {
  font-weight: var(--tf-fw-400);
}
.kids-section .kids-grid .kid-card .card-bottom .kid-details .kid-diagnosis .diagnosis-value {
  font-weight: var(--tf-fw-400);
}
.kids-section .kids-grid .kid-card .card-bottom .card-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.kids-section .kids-grid .kid-card .card-bottom .card-actions .donate-btn {
  background: var(--tf-purple-gradient);
  color: white;
  border: 1px solid var(--tf-purple);
  border-radius: 56px;
  padding: 8px 20px;
  text-decoration: none;
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-600);
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.kids-section .kids-grid .kid-card .card-bottom .card-actions .donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 36, 131, 0.3);
  color: white;
}
.kids-section .kids-grid .kid-card .card-bottom .card-actions .donate-btn--disabled {
  background: linear-gradient(135deg, #9e9e9e 0%, #757575 50%, #616161 100%);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid #9e9e9e;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.85;
}
.kids-section .kids-grid .kid-card .card-bottom .card-actions .donate-btn--disabled:hover {
  transform: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.9);
}
.kids-section .kids-grid .kid-card .card-bottom .card-actions .more-about-link {
  color: var(--tf-purple);
  text-align: center;
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-600);
  font-size: 16px;
  line-height: 110%;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.kids-section .kids-grid .kid-card .card-bottom .card-actions .more-about-link:hover {
  color: var(--tf-pink);
}
@media (max-width: 768px) {
  .kids-section {
    padding: 80px 0;
  }
  .kids-section .section-title {
    font-size: clamp(1.75rem, 5vw, 2rem);
    margin-bottom: 60px;
    padding: 0 20px;
  }
  .kids-section .kids-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 120px 30px;
  }
  .kids-section .kids-grid .kid-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .kids-section .kids-grid .kid-card .card-top {
    position: relative;
    padding: 0 20px 15px;
  }
  .kids-section .kids-grid .kid-card .card-top .card-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 85px;
  }
  .kids-section .kids-grid .kid-card .card-top .card-header .kid-image-container {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1;
    width: 140px;
    height: 140px;
  }
  .kids-section .kids-grid .kid-card .card-top .card-header .kid-image-container::before {
    width: 152px;
    height: 152px;
  }
  .kids-section .kids-grid .kid-card .card-top .card-header .elephant-progress {
    margin-left: auto;
    margin-right: 0;
  }
  .kids-section .kids-grid .kid-card .amounts-section .amount-row {
    flex-direction: column;
    gap: 1rem;
    padding: 16px 0;
  }
  .kids-section .kids-grid .kid-card .card-bottom .kid-details .kid-diagnosis {
    padding-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .kids-section {
    padding: 60px 0;
  }
  .kids-section .section-title {
    margin-bottom: 50px;
  }
  .kids-section .kids-grid {
    gap: 70px 20px;
  }
}

/* ==========================================================================
   Inspiration Banner Section
   ========================================================================== */
.inspiration {
  background-color: #F9F2FC;
}

.inspiration-banner {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Responsive Design */
}
.inspiration-banner .banner-content {
  text-align: center;
}
.inspiration-banner .banner-content .banner-message {
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-700);
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--tf-purple);
  margin: 0;
  text-align: center;
  max-width: 1000px;
  background: linear-gradient(92deg, #5C2483 0.25%, #951B81 80.37%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inspiration-banner .banner-content .banner-message .banner-highlight {
  display: block;
  margin-top: 0.5rem;
  font-weight: var(--tf-fw-800);
}
@media (max-width: 768px) {
  .inspiration-banner {
    padding: 60px 0;
  }
  .inspiration-banner .banner-content {
    padding: 0 20px;
  }
  .inspiration-banner .banner-content .banner-message {
    font-size: clamp(1.5rem, 4.5vw, 1.8rem);
    line-height: 1.4;
  }
}
@media (max-width: 480px) {
  .inspiration-banner {
    padding: 40px 0;
  }
  .inspiration-banner .banner-content {
    padding: 0 20px;
  }
  .inspiration-banner .banner-content .banner-message {
    font-size: clamp(1.3rem, 5vw, 1.5rem);
    line-height: 1.5;
  }
}

/* ==========================================================================
   Our Beneficiaries Hero Section
   ========================================================================== */
.our-beneficiaries-banner {
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(249, 242, 252, 0.4) 0%, rgb(255, 255, 255) 100%);
}
.our-beneficiaries-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(149, 27, 129, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.our-beneficiaries-banner .banner-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.our-beneficiaries-banner .banner-content .banner-message {
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-800);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.35;
  margin: 0;
  text-align: center;
  max-width: 1100px;
  padding: 0 20px;
  background: linear-gradient(135deg, rgb(92, 36, 131) 0%, rgba(92, 36, 131, 0.85) 45%, rgb(149, 27, 129) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out;
}
.our-beneficiaries-banner .banner-content .banner-message .banner-highlight {
  position: relative;
  display: inline-block;
  font-weight: var(--tf-fw-900);
  background: linear-gradient(135deg, var(--tf-pink) 0%, rgba(149, 27, 129, 0.9) 50%, var(--tf-purple) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 4px 12px;
  margin: 0 4px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}
.our-beneficiaries-banner .banner-content .banner-message .banner-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(149, 27, 129, 0.15) 0%, rgba(92, 36, 131, 0.15) 100%);
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.our-beneficiaries-banner .banner-content .banner-message .banner-highlight::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--tf-pink), var(--tf-purple));
  border-radius: 14px;
  z-index: -2;
  opacity: 0.2;
  filter: blur(8px);
  transition: opacity 0.4s ease;
}
.our-beneficiaries-banner .banner-content .banner-message .banner-highlight:hover {
  transform: translateY(-2px);
}
.our-beneficiaries-banner .banner-content .banner-message .banner-highlight:hover::before {
  opacity: 1;
}
.our-beneficiaries-banner .banner-content .banner-message .banner-highlight:hover::after {
  opacity: 0.35;
}
.our-beneficiaries-banner .banner-content .banner-message .banner-highlight .count-number {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}
.our-beneficiaries-banner .banner-content .banner-message .banner-highlight .count-suffix {
  display: inline-block;
  margin-left: 0.15em;
}
.our-beneficiaries-banner .banner-content .banner-message .banner-highlight.counted {
  animation: highlightPulse 0.6s ease-out 2.3s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes highlightPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@media (max-width: 768px) {
  .our-beneficiaries-banner {
    padding: 70px 0;
  }
  .our-beneficiaries-banner .banner-content {
    padding: 0 20px;
  }
  .our-beneficiaries-banner .banner-content .banner-message {
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.4;
  }
  .our-beneficiaries-banner .banner-content .banner-message .banner-highlight {
    padding: 3px 10px;
    margin: 0 3px;
  }
}
@media (max-width: 480px) {
  .our-beneficiaries-banner {
    padding: 50px 0;
  }
  .our-beneficiaries-banner .banner-content {
    padding: 0 20px;
  }
  .our-beneficiaries-banner .banner-content .banner-message {
    font-size: clamp(1.3rem, 6vw, 1.75rem);
    line-height: 1.5;
  }
  .our-beneficiaries-banner .banner-content .banner-message .banner-highlight {
    padding: 2px 8px;
    margin: 0 2px;
    border-radius: 10px;
  }
}

/* ==========================================================================
   Making a Difference Stats Section
   ========================================================================== */
.making-difference {
  position: relative;
  overflow: hidden;
  background: url("../images/making-a-difference-bg.png") no-repeat center center;
  padding-bottom: 40px;
  /* Responsive Design */
}
.making-difference .stats-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.making-difference .stats-section .stats-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.making-difference .stats-section .stats-container .stats-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.making-difference .stats-section .stats-container .stats-content .stats-text .stats-title {
  color: var(--tf-purple);
  font-size: 50px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
}
.making-difference .stats-section .stats-container .stats-content .stats-text .stats-subtitle {
  color: var(--tf-gray);
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.making-difference .stats-section .stats-container .stats-content .stats-text .stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.making-difference .stats-section .stats-container .stats-content .stats-text .stats-grid .stat-item {
  border-radius: 10px;
  background: #FAF6FD;
  padding: 12px 20px;
  width: 100%;
  max-width: 300px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.making-difference .stats-section .stats-container .stats-content .stats-text .stats-grid .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(92, 36, 131, 0.15);
}
.making-difference .stats-section .stats-container .stats-content .stats-text .stats-grid .stat-item .stat-number {
  color: #FFF;
  -webkit-text-stroke-width: 0.86px;
  -webkit-text-stroke-color: var(--tf-purple);
  font-size: 68px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -2.745px;
}
.making-difference .stats-section .stats-container .stats-content .stats-text .stats-grid .stat-item .stat-label {
  color: #000;
  font-size: 25px;
  font-weight: 500;
  line-height: 110%;
}
.making-difference .stats-section .stats-container .stats-content .stats-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.making-difference .stats-section .stats-container .stats-content .stats-icon .medal-icon {
  width: 100%;
  max-width: 280px;
  height: auto;
}
@media (max-width: 1024px) {
  .making-difference .stats-section .stats-container .stats-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .making-difference .stats-section .stats-container .stats-content .stats-icon {
    order: -1;
  }
  .making-difference .stats-section .stats-container .stats-content .stats-icon .medal-icon {
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .making-difference .stats-section {
    padding: 60px 0;
  }
  .making-difference .stats-section .stats-container {
    padding: 0 20px;
  }
  .making-difference .stats-section .stats-container .stats-content .stats-text .stats-title {
    font-size: clamp(1.9rem, 5vw, 2.2rem);
  }
  .making-difference .stats-section .stats-container .stats-content .stats-text .stats-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: 2rem;
  }
  .making-difference .stats-section .stats-container .stats-content .stats-text .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .making-difference .stats-section .stats-container .stats-content .stats-text .stats-grid .stat-item {
    padding: 1.5rem 1rem;
    max-width: 100%;
    box-sizing: border-box;
  }
  .making-difference .stats-section .stats-container .stats-content .stats-text .stats-grid .stat-item .stat-number {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  .making-difference .stats-section .stats-container .stats-content .stats-text .stats-grid .stat-item .stat-label {
    font-size: clamp(0.85rem, 2.2vw, 0.9rem);
  }
  .making-difference .stats-section .stats-container .stats-content .stats-icon .medal-icon {
    max-width: 250px;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 480px) {
  .making-difference .stats-section {
    padding: 40px 0;
  }
  .making-difference .stats-section .stats-container .stats-content .stats-text .stats-title {
    font-size: 1.8rem;
  }
  .making-difference .stats-section .stats-container .stats-content .stats-text .stats-subtitle {
    font-size: 1rem;
  }
  .making-difference .stats-section .stats-container .stats-content .stats-text .stats-grid .stat-item {
    padding: 1.2rem 0.8rem;
  }
  .making-difference .stats-section .stats-container .stats-content .stats-text .stats-grid .stat-item .stat-number {
    font-size: 2rem;
  }
  .making-difference .stats-section .stats-container .stats-content .stats-text .stats-grid .stat-item .stat-label {
    font-size: 0.8rem;
  }
  .making-difference .stats-section .stats-container .stats-content .stats-icon .medal-icon {
    max-width: 80px;
  }
}

.our-mission {
  background: white;
  padding: 100px 0;
}
.our-mission .mission-section .mission-container {
  margin: 0 auto;
}
.our-mission .mission-section .mission-container .mission-content {
  display: flex;
  align-items: center;
  gap: 40px;
}
.our-mission .mission-section .mission-container .mission-content .mission-image {
  width: 50%;
}
.our-mission .mission-section .mission-container .mission-content .mission-image .mission-photo {
  width: 100%;
}
.our-mission .mission-section .mission-container .mission-content .mission-text {
  width: 50%;
}
.our-mission .mission-section .mission-container .mission-content .mission-text .mission-title {
  color: var(--tf-purple);
  font-size: 50px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 16px;
}
.our-mission .mission-section .mission-container .mission-content .mission-text .mission-description p {
  color: var(--tf-gray);
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 16px;
}
.our-mission .mission-section .mission-container .mission-content .mission-text .mission-description p:last-child {
  margin-bottom: 0;
}
.our-mission .mission-section .mission-container .mission-content .mission-text .mission-description p strong {
  font-weight: var(--tf-fw-700);
}
@media (max-width: 1024px) {
  .our-mission {
    padding: 80px 0;
  }
  .our-mission .mission-section .mission-container .mission-content {
    gap: 60px;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-text .mission-title {
    font-size: 2.5rem;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-text .mission-description p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .our-mission {
    padding: 60px 0;
  }
  .our-mission .mission-section .mission-container {
    padding: 0 20px;
  }
  .our-mission .mission-section .mission-container .mission-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-image {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-image .mission-photo {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-image .image-wrapper .mission-photo {
    max-width: 400px;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-image .image-wrapper .heart-decoration {
    width: 35px;
    height: 35px;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-image .image-wrapper .heart-decoration::before {
    font-size: 18px;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-text {
    width: 100%;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-text .mission-title {
    font-size: clamp(1.75rem, 5vw, 2rem);
    margin-bottom: 1.5rem;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-text .mission-description p {
    font-size: clamp(0.9rem, 2.5vw, 0.95rem);
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 480px) {
  .our-mission {
    padding: 40px 0;
  }
  .our-mission .mission-section .mission-container {
    padding: 0 15px;
  }
  .our-mission .mission-section .mission-container .mission-content {
    gap: 30px;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-image .image-wrapper .mission-photo {
    max-width: 100%;
    border-radius: 15px;
    border-width: 2px;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-image .image-wrapper .heart-decoration {
    width: 30px;
    height: 30px;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-image .image-wrapper .heart-decoration::before {
    font-size: 16px;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-image .image-wrapper .heart-decoration.heart-top {
    top: -15px;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-image .image-wrapper .heart-decoration.heart-bottom-left {
    bottom: -15px;
    left: -15px;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-image .image-wrapper .heart-decoration.heart-right {
    right: -15px;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-text .mission-title {
    font-size: 1.8rem;
  }
  .our-mission .mission-section .mission-container .mission-content .mission-text .mission-description p {
    font-size: 0.9rem;
  }
}

.partners-slider {
  position: relative;
  background: #f8f6ff;
}
.partners-slider .partners-section .partners-container {
  margin: 0 auto;
  padding: 16px 0;
}
.partners-slider .partners-section .partners-container .tab-button {
  display: flex;
  max-width: fit-content;
  margin: 0 auto 15px;
  padding: 2px 12px;
  font-size: 16px;
  position: absolute;
  top: -30px;
  background-color: #f8f6ff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  border: 1px solid var(--tf-pink);
  left: 50%;
  transform: translateX(-50%);
}
.partners-slider .partners-section .partners-container .partners-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.partners-slider .partners-section .partners-container .partners-slider-wrapper .partners-track {
  font-family: var(--tf-avenir);
  display: flex;
  align-items: center;
  gap: 80px;
  width: fit-content;
  transition: transform 0.1s linear;
}
.partners-slider .partners-section .partners-container .partners-slider-wrapper .partners-track:hover {
  background: #f0f0f0;
  color: var(--tf-purple);
}
.partners-slider .partners-section .partners-container .partners-slider-wrapper .partners-track .partner-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.partners-slider .partners-section .partners-container .partners-slider-wrapper .partners-track .partner-logo.active {
  background: var(--tf-purple);
  color: white;
}
.partners-slider .partners-section .partners-container .partners-slider-wrapper .partners-track .partner-logo .logo-img {
  max-height: 35px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}
@media (max-width: 1024px) {
  .partners-slider {
    padding: 50px 0;
  }
  .partners-slider .partners-section .partners-container .partners-slider-wrapper .partners-track {
    gap: 60px;
    width: fit-content;
  }
  .partners-slider .partners-section .partners-container .partners-slider-wrapper .partners-track .partner-logo {
    height: 70px;
  }
  .partners-slider .partners-section .partners-container .partners-slider-wrapper .partners-track .partner-logo .logo-img {
    max-height: 50px;
    max-width: 150px;
  }
}
@media (max-width: 768px) {
  .partners-slider {
    padding: 40px 0;
  }
  .partners-slider .partners-section .partners-container {
    padding: 0 20px;
    overflow-x: hidden;
  }
  .partners-slider .partners-section .partners-container .partners-slider-wrapper {
    overflow-x: hidden;
    width: 100%;
  }
  .partners-slider .partners-section .partners-container .partners-slider-wrapper .partners-track {
    gap: 40px;
    width: fit-content;
  }
  .partners-slider .partners-section .partners-container .partners-slider-wrapper .partners-track .partner-logo {
    height: 60px;
  }
  .partners-slider .partners-section .partners-container .partners-slider-wrapper .partners-track .partner-logo .logo-img {
    max-height: 40px;
    max-width: 120px;
    width: auto;
    height: auto;
  }
}
@media (max-width: 480px) {
  .partners-slider {
    padding: 30px 0;
  }
  .partners-slider .partners-section .partners-container {
    padding: 0 20px;
  }
  .partners-slider .partners-section .partners-container .partners-slider-wrapper .partners-track {
    gap: 30px;
    width: fit-content;
  }
  .partners-slider .partners-section .partners-container .partners-slider-wrapper .partners-track .partner-logo {
    height: 50px;
  }
  .partners-slider .partners-section .partners-container .partners-slider-wrapper .partners-track .partner-logo .logo-img {
    max-height: 35px;
    max-width: 100px;
    width: auto;
    height: auto;
  }
}

.site-footer {
  background: linear-gradient(to top, var(--tf-purple), var(--tf-pink));
  color: white;
  padding: 60px 0 30px 0;
}
.site-footer .footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-footer .footer-container .footer-top {
  margin-bottom: 30px;
}
.site-footer .footer-container .footer-top .footer-top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.site-footer .footer-container .footer-top .footer-top-content .footer-logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.site-footer .footer-container .footer-top .footer-top-content .footer-logo-section .footer-logo .logo-img {
  height: 60px;
  width: auto;
}
.site-footer .footer-container .footer-top .footer-top-content .footer-logo-section .footer-description p {
  font-family: var(--tf-avenir);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.site-footer .footer-container .footer-top .footer-top-content .footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}
.site-footer .footer-container .footer-top .footer-top-content .footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  color: var(--tf-purple);
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-footer .footer-container .footer-top .footer-top-content .footer-social .social-link:hover {
  background: var(--tf-pink);
  color: white;
  transform: translateY(-2px);
}
.site-footer .footer-container .footer-top .footer-top-content .footer-social .social-link svg {
  width: 20px;
  height: 20px;
}
.site-footer .footer-container .footer-top .footer-top-content .footer-social .social-link i {
  font-size: 20px;
  line-height: 1;
}
.site-footer .footer-container .footer-top .footer-top-content .footer-newsletter .newsletter-form {
  display: flex;
  gap: 10px;
}
.site-footer .footer-container .footer-top .footer-top-content .footer-newsletter .newsletter-form .newsletter-input {
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  font-family: var(--tf-avenir);
  font-size: 14px;
  background: white;
  color: var(--tf-gray);
  width: 200px;
}
.site-footer .footer-container .footer-top .footer-top-content .footer-newsletter .newsletter-form .newsletter-input::placeholder {
  color: #999;
}
.site-footer .footer-container .footer-top .footer-top-content .footer-newsletter .newsletter-form .newsletter-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--tf-pink);
}
.site-footer .footer-container .footer-top .footer-top-content .footer-newsletter .newsletter-form .newsletter-button {
  padding: 12px 20px;
  background: var(--tf-purple);
  color: white;
  border: 2px solid white;
  border-radius: 4px;
  font-family: var(--tf-avenir);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.site-footer .footer-container .footer-top .footer-top-content .footer-newsletter .newsletter-form .newsletter-button:hover {
  background: white;
  color: var(--tf-purple);
}
.site-footer .footer-container .footer-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 40px;
}
.site-footer .footer-container .footer-bottom .footer-bottom-content {
  display: flex;
  gap: 60px;
}
.site-footer .footer-container .footer-bottom .footer-bottom-content .footer-contact-section {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.site-footer .footer-container .footer-bottom .footer-bottom-content .footer-contact-section .footer-contact p {
  font-family: var(--tf-avenir);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 8px 0;
  line-height: 1.4;
}
.site-footer .footer-container .footer-bottom .footer-bottom-content .footer-contact-section .footer-contact p:last-child {
  margin-bottom: 0;
}
.site-footer .footer-container .footer-bottom .footer-bottom-content .footer-contact-section .footer-copyright p {
  font-family: var(--tf-avenir);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.site-footer .footer-container .footer-bottom .footer-bottom-content .footer-nav-columns {
  width: 60%;
  display: flex;
  gap: 40px;
}
.site-footer .footer-container .footer-bottom .footer-bottom-content .footer-nav-columns .footer-nav-column {
  flex: 1;
}
.site-footer .footer-container .footer-bottom .footer-bottom-content .footer-nav-columns .footer-nav-column .footer-nav-title {
  font-family: var(--tf-avenir);
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}
.site-footer .footer-container .footer-bottom .footer-bottom-content .footer-nav-columns .footer-nav-column .footer-nav-title:hover {
  color: rgba(255, 255, 255, 0.8);
}
.site-footer .footer-container .footer-bottom .footer-bottom-content .footer-nav-columns .footer-nav-column .footer-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-container .footer-bottom .footer-bottom-content .footer-nav-columns .footer-nav-column .footer-nav-menu li {
  margin-bottom: 12px;
}
.site-footer .footer-container .footer-bottom .footer-bottom-content .footer-nav-columns .footer-nav-column .footer-nav-menu li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: var(--tf-avenir);
  font-size: 14px;
  transition: color 0.3s ease;
}
.site-footer .footer-container .footer-bottom .footer-bottom-content .footer-nav-columns .footer-nav-column .footer-nav-menu li a:hover {
  color: white;
}
@media (max-width: 1024px) {
  .site-footer .footer-container .footer-top .footer-top-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .site-footer .footer-container .footer-top .footer-top-content .footer-logo-section {
    flex-direction: column;
    gap: 15px;
  }
  .site-footer .footer-container .footer-top .footer-top-content .footer-newsletter .newsletter-form {
    justify-content: center;
  }
  .site-footer .footer-container .footer-bottom .footer-bottom-content {
    flex-direction: column;
    gap: 40px;
  }
  .site-footer .footer-container .footer-bottom .footer-bottom-content .footer-contact-section {
    width: 100%;
    text-align: center;
  }
  .site-footer .footer-container .footer-bottom .footer-bottom-content .footer-nav-columns {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px 0;
  }
  .site-footer .footer-container .footer-top {
    margin-bottom: 20px;
  }
  .site-footer .footer-container .footer-top .footer-top-content .footer-social {
    justify-content: center;
  }
  .site-footer .footer-container .footer-separator {
    margin-bottom: 30px;
  }
  .site-footer .footer-container .footer-bottom .footer-bottom-content .footer-nav-columns {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .site-footer .footer-container {
    padding: 0 15px;
  }
  .site-footer .footer-container .footer-top .footer-top-content .footer-newsletter .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
  .site-footer .footer-container .footer-top .footer-top-content .footer-newsletter .newsletter-form .newsletter-input {
    width: 100%;
  }
  .site-footer .footer-container .footer-top .footer-top-content .footer-newsletter .newsletter-form .newsletter-button {
    width: 100%;
  }
}

.single-events .single-post-content {
  padding: 100px 0 120px;
}
@media (max-width: 768px) {
  .single-events .single-post-content {
    padding: 80px 0 100px;
  }
}
@media (max-width: 480px) {
  .single-events .single-post-content {
    padding: 60px 0 80px;
  }
}

/*# sourceMappingURL=main.css.map */
