:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #1e1e1f;
  --heading-color: #554e4e;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #5b78b6;
  --link-color: #a9b5ce;
  --header-bg-color: #5585B8;
  --font-family: system-ui;
  --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;
}
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 h2 {
  display: inline-block;
  padding-bottom: 4px;
}
.content-area a {
  color: rgb(247, 222, 167);
  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;
  border-radius: 12px 12px 0 0;
  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%;
  }
}
.footer img {
        filter: brightness(0) invert(1);
      }
 .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;
  position: sticky; top: 0; z-index: 1020;
}
.hero-section {
  padding: 45px 0;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.246);
}
.hero-section.with-bg {
  background-image: url('/images/womens-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, rgba(161, 161, 161, 0.63));
  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;
  font-weight: 600;
  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;
  }
}
   .contact-container {
  width: 500px;
  margin: 100px auto 35px;
  padding: 15px 21px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  color: black !important;
}
  .contact-container h2{
    color: black !important;
  }
@media screen and (max-width: 768px) {
  .contact-container {
    width: 100%;
    padding: 15px;
  }
}
.contact-header {
  text-align: center;
  margin-bottom: 20px;
}
.contact-header i {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 10px;
}
.email-link {
  display: block;
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  color: #0d6efd;
  text-decoration: none;
}
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--link-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--footer-bg-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--link-color), transparent 20%);
  color: var(--footer-bg-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
.styled-section{
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 25px);
  margin: clamp(24px, 4vw, 48px) 0;
  background: #82a7cf;
  color: #F5F9FF;
  box-shadow:
    0 24px 70px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.18);
  isolation: isolate;
}
.styled-section::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, #ffffff, #ffffff)
      left 28px top 28px / 2px calc(100% - 56px) no-repeat,
    linear-gradient(to right, #ffffff, #ffffff)
      left 28px bottom 28px / calc(100% - 56px) 2px no-repeat;
  opacity: 0.85;
  z-index: 1;
}
.styled-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(255,255,255,1), rgba(255,255,255,0) 55%),
    linear-gradient(to bottom, rgba(0,0,0,.62), rgba(0,0,0,.28)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.045) 0 1px,
      rgba(255,255,255,0) 1px 32px
    );
  mix-blend-mode: overlay;
  opacity: .5;
  animation: textureDrift 18s ease-in-out infinite;
  pointer-events:none;
  z-index: 0;
}
.styled-section > *{
  position: relative;
  z-index: 2;
}
.styled-section h2{
  color: #ffffff;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: .2px;
  text-shadow: 0 14px 34px rgba(0,0,0,.35);
}
.styled-section h2::after{
  content:"";
  display:block;
  width: min(160px, 42%);
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #D79E30, #D7AE5C, rgba(215,174,92,0));
  box-shadow: 0 12px 30px rgba(215,158,48,.35);
  animation: underlineGlow 4.5s ease-in-out infinite;
}
.styled-section h3{
  margin: 22px 0 10px;
  font-size: clamp(16px, 1.4vw, 21px);
  color: rgba(255,255,255,.94);
}
.styled-section ul{
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.styled-section li{
  position: relative;
  padding: 14px 18px 14px 54px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  box-shadow:
    0 14px 36px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.22);
  animation: listFadeUp .6s ease both;
}
.styled-section li:hover{
  transform: translateY(-3px);
  border-color: rgba(215,174,92,.45);
  box-shadow:
    0 18px 42px rgba(0,0,0,.30),
    0 0 0 1px rgba(215,158,48,.30) inset;
}
.styled-section li::before{
  content:"";
  position:absolute;
  left: 16px;
  top: 50%;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.30), rgba(255,255,255,0) 55%),
    linear-gradient(135deg, #D79E30, #D7AE5C);
  box-shadow:
    0 10px 24px rgba(215,158,48,.30),
    inset 0 1px 0 rgba(255,255,255,.30);
  animation: bulletGlow 3s ease-in-out infinite;
}
.styled-section li::after{
  content:"";
  position:absolute;
  left: 24px;
  top: 50%;
  width: 10px;
  height: 6px;
  transform: translateY(-50%) rotate(-45deg);
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
@keyframes textureDrift{
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(12px,-10px); }
}
@keyframes underlineGlow{
  0%,100% { opacity: .9; transform: translateX(0); }
  50%     { opacity: 1; transform: translateX(12px); }
}
@keyframes listFadeUp{
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bulletGlow{
  0%,100% { transform: translateY(-50%) scale(1); }
  50%     { transform: translateY(-50%) scale(1.08); }
}
@media (prefers-reduced-motion: reduce){
  .styled-section::after,
  .styled-section h2::after,
  .styled-section li::before{
    animation: none;
  }
  .styled-section li{
    animation: none;
  }
  .styled-section li:hover{
    transform: none;
  }
}
.section-wallets {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('/images/womens-bg.webp');
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 50px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-top: 40px;
    border: 1px solid #2c3e50;
}
.section-wallets h2 {
    color: #ffffff!important; 
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}
.section-wallets h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #e7e4e4;
    bottom: -8px;
    left: 0;
}
.section-wallets p {
    color: #ddd;
    line-height: 1.6;
}
.section-wallets h3 {
    color: #ffffff!important; 
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    text-transform: capitalize;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.section-wallets h3:hover {
    background-color: #2c3e50; 
    color: #fff;
    transform: scale(1.05);
}
.section-wallets ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}
.section-wallets ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #dadada; 
}
.section-wallets ul li::before {
    content: "✔"; 
    font-size: 1.5rem;
    color: #e2e2e2; 
    margin-right: 10px;
    transition: color 0.3s ease;
}
.section-wallets ul li:hover::before {
    color: #ebebeb; 
}
.styled-titles h2{
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: .2px;
  font-weight: 800;
  color: #5585b8;
  text-shadow: 0 14px 34px rgba(0,0,0,.28);
  position: relative;
}
.styled-titles h2::after{
  content:"";
  display: block;
  width: min(180px, 55%);
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(215,174,92,0), #D79E30, #D7AE5C, rgba(215,174,92,0));
  box-shadow: 0 10px 28px rgba(215,158,48,.28);
}
.styled-titles h2::before{
  content:"";
  position: absolute;
  left: 50%;
  top: 55%;
  width: min(520px, 92%);
  height: 1.6em;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(255,255,255,.18), rgba(255,255,255,0));
  filter: blur(10px);
  opacity: .85;
  z-index: -1;
  pointer-events: none;
}
.styled-titles h3{
  margin: 0 auto;
  max-width: 70ch;
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: .15px;
  color: #5585b8;
  text-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.styled-titles h3::after{
  content:"";
  display: block;
  width: min(180px, 55%);
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(215,174,92,0), #D79E30, #D7AE5C, rgba(215,174,92,0));
  box-shadow: 0 10px 28px rgba(215,158,48,.28);
}
.styled-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.styled-list li{
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 8px;
  border-radius: 22px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(85,133,184,.18), rgba(85,133,184,0) 60%),
    linear-gradient(180deg, #ffffff, #f4f7fb);
  border: 1px solid rgba(41,105,174,.14);
  box-shadow:
    0 24px 60px rgba(20,40,80,.18),
    inset 0 1px 0 rgba(255,255,255,.9);
  color: rgba(18, 32, 55, .95);
  line-height: 1.6;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.styled-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:14px;
  bottom:14px;
  width:6px;
  border-radius: 6px;
  background: linear-gradient(
    to bottom,
    #5585B8,
    #2969AE,
    #D7AE5C
  );
  box-shadow: 0 0 0 1px rgba(255,255,255,.6) inset;
}
.styled-list li::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(85,133,184,.45),
    rgba(215,174,92,.45),
    rgba(85,133,184,.45)
  );
  opacity: .0;
  filter: blur(14px);
  z-index: -1;
  transition: opacity .25s ease;
}
.styled-list li:hover{
  transform: translateY(-4px);
  border-color: rgba(215,174,92,.55);
  box-shadow:
    0 32px 72px rgba(20,40,80,.25),
    inset 0 1px 0 rgba(255,255,255,.95);
}
.styled-list li:hover::after{
  opacity: .65;
}
.styled-list li i.bi{
  flex: 0 0 auto;
  margin-top: 3px;
  font-size: 1.25rem;
  line-height: 1;
  color: #2969AE;
  background:
    radial-gradient(circle at 30% 30%, #ffffff, #eaf0f8);
  padding: 10px;
  border-radius: 14px;
  box-shadow:
    0 12px 28px rgba(41,105,174,.22),
    inset 0 1px 0 rgba(255,255,255,.95);
  transition: transform .25s ease, color .25s ease, box-shadow .25s ease;
}
.styled-list li:hover i.bi{
  color: #D79E30;
  transform: scale(1.08) rotate(-4deg);
  box-shadow:
    0 16px 34px rgba(215,158,48,.35),
    inset 0 1px 0 rgba(255,255,255,1);
}
@media (prefers-reduced-motion: reduce){
  .styled-list li,
  .styled-list li i.bi{
    transition: none;
  }
  .styled-list li:hover{
    transform: none;
  }
}
.text-transparent-bg .justify-content-center{
 padding: clamp(10px, 4vw, 5px);
  background: linear-gradient(
    180deg,
    #5585b8b2,
    rgba(20, 35, 60, 0.123)
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 30px 70px rgba(117, 146, 173, 0.35),
    inset 0 1px 0 rgba(255,255,255,.12);
}
.hero-section h1{
  color: #ffffff;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: .2px;
  margin-bottom: 18px;
  text-shadow:
    0 6px 18px rgba(0,0,0,.45);
}
@media (max-width: 768px){
  .text-transparent-bg .justify-content-center{
    padding: 22px;
    border-radius: 18px;
  }
}
@media (max-width: 576px){
  .navbar-brand img{
    width: 250px;
  }
}
@media (max-width: 345px){
  .navbar-brand img{
    width: 220px;
  }
}



.search{
    width: 100%;

  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.75));
  box-shadow:
    0 18px 40px rgba(20,40,80,.12),
    inset 0 1px 0 rgba(255,255,255,.85);
}
.search-form{
  display: grid;
  gap: 12px;
}
.search-input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(41,105,174,.25);
  background: #ffffff;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #0f2037;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.search-input::placeholder{
  color: rgba(15,32,55,.55);
}
.search-input:focus{
  border-color: #2969AE;
  box-shadow: 0 0 0 3px rgba(41,105,174,.15);
}
.search-btn{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #2969AE, #5585B8);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: .2px;
  cursor: not-allowed;
  opacity: .6;
  box-shadow:
    0 10px 24px rgba(41,105,174,.25),
    inset 0 1px 0 rgba(255,255,255,.25);
}
.visually-hidden{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.sidebar-linking{
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  box-shadow:
    0 20px 44px rgba(20,40,80,.14),
    inset 0 1px 0 rgba(255,255,255,.85);
}
.sidebar-linking h3{
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .25px;
  color: #0f2037;
  position: relative;
}
.sidebar-linking h3::after{
  content:"";
  display:block;
  width: 46px;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2969AE, #5585B8);
}
.sidebar-linking .page-list{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}
.sidebar-linking .page-list li{
  margin: 0;
}
.sidebar-linking .page-list a{
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.70));
  border: 1px solid rgba(41,105,174,.18);
  color: #2969AE;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  box-shadow:
    0 10px 24px rgba(20,40,80,.12),
    inset 0 1px 0 rgba(255,255,255,.85);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sidebar-linking .page-list a:hover{
  transform: translateY(-2px);
  border-color: rgba(215,174,92,.45);
  color: #0f2037;
  box-shadow:
    0 16px 36px rgba(20,40,80,.18),
    0 0 0 1px rgba(215,158,48,.18) inset;
}
@media (prefers-reduced-motion: reduce){
  .sidebar-linking .page-list a{
    transition: none;
  }
  .sidebar-linking .page-list a:hover{
    transform: none;
  }
}

  .tw-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .twitter-tweet {
    max-width: 100%;
    margin: 0 auto;
  }
  