@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: #2d3748;
  background-color: #f7fafc;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a2e;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #0f3460;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #e94560;
}

header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 1.5rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
}
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  gap: 1rem;
}
.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.logo .site-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.header-contact {
  text-align: right;
  font-size: 0.9rem;
  opacity: 0.9;
}
.header-contact p {
  margin: 0.25rem 0;
}

.main-nav {
  background-color: #16213e;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.main-nav .nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  margin-right: auto;
  flex-shrink: 0;
}
.main-nav .nav-toggle .hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav .nav-toggle .hamburger::before, .main-nav .nav-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav .nav-toggle .hamburger::before {
  top: -8px;
}
.main-nav .nav-toggle .hamburger::after {
  bottom: -8px;
}
.main-nav .nav-toggle[aria-expanded=true] .hamburger {
  background: transparent;
}
.main-nav .nav-toggle[aria-expanded=true] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.main-nav .nav-toggle[aria-expanded=true] .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.main-nav .nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.main-nav li {
  margin: 0;
}
.main-nav a {
  display: block;
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.main-nav a:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}
.main-nav a.active {
  color: white;
  background-color: rgba(255, 255, 255, 0.15);
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background-color: #e94560;
  border-radius: 3px 3px 0 0;
}

.hero {
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}
.hero .lead {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  margin: 0 0.5rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #e94560 0%, rgb(224.4519230769, 26.5480769231, 59.1298076923) 100%);
  color: white;
}
.btn-primary:hover {
  background: linear-gradient(135deg, rgb(235.6971153846, 91.8028846154, 115.4927884615) 0%, #e94560 100%);
  color: white;
}

.btn-secondary {
  background-color: white;
  color: #1a1a2e;
}
.btn-secondary:hover {
  background-color: #f7fafc;
  color: #1a1a2e;
}

.featured,
.recent-posts {
  padding: 5rem 0;
}

.featured {
  background-color: #ffffff;
}

.recent-posts {
  background-color: #f7fafc;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #1a1a2e;
  position: relative;
  padding-bottom: 1rem;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e94560, #0f3460);
  border-radius: 2px;
}
.section-title a {
  color: inherit;
  text-decoration: none;
}
.section-title a:hover {
  color: #e94560;
}

.event-cards,
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card,
.post-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
}
.card:hover,
.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.card h3,
.post-card h3 {
  color: #1a1a2e;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.card p,
.post-card p {
  color: #718096;
  margin-bottom: 0.75rem;
}
.card small,
.post-card small {
  color: #718096;
  font-size: 0.875rem;
}

.card {
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f3460, #e94560);
}

.post-date {
  color: #718096;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  color: #e94560;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.read-more:hover {
  color: rgb(224.4519230769, 26.5480769231, 59.1298076923);
  transform: translateX(5px);
}
.read-more::after {
  content: " →";
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info h3, .footer-info h4,
.footer-links h3,
.footer-links h4,
.footer-contact h3,
.footer-contact h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}
.footer-info p,
.footer-links p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-links ul {
  list-style: none;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-links a:hover {
  color: #e94560;
  transform: translateX(5px);
}

.copyright {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .hero {
    padding: 4rem 0;
  }
  .hero h1 {
    font-size: 2.75rem;
  }
  .hero .lead {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .header-contact {
    text-align: center;
  }
  .main-nav .nav-toggle {
    display: block;
  }
  .main-nav .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: 0;
    padding-top: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #16213e;
  }
  .main-nav .nav-menu.active {
    display: flex;
  }
  .main-nav a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero {
    padding: 3rem 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .lead {
    font-size: 1.1rem;
  }
  .btn {
    display: block;
    margin: 0.5rem auto;
    max-width: 300px;
  }
  .featured,
  .recent-posts {
    padding: 3rem 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .event-cards,
  .post-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .hero h1 {
    font-size: 1.75rem;
  }
  .card,
  .post-card {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  button, .btn, a {
    min-height: 44px;
    min-width: 44px;
  }
  .container {
    padding: 0 15px;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  input, select, textarea {
    font-size: 16px;
  }
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  pre {
    font-size: 0.875rem;
    padding: 1rem;
  }
  code {
    font-size: 0.875rem;
    word-break: break-word;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
  .hero {
    padding: 2rem 0;
  }
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .hero .lead {
    font-size: 1rem;
  }
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  .card,
  .post-card {
    padding: 1.25rem;
  }
  .card h3,
  .post-card h3 {
    font-size: 1.25rem;
  }
  .featured,
  .recent-posts {
    padding: 2rem 0;
  }
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  footer {
    padding: 2rem 0 1rem;
  }
  footer .footer-content {
    gap: 1.5rem;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.3rem;
  }
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
}
.blog-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.25rem;
}
.blog-container h1 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #1a1a2e;
}
.blog-container .blog-description {
  text-align: center;
  color: #718096;
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid #0f3460;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  border-left-color: #e94560;
}
.blog-card .blog-card-content {
  padding: 2rem;
}
.blog-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.blog-card h2 a {
  color: #1a1a2e;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card h2 a:hover {
  color: #e94560;
}
.blog-card .blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #718096;
}
.blog-card .blog-meta .blog-date::before {
  content: "📅 ";
}
.blog-card .blog-meta .blog-author::before {
  content: "✍️ ";
}
.blog-card .blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.blog-card .blog-tags .tag {
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card .blog-excerpt {
  color: #718096;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.blog-card .read-more {
  display: inline-block;
  color: #e94560;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card .read-more:hover {
  color: rgb(224.4519230769, 26.5480769231, 59.1298076923);
  transform: translateX(4px);
}

.post-container {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 1.25rem;
}
.post-container .post-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #fdfaf6 0%, #e6eef4 100%);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
.post-container .post-header h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
  line-height: 1.3;
}
.post-container .post-header .post-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  color: #718096;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.post-container .post-header .post-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.post-container .post-header .post-tags .tag {
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.post-container .post-content {
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 0.9375rem;
}
.post-container .post-content h2 {
  color: #1a1a2e;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.625rem;
  border-left: 4px solid #e94560;
  padding-left: 1rem;
}
.post-container .post-content h3 {
  color: #1a1a2e;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.375rem;
}
.post-container .post-content p {
  color: #2d3748;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}
.post-container .post-content ul, .post-container .post-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}
.post-container .post-content ul li, .post-container .post-content ol li {
  color: #2d3748;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.post-container .post-content strong {
  color: #1a1a2e;
  font-weight: 600;
}
.post-container .post-content em {
  color: #718096;
  font-style: italic;
}
.post-container .post-content code {
  background-color: #f7fafc;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.875rem;
  color: #e94560;
}
.post-container .post-content pre {
  background-color: #1a1a2e;
  color: white;
  padding: 1.25rem;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}
.post-container .post-content pre code {
  background: none;
  color: white;
  padding: 0;
}
.post-container .post-content blockquote {
  border-left: 4px solid #e94560;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #718096;
  font-size: 0.9375rem;
}
.post-container .post-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}
.post-container .post-content table th, .post-container .post-content table td {
  padding: 0.625rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}
.post-container .post-content table th {
  background-color: #f7fafc;
  font-weight: 600;
  color: #1a1a2e;
}
.post-container .post-content table tr:hover {
  background-color: #f7fafc;
}

.admonitionblock {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid;
}
.admonitionblock.note {
  background-color: #e3f2fd;
  border-left-color: #2196F3;
}
.admonitionblock.tip {
  background-color: #e8f5e9;
  border-left-color: #4CAF50;
}
.admonitionblock.warning {
  background-color: #fff3e0;
  border-left-color: #FF9800;
}
.admonitionblock.important {
  background-color: #ffebee;
  border-left-color: #f44336;
}
.admonitionblock .title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}
.admonitionblock p {
  margin: 0;
}

.about-container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.25rem;
}
.about-container h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #1a1a2e;
}
.about-container h2 {
  color: #1a1a2e;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  border-left: 4px solid #e94560;
  padding-left: 1rem;
}
.about-container p {
  color: #718096;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}
.about-container ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.about-container ul li {
  color: #718096;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.about-container strong {
  color: #2d3748;
  font-weight: 600;
}

.intro-text {
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  border-left: 4px solid #0f3460;
}
.intro-text p {
  font-size: 1.125rem;
  color: #2d3748;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.leadership-card {
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #e94560;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.leadership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.leadership-card strong {
  display: block;
  color: #1a1a2e;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.schedule-box,
.membership-box {
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
  border-left: 4px solid #4CAF50;
}
.schedule-box p,
.membership-box p {
  margin-bottom: 1rem;
}
.schedule-box ul,
.membership-box ul {
  margin-top: 1rem;
}

.membership-box {
  border-left-color: #0f3460;
}
.membership-box ul {
  margin-top: 1rem;
}
.membership-box ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.membership-box ul li:last-child {
  border-bottom: none;
}

.cta-box {
  background: linear-gradient(135deg, #e94560 0%, rgb(224.4519230769, 26.5480769231, 59.1298076923) 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 8px 12px rgba(233, 69, 96, 0.3);
}
.cta-box p {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 0;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.empty-state h2 {
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.empty-state p {
  color: #718096;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-container h1 {
    font-size: 2rem;
  }
  .post-container .post-header h1 {
    font-size: 2rem;
  }
  .post-container .post-content {
    padding: 2rem;
  }
  .about-container h1 {
    font-size: 2rem;
  }
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}

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