:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #222222;
  --heading-color: #222222;
  --footer-bg-color: #0d0d0d7c;
  --link-color: #feb543;
  --header-bg-color: #2c08a0;
  --font-family: 'Century Gothic', Arial, sans-serif;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
  linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url("/images/news-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
    font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}
  section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}
h2, h3 {
  color: var(--heading-color);
}
.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}
.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
      .sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}
.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}
.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}
.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}
.sidebar-page-list li a:hover {
  padding-left: 11px;
}
      .twitter-tweet {
  width: 279px !important;
}
.x {
  display: flex;
  justify-content: center;
}
.error_page {
  min-height: 70vh;
}
  .footer-news {
  background: var(--footer-bg-color);
  border-top: 3px solid var(--link-color);
  padding: 2.5rem 1rem;
  position: relative;
  overflow: hidden;
  color: var(--footer-text-color);
}
.footer-news a {
  color: var(--link-color);
  text-decoration: none;
  position: relative;
}
.footer-news a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--link-color);
  transition: width 0.3s ease;
}
.footer-news a:hover::after {
  width: 100%;
}
.footer-newsletter h3 {
  color: var(--footer-text-color) !important;
  margin-bottom: 1rem;
  font-weight: 600;
}
.newsletter-form input {
  padding: 0.6rem 1rem;
  border: 1px solid var(--link-color);
  border-radius: 5px;
  font-size: 1rem;
}
.newsletter-form button {
  padding: 0.6rem 1.5rem;
  border: none;
  background: var(--link-color);
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(102, 143, 106, 0.2);
}
.footer-social .social-icon {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--link-color);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 2px solid var(--link-color);
  border-radius: 50%;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.footer-social .social-icon:hover {
  transform: scale(1.2) rotate(-10deg);
  background: var(--link-color);
  color: #fff;
}
.footer-news::after {
  right: 10px;
  top: auto;
  bottom: 10px;
  left: auto;
}
@media (max-width: 767px) {
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}
 .navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: var(--header-bg-color) !important;
}
.hero-section {
  padding: 55px 0;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.61);
}
.hero-section.with-bg {
  background-image: url('/images/newspapers-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section.with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(0, 0, 0));
  opacity: 0.5;
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
}
.navbar-light .navbar-nav .nav-link {
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  padding: 0 1rem;
  transition: color 0.3s ease, transform 0.2s ease;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--link-color) !important;
  transform: translateY(-1px);
}
  .navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  border-bottom: 2px solid var(--link-color);
}
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(
      in srgb,
      var(--header-bg-color) 65%,
      transparent
    );
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-nav .nav-item {
    margin: 7px 0;
  }
  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }
  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }
  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}
.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}
.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}
.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}
.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}
.dropdown.open .dropdown-menu {
  display: block;
}
@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }
  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.contact-email {
  color: var(--link-color);
  font-weight: 600;
  text-decoration: none;
}
.contact-email:hover {
  text-decoration: underline;
}
.contact-form-card,
.contact-info-card {
  background: var(--header-bg-color);
  color: var(--nav-link-color);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.contact-info-card h2 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--nav-link-color) !important;
}
.contact-info-item {
  margin-top: 18px;
}
.contact-info-item .label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 4px;
}
.contact-form-card .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--nav-link-colo);
}
.contact-form-card .form-control {
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  padding: 0.55rem 0.75rem;
  background-color: #fff;
}
.contact-form-card .form-control::placeholder {
  color: #9ca3af;
}
.contact-form-card .form-control:focus {
  border-color: var(--hero-gradient1);
  box-shadow: 0 0 0 0.15rem rgba(22, 130, 149, 0.2);
}
.contact-submit-btn {
  background: linear-gradient(
    135deg,
    var(--hero-gradient1),
    var(--hero-gradient2)
  );
  border: 0;
  color: #fff !important;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
:root{
  --ink: #1f2330;
  --muted: #5b6275;
  --bg-paper: #f5f3ef;
  --bg-paper-2: #fbfaf8;
  --indigo: #2b1b7a;      
  --indigo-2: #3a2aa6;    
  --gold: #f2c94c;        
  --line: rgba(43, 27, 122, .18);
  --shadow: 0 18px 50px rgba(0,0,0,.12);
}
.fancy-section{
  position: relative;
  max-width: 980px;
  margin: 40px auto;
  padding: clamp(18px, 3.2vw, 34px);
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 15% 0%, rgba(58,42,166,.10), transparent 55%),
    radial-gradient(900px 600px at 100% 30%, rgba(43,27,122,.08), transparent 60%),
    linear-gradient(180deg, var(--bg-paper-2), var(--bg-paper));
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(43,27,122,.12);
  overflow: hidden;
  isolation: isolate;
  animation: paperIn .7s ease-out both;
}
.fancy-section::before{
  content:"";
  position:absolute;
  inset: 0 0 auto 0;
  height: 10px;
  background: linear-gradient(90deg, var(--indigo), var(--indigo-2));
  opacity: .95;
}
.fancy-section::after{
  content:"NEWS";
  position:absolute;
  top: 18px;
  right: 18px;
  font: 700 11px/1.1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing: .18em;
  color: rgba(43,27,122,.55);
  padding: 10px 12px;
  border: 1px dashed rgba(43,27,122,.35);
  border-radius: 12px;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
  transform: rotate(1deg);
}
.fancy-section .texture{
  position:absolute;
  inset: -40px;
  background:
    radial-gradient(circle at 12px 12px, rgba(43,27,122,.10) 1px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: .25;
  z-index: -1;
  animation: drift 10s ease-in-out infinite alternate;
}
.fancy-section h2{
  margin: 10px 0 12px;
  color: #151827;
  letter-spacing: .2px;
  position: relative;
  padding-bottom: 10px;
}
.fancy-section h2::after{
  content:"";
  position:absolute;
  left: 0;
  bottom: 0;
  width: min(520px, 100%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--indigo), rgba(242,201,76,.95), transparent 85%);
  animation: underlineSweep 1.2s ease-out both;
}
.fancy-section p{
  margin: 10px 0 12px;
  color: var(--muted);
}
.fancy-section a{
  color: var(--indigo);
  font-weight: 800;
  background: linear-gradient(180deg, transparent 55%, rgba(242,201,76,.35) 55%);
  padding: 0 .18em;
  border-radius: 4px;
}
.fancy-section h3{
  margin: 22px 0 10px;
  padding: 14px 14px 14px 54px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.52));
  border: 1px solid rgba(43,27,122,.14);
  box-shadow: 0 10px 22px rgba(43,27,122,.08);
  position: relative;
  color: #1b1f2b;
  transform-origin: left center;
  animation: popIn .55s ease-out both;
}
.fancy-section h3::before{
  content: "\F4DE";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--indigo-2);
  filter: drop-shadow(0 6px 10px rgba(43,27,122,.18));
}
.fancy-section h3::after{
  content:"";
  position:absolute;
  inset: 0 auto 0 0;
  width: 6px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, var(--indigo), rgba(242,201,76,.9));
  opacity: .9;
}
.fancy-section h3:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(43,27,122,.14);
  border-color: rgba(43,27,122,.22);
}
.fancy-section ul{
  margin: 12px 0 0 0;
  padding: 10px 12px 10px 18px;
  border-left: 3px solid rgba(43,27,122,.25);
  background: rgba(255,255,255,.45);
  border-radius: 12px;
}
.fancy-section li{ color: var(--muted); line-height: 1.7; }
.fancy-section ::selection{
  background: rgba(58,42,166,.22);
}
@keyframes paperIn{
  from{ opacity: 0; transform: translateY(10px) scale(.99); filter: blur(2px); }
  to  { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes underlineSweep{
  from{ width: 0; opacity: .4; }
  to  { width: min(520px, 100%); opacity: 1; }
}
@keyframes popIn{
  from{ opacity: 0; transform: translateY(8px) scale(.985); }
  to  { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes drift{
  from{ transform: translate(0,0); }
  to  { transform: translate(16px, 10px); }
}
@media (prefers-reduced-motion: reduce){
  .fancy-section,
  .fancy-section h3,
  .fancy-section h2::after,
  .fancy-section .texture{
    animation: none !important;
  }
}
:root{
  --cs-ink:#1f2330;
  --cs-muted:#5b6275;
  --cs-paper:#fbfaf8;
  --cs-paper2:#f1efe9;
  --cs-indigo:#2b1b7a;
  --cs-indigo2:#3a2aa6;
  --cs-gold:#f2c94c;
  --cs-line:rgba(43,27,122,.18);
  --cs-soft:rgba(43,27,122,.08);
}
.custom-section{
  position: relative;
  max-width: 1000px;
  margin: 44px auto;
  padding: 34px 34px 32px 34px;
  color: var(--cs-ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72)),
    repeating-linear-gradient(
      180deg,
      rgba(43,27,122,.035) 0px,
      rgba(43,27,122,.035) 2px,
      transparent 2px,
      transparent 28px
    ),
    radial-gradient(1100px 700px at 20% -10%, rgba(242,201,76,.20), transparent 58%),
    radial-gradient(900px 650px at 110% 40%, rgba(58,42,166,.14), transparent 62%),
    linear-gradient(180deg, var(--cs-paper), var(--cs-paper2));
  border-radius: 14px;
  border: 1px solid rgba(43,27,122,.14);
  box-shadow: 0 22px 60px rgba(0,0,0,.12);
  overflow: hidden;
  isolation: isolate;
  animation: csReveal .75s ease-out both;
}
.custom-section::before{
  content:"";
  position:absolute;
  inset: 0 auto 0 0;
  width: 14px;
  background:
    linear-gradient(180deg, var(--cs-indigo), var(--cs-indigo2));
  box-shadow: 8px 0 30px rgba(43,27,122,.18);
  opacity: .95;
}
.custom-section h2{
  margin: 0 0 14px 0;
  padding-left: 10px;
  color: #141826;
  position: relative;
}
.custom-section h2::before{
  content:"⟦";
  position:absolute;
  left: -6px;
  top: 0;
  color: rgba(43,27,122,.55);
}
.custom-section h2::after{
  content:"⟧";
  color: rgba(43,27,122,.55);
  margin-left: 6px;
}
.custom-section p{
  margin: 10px 0 12px;
  color: var(--cs-muted);
}
.custom-section a{
  font-weight: 850;
  color: var(--cs-indigo);
  background:
    linear-gradient(180deg, transparent 56%, rgba(242,201,76,.38) 56%);
  padding: 0 .2em;
  border-radius: 4px;
}
.custom-section p:nth-of-type(2n){
  padding-left: 16px;
  border-left: 3px solid rgba(43,27,122,.18);
  border-radius: 6px;
}
.custom-section h3{
  margin: 22px 0 10px;
  padding: 14px 14px 14px 56px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.55));
  border: 1px solid rgba(43,27,122,.16);
  box-shadow: 0 12px 26px rgba(43,27,122,.08);
  color: #1a1f2b;
  position: relative;
  animation: csCardIn .6s ease-out both;
}
.custom-section h3::before{
  content:"\F5DB"; 
  font-family: "bootstrap-icons";
  position:absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 25%, rgba(242,201,76,.70), rgba(242,201,76,.20)),
    linear-gradient(180deg, rgba(58,42,166,.20), rgba(43,27,122,.06));
  border: 1px solid rgba(43,27,122,.18);
  color: var(--cs-indigo2);
  filter: drop-shadow(0 10px 14px rgba(43,27,122,.14));
  animation: csPulse 2.6s ease-in-out infinite;
}
.custom-section h3:nth-of-type(1)::before{ content:"\F5DB"; } 
.custom-section h3:nth-of-type(2)::before{ content:"\F34A"; } 
.custom-section h3:nth-of-type(3)::before{ content:"\F5D5"; } 
.custom-section h3:hover{
  transform: translateY(-2px);
  border-color: rgba(43,27,122,.26);
  box-shadow: 0 18px 40px rgba(43,27,122,.14);
}
.custom-section a{
  color: var(--cs-indigo2);
  text-decoration: none;
  border-bottom: 1px solid rgba(58,42,166,.30);
}
.custom-section a:hover{
  border-bottom-color: rgba(58,42,166,.75);
}
@keyframes csReveal{
  from{ opacity:0; transform: translateY(14px); filter: blur(2px); }
  to  { opacity:1; transform: translateY(0); filter: blur(0); }
}
@keyframes csTag{
  from{ opacity:0; transform: translateY(-8px) rotate(-6deg); }
  to  { opacity:1; transform: translateY(0) rotate(-2deg); }
}
@keyframes csCardIn{
  from{ opacity:0; transform: translateX(-10px) scale(.99); }
  to  { opacity:1; transform: translateX(0) scale(1); }
}
@keyframes csPulse{
  0%,100%{ transform: translateY(-50%) scale(1); }
  50%{ transform: translateY(-50%) scale(1.04); }
}
@media (prefers-reduced-motion: reduce){
  .custom-section,
  .custom-section::after,
  .custom-section h3,
  .custom-section h3::before{
    animation: none !important;
  }
}
:root{
  --ss-ink:#1f2330;
  --ss-muted:#5b6275;
  --ss-indigo:#2b1b7a;     
  --ss-indigo2:#3a2aa6;    
  --ss-gold:#f2c94c;       
  --ss-glass: rgba(255,255,255,.14);
  --ss-glass-2: rgba(255,255,255,.08);
  --ss-border: rgba(255,255,255,.22);
  --ss-line: rgba(43,27,122,.20);
  --ss-shadow: 0 24px 70px rgba(0,0,0,.18);
}
.styled-section{
  position: relative;
  max-width: 1100px;
  margin: 46px auto;
  padding: clamp(18px, 3.2vw, 34px);
  color: var(--ss-ink);
  border: 1px solid var(--ss-border);
  border-radius: 18px;
  box-shadow: var(--ss-shadow);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  animation: ssEnter .75s ease-out both;
}
.styled-section .glass-texture{
  position:absolute;
  inset:-40px;
  z-index:-1;
  pointer-events:none;
  opacity:.9;
  background:
    radial-gradient(circle at 22px 22px, rgba(255,255,255,.16) 1px, transparent 1.6px) 0 0/26px 26px,
    linear-gradient(120deg, rgba(242,201,76,.14), transparent 55%),
    linear-gradient(45deg, rgba(58,42,166,.18), transparent 60%);
  filter: blur(.2px);
  animation: ssDrift 12s ease-in-out infinite alternate;
}
.styled-section::before,
.styled-section::after{
  content:"";
  position:absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  z-index:-2;
  filter: blur(26px);
  opacity: .55;
}
.styled-section::before{
  left: -120px;
  top: -140px;
  background: radial-gradient(circle at 30% 30%, rgba(58,42,166,.62), rgba(58,42,166,0));
  animation: ssFloatA 9s ease-in-out infinite;
}
.styled-section::after{
  right: -140px;
  bottom: -160px;
  background: radial-gradient(circle at 40% 40%, rgba(242,201,76,.55), rgba(242,201,76,0));
  animation: ssFloatB 10.5s ease-in-out infinite;
}
.styled-section h2{
  margin: 6px 0 12px;
  color:#141826;
  position: relative;
  padding-bottom: 10px;
}
.styled-section h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  height:3px;
  width:min(560px, 100%);
  border-radius:999px;
  background: linear-gradient(90deg, var(--ss-indigo), var(--ss-gold), transparent 85%);
  animation: ssUnderline 1.1s ease-out both;
}
.styled-section p{
  margin: 10px 0 12px;
  color: var(--ss-muted);
}
.styled-section a{
  color: var(--ss-indigo);
  font-weight: 850;
  background: linear-gradient(180deg, transparent 56%, rgba(242,201,76,.36) 56%);
  padding: 0 .18em;
  border-radius: 4px;
}
.box-one{
  position: relative;
  padding: 22px 20px 18px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.12));
  border: 1px solid rgba(255,255,255,.26);
  box-shadow: 0 18px 46px rgba(43,27,122,.16);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  overflow:hidden;
  transform: translateZ(0);
  animation: ssCardIn .7s ease-out both;
}
.box-one::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    linear-gradient(110deg,
      transparent 0%,
      rgba(255,255,255,.10) 28%,
      rgba(255,255,255,.22) 40%,
      rgba(255,255,255,.10) 52%,
      transparent 72%);
  transform: translateX(-45%);
  animation: ssSheen 4.6s ease-in-out infinite;
  pointer-events:none;
}
.box-one::after{
  content:"";
  position:absolute;
  right:-70px;
  top:-70px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(58,42,166,.22), rgba(58,42,166,0));
  filter: blur(2px);
  pointer-events:none;
}
.box-icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  margin: -6px 0 10px;
  background:
    radial-gradient(circle at 30% 25%, rgba(242,201,76,.75), rgba(242,201,76,.18)),
    linear-gradient(180deg, rgba(58,42,166,.22), rgba(43,27,122,.10));
  border: 1px solid rgba(255,255,255,.30);
  box-shadow: 0 14px 28px rgba(43,27,122,.20);
  animation: ssIconBob 2.8s ease-in-out infinite;
}
.box-icon i{
  font-size: 22px;
  color: var(--ss-indigo2);
  filter: drop-shadow(0 8px 12px rgba(43,27,122,.18));
}
.box-one h3{
  margin: 0 0 10px;
  color:#1a1f2b;
  letter-spacing: .2px;
  position: relative;
  padding-left: 12px;
}
.box-one h3::before{
  content:"";
  position:absolute;
  left:0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--ss-indigo), var(--ss-gold));
  opacity:.95;
}
.box-one p{
  margin: 10px 0 12px;
}
.box-one:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.36);
  box-shadow: 0 26px 62px rgba(43,27,122,.22);
}
.box-one:hover .box-icon{
  transform: translateY(-1px) scale(1.02);
}
@keyframes ssEnter{
  from{ opacity:0; transform: translateY(12px); filter: blur(2px); }
  to  { opacity:1; transform: translateY(0); filter: blur(0); }
}
@keyframes ssUnderline{
  from{ width: 0; opacity:.5; }
  to  { width: min(560px, 100%); opacity:1; }
}
@keyframes ssCardIn{
  from{ opacity:0; transform: translateY(10px) scale(.992); }
  to  { opacity:1; transform: translateY(0) scale(1); }
}
@keyframes ssSheen{
  0%   { transform: translateX(-55%) skewX(-10deg); opacity:.55; }
  50%  { transform: translateX(55%)  skewX(-10deg); opacity:.75; }
  100% { transform: translateX(-55%) skewX(-10deg); opacity:.55; }
}
@keyframes ssIconBob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-4px); }
}
@keyframes ssDrift{
  from{ transform: translate(0,0); }
  to  { transform: translate(18px, 10px); }
}
@keyframes ssFloatA{
  0%,100%{ transform: translate(0,0); }
  50%{ transform: translate(18px, 26px); }
}
@keyframes ssFloatB{
  0%,100%{ transform: translate(0,0); }
  50%{ transform: translate(-22px, -18px); }
}
@media (prefers-reduced-motion: reduce){
  .styled-section,
  .styled-section .glass-texture,
  .styled-section::before,
  .styled-section::after,
  .box-one,
  .box-one::before,
  .box-icon,
  .styled-section h2::after{
    animation: none !important;
  }
}
.newsletter{
  position: relative;
  padding: 16px 14px 14px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(520px 260px at 20% 0%, rgba(58,42,166,.22), transparent 60%),
    radial-gradient(520px 260px at 120% 40%, rgba(242,201,76,.18), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.10));
  border: 1px solid rgba(255,255,255,.26);
  box-shadow: 0 18px 46px rgba(0,0,0,.14);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  animation: nlIn .65s ease-out both;
}
.newsletter::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    linear-gradient(110deg,
      transparent 0%,
      rgba(255,255,255,.10) 28%,
      rgba(255,255,255,.20) 40%,
      rgba(255,255,255,.10) 52%,
      transparent 72%);
  transform: translateX(-55%) skewX(-10deg);
  pointer-events:none;
  opacity:.65;
  animation: nlSheen 5.2s ease-in-out infinite;
}
.newsletter::after{
  content:"";
  position:absolute;
  right:-90px;
  top:-90px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(43,27,122,.22), rgba(43,27,122,0));
  pointer-events:none;
}
.newsletter-head{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  margin-bottom: 12px;
  position: relative;
}
.newsletter-badge{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at 30% 25%, rgba(242,201,76,.78), rgba(242,201,76,.18)),
    linear-gradient(180deg, rgba(58,42,166,.24), rgba(43,27,122,.10));
  border: 1px solid rgba(255,255,255,.30);
  box-shadow: 0 14px 28px rgba(43,27,122,.18);
}
.newsletter-badge i{
  font-size: 18px;
  color: #3a2aa6;
  filter: drop-shadow(0 8px 12px rgba(43,27,122,.15));
}
.newsletter-titles h4{
  margin: 0 0 4px;
  color: #1a1f2b;
  letter-spacing: .2px;
}
.newsletter-titles p{
  margin: 0;
  font-size: 12px;
  color: rgba(91,98,117,.95);
}
.newsletter-form{
  display:grid;
  gap: 10px;
  position: relative;
}
.newsletter-label{
  font: 800 12px/1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: rgba(43,27,122,.85);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.newsletter-inputwrap{
  position: relative;
}
.newsletter-inputwrap i{
  position:absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(58,42,166,.85);
  opacity: .9;
}
.newsletter-input{
  width: 100%;
  border-radius: 12px;
  padding: 12px 12px 12px 38px;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.18);
  color: #1f2330;
  outline: none;
  box-shadow: 0 12px 30px rgba(43,27,122,.10);
  backdrop-filter: blur(10px) saturate(135%);
  -webkit-backdrop-filter: blur(10px) saturate(135%);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.newsletter-input::placeholder{
  color: rgba(91,98,117,.75);
}
.newsletter-input:focus{
  border-color: rgba(242,201,76,.55);
  box-shadow: 0 16px 44px rgba(43,27,122,.16);
  transform: translateY(-1px);
}
.newsletter-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  border-radius: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.28);
  background: linear-gradient(180deg, rgba(58,42,166,.22), rgba(43,27,122,.14));
  color: rgba(31,35,48,.55);
  font: 900 14px/1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing: .02em;
  cursor: not-allowed;
  opacity: .75;
  box-shadow: 0 14px 34px rgba(43,27,122,.12);
}
.newsletter-btn i{
  font-size: 14px;
  color: rgba(31,35,48,.55);
}
.newsletter-footnote{
  display:flex;
  align-items:center;
  gap: 8px;
  font: 600 12px/1.4 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: rgba(91,98,117,.85);
}
.newsletter-footnote i{
  color: rgba(43,27,122,.65);
}
@keyframes nlIn{
  from{ opacity:0; transform: translateY(10px); filter: blur(2px); }
  to  { opacity:1; transform: translateY(0); filter: blur(0); }
}
@keyframes nlSheen{
  0%   { transform: translateX(-60%) skewX(-10deg); opacity:.55; }
  50%  { transform: translateX(60%)  skewX(-10deg); opacity:.75; }
  100% { transform: translateX(-60%) skewX(-10deg); opacity:.55; }
}
@media (prefers-reduced-motion: reduce){
  .newsletter,
  .newsletter::before{
    animation: none !important;
  }
}
  .tw-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .twitter-tweet {
    max-width: 100%;
    margin: 0 auto;
  }
.sidebar-linking{
  position: relative;
  padding: 16px 14px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(520px 260px at 18% 0%, rgba(58,42,166,.22), transparent 60%),
    radial-gradient(520px 260px at 120% 45%, rgba(242,201,76,.16), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.10));
  border: 1px solid rgba(255,255,255,.26);
  box-shadow: 0 18px 46px rgba(0,0,0,.14);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  animation: qlIn .65s ease-out both;
}
.sidebar-linking::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  opacity:.65;
  background:
    linear-gradient(110deg,
      transparent 0%,
      rgba(255,255,255,.10) 28%,
      rgba(255,255,255,.20) 40%,
      rgba(255,255,255,.10) 52%,
      transparent 72%);
  transform: translateX(-60%) skewX(-10deg);
  animation: qlSheen 5.4s ease-in-out infinite;
}
.sidebar-linking::after{
  content:"";
  position:absolute;
  right:-90px;
  top:-90px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(43,27,122,.22), rgba(43,27,122,0));
  pointer-events:none;
}
.sidebar-linking h3{
  margin: 0 0 10px;
  padding-left: 42px;
  position: relative;
  color: #1a1f2b;
  letter-spacing: .2px;
}
.sidebar-linking h3::before{
  content:"\F471"; 
  font-family: "bootstrap-icons";
  position:absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 30% 25%, rgba(242,201,76,.78), rgba(242,201,76,.18)),
    linear-gradient(180deg, rgba(58,42,166,.22), rgba(43,27,122,.10));
  border: 1px solid rgba(255,255,255,.30);
  box-shadow: 0 14px 28px rgba(43,27,122,.18);
  color: rgba(58,42,166,.95);
}
.page-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-list li a{
  position: relative;
  display: block;
  padding: 10px 12px 10px 38px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(31,35,48,.92);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 10px 22px rgba(43,27,122,.10);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}
.page-list li a::before{
  content:"";
  position:absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(43,27,122,.95), rgba(242,201,76,.95));
  opacity: .9;
}
.page-list li a::after{
  content:"\F285"; 
  font-family: "bootstrap-icons";
  position:absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(58,42,166,.80);
  opacity: .9;
}
.page-list li a:hover,
.page-list li a:focus-visible{
  transform: translateY(-1px);
  background: rgba(255,255,255,.20);
  border-color: rgba(242,201,76,.45);
  box-shadow: 0 16px 34px rgba(43,27,122,.16);
  outline: none;
}
.page-list li a.active{
  border-color: rgba(58,42,166,.35);
  background:
    radial-gradient(520px 260px at 0% 50%, rgba(58,42,166,.18), transparent 60%),
    rgba(255,255,255,.18);
}
@keyframes qlIn{
  from{ opacity:0; transform: translateY(10px); filter: blur(2px); }
  to  { opacity:1; transform: translateY(0); filter: blur(0); }
}
@keyframes qlSheen{
  0%   { transform: translateX(-60%) skewX(-10deg); opacity:.55; }
  50%  { transform: translateX(60%)  skewX(-10deg); opacity:.75; }
  100% { transform: translateX(-60%) skewX(-10deg); opacity:.55; }
}
@media (prefers-reduced-motion: reduce){
  .sidebar-linking,
  .sidebar-linking::before{
    animation: none !important;
  }
}
.news-section{
  position: relative;
  max-width: 1100px;
  margin: 46px auto;
  padding: clamp(18px, 3.2vw, 34px);
  color: #1f2330;
  background:
    radial-gradient(900px 520px at 18% -10%, rgba(58,42,166,.14), transparent 58%),
    radial-gradient(700px 520px at 120% 20%, rgba(43,27,122,.10), transparent 60%),
    linear-gradient(0deg, rgba(0,0,0,.03) 1px, transparent 1px) 0 0/100% 28px,
    linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px) 0 0/28px 100%,
    linear-gradient(180deg, #fbfaf8, #f2f0ea);
  border-radius: 18px;
  border: 1px solid rgba(43,27,122,.14);
  box-shadow: 0 22px 60px rgba(0,0,0,.12);
  overflow: hidden;
  isolation: isolate;
  animation: nsEnter .7s ease-out both;
}
.news-section::before{
  content:"";
  position:absolute;
  inset: 0 0 auto 0;
  height: 10px;
  background: linear-gradient(90deg, #2b1b7a, #3a2aa6, rgba(242,201,76,.95));
  opacity: .92;
}
.news-section::after{
  content:"";
  position:absolute;
  right:-90px;
  bottom:-90px;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, rgba(242,201,76,.28), rgba(242,201,76,0) 62%),
    radial-gradient(circle at 65% 60%, rgba(58,42,166,.22), rgba(58,42,166,0) 62%);
  filter: blur(1px);
  opacity: .95;
  animation: nsFloat 10s ease-in-out infinite;
  pointer-events:none;
}
.news-section > * + *{
  margin-top: 12px;
}
.news-section h2{
  margin: 8px 0 10px;
  color: #141826;
  position: relative;
  padding-bottom: 10px;
}
.news-section h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width: min(560px, 100%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(43,27,122,.95), rgba(242,201,76,.95), transparent 85%);
  animation: nsUnderline 1.15s ease-out both;
}
.news-section h3{
  margin: 18px 0 8px;
  padding: 10px 12px 10px 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(43,27,122,.14);
  box-shadow: 0 12px 28px rgba(43,27,122,.08);
  color: #1a1f2b;
  position: relative;
  animation: nsCardIn .65s ease-out both;
}
.news-section h3::before{
  content:"";
  position:absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 30% 25%, rgba(242,201,76,.95), rgba(242,201,76,.25)),
    linear-gradient(180deg, rgba(58,42,166,.24), rgba(43,27,122,.10));
  border: 1px solid rgba(43,27,122,.18);
  box-shadow: 0 10px 18px rgba(43,27,122,.14);
}
.news-section h3::after{
  content:"";
  position:absolute;
  inset: 10px auto 10px 0;
  width: 5px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, rgba(43,27,122,.95), rgba(242,201,76,.95));
  opacity: .9;
}
.news-section p{
  margin: 10px 0 12px;
  color: rgba(91,98,117,.98);
}
.news-section strong{
  color: #2b1b7a;
  font-weight: 850;
  background: linear-gradient(180deg, transparent 56%, rgba(242,201,76,.36) 56%);
  padding: 0 .18em;
  border-radius: 4px;
}
.news-section a{
  color: #3a2aa6;
  text-decoration: none;
  border-bottom: 1px solid rgba(58,42,166,.28);
}
.news-section a:hover{
  border-bottom-color: rgba(58,42,166,.70);
}
.news-section blockquote{
  margin: 14px 0;
  padding: 12px 14px;
  border-left: 4px solid rgba(43,27,122,.25);
  background: rgba(255,255,255,.62);
  border-radius: 12px;
  color: rgba(91,98,117,.95);
}
@keyframes nsEnter{
  from{ opacity:0; transform: translateY(10px); filter: blur(2px); }
  to  { opacity:1; transform: translateY(0); filter: blur(0); }
}
@keyframes nsUnderline{
  from{ width:0; opacity:.45; }
  to  { width:min(560px, 100%); opacity:1; }
}
@keyframes nsCardIn{
  from{ opacity:0; transform: translateY(8px) scale(.992); }
  to  { opacity:1; transform: translateY(0) scale(1); }
}
@keyframes nsFloat{
  0%,100%{ transform: translate(0,0); }
  50%{ transform: translate(-18px, -14px); }
}
@media (prefers-reduced-motion: reduce){
  .news-section,
  .news-section h2::after,
  .news-section h3,
  .news-section::after{
    animation: none !important;
  }
}
a {
    color:rgb(255 205 140);
    text-decoration: underline;
}