@charset "UTF-8";
.about-main {
  /* container mx-auto py-12 */
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.about-main .hero-section {
  position: relative;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.25);
  background: linear-gradient(to top right, var(--color-primary-100), var(--color-primary-300));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .about-main .hero-section {
    padding: 4rem;
  }
}
.about-main .section-content {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-main .section-content .section-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-main h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-primary-700);
}

.about-main p {
  color: #374151;
  line-height: 1.625;
}

.partnerships-page {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-radius: 1.5rem;
}

.partnerships-page h1 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
  text-align: center;
  color: #1e293b;
  letter-spacing: 0.01em;
}

.partnerships-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 2rem 0;
}

@media (min-width: 640px) {
  .partnerships-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .partnerships-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.partnership-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.08), 0 1.5px 6px 0 rgba(30, 41, 59, 0.04);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid #e2e8f0;
  position: relative;
}

.partnership-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 8px 32px 0 rgba(30, 41, 59, 0.13), 0 2px 8px 0 rgba(30, 41, 59, 0.07);
  border-color: #cbd5e1;
}

.partnership-card .mb-4 {
  margin-bottom: 1.25rem;
}

.partnership-card .mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.partnership-card .h-24 {
  height: 6rem;
  width: 6rem;
  border-radius: 0.75rem;
  background: #f1f5f9;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 4px 0 rgba(30, 41, 59, 0.04);
  padding: 0.5rem;
  display: block;
}

.partnership-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #334155;
  text-align: center;
}

.partnership-card .text-gray-600 {
  color: #64748b;
  text-align: center;
  margin-bottom: 0.75rem;
}

.partnership-card .text-sm {
  font-size: 0.95rem;
}

.partnership-card .mb-2 {
  margin-bottom: 0.5rem;
}

.partnership-card .btn {
  margin-top: auto;
  align-self: flex-end;
  color: #2563eb;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: transform 0.18s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.partnership-card .btn:hover {
  transform: translateY(-2px) scale(1.04);
}

.partnerships-grid .col-span-full {
  grid-column: 1/-1;
}

.partnerships-grid .text-center {
  text-align: center;
}

.partnerships-grid .text-gray-500 {
  color: #64748b;
}

.archive-main {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
  background: #f4f7fb;
  min-height: 100vh;
}

.archive-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0 0 2.5rem 2.5rem;
  box-shadow: 0 8px 32px 0 rgba(30, 41, 59, 0.1);
  padding: 3.5rem 1.5rem 2.5rem 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.archive-header::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
  opacity: 0.12;
  border-radius: 50%;
  z-index: 0;
}

.archive-header::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.archive-title {
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  color: #2563eb;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(96, 165, 250, 0.08);
}

.archive-description {
  color: #334155;
  margin-bottom: 0.5rem;
  font-size: 1.18rem;
  position: relative;
  z-index: 1;
  max-width: 600px;
  text-align: center;
}

.archive-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem 2rem;
  padding: 0 1.5rem 2.5rem 1.5rem;
}

.show-post {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.08), 0 1.5px 6px 0 rgba(30, 41, 59, 0.04);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid #e2e8f0;
  position: relative;
  min-height: 420px;
}

.show-post:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 8px 32px 0 rgba(30, 41, 59, 0.13), 0 2px 8px 0 rgba(30, 41, 59, 0.07);
  border-color: #2563eb;
}

.post-image {
  display: block;
  margin-bottom: 1.25rem;
}

.w-full {
  width: 100%;
}

.h-48 {
  height: 12rem;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.rounded {
  border-radius: 0.75rem;
}

.post-content {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
}

.text-xl {
  font-size: 1.25rem;
}

.font-semibold {
  font-weight: 600;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.hover\:text-blue-600:hover {
  color: #2563eb;
}

.transition {
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-gray-500 {
  color: #64748b;
}

.text-sm {
  font-size: 0.95rem;
}

.text-gray-700 {
  color: #334155;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-auto {
  margin-top: auto;
}

.inline-block {
  display: inline-block;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.bg-blue-600 {
  background-color: #2563eb;
}

.text-white {
  color: #fff;
}

.hover\:bg-blue-700:hover {
  background-color: #1d4ed8;
}

.archive-pagination {
  margin-top: 2rem;
  text-align: center;
}

.no-posts {
  text-align: center;
  color: #64748b;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.custom-img-medium {
  width: 100%;
  height: 12rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.75rem;
}

.custom-title-xl {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.custom-link-hover {
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-link-hover:hover {
  color: #2563eb;
}

.custom-date {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.custom-excerpt-2 {
  display: block;
  color: #334155;
  margin-bottom: 1rem;
}
.custom-excerpt-2 p {
  margin: 0;
  height: 3.5rem;
}

.custom-readmore {
  margin-top: auto;
  display: inline-block;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #2563eb;
  color: #fff;
  border-radius: 0.75rem;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-readmore:hover {
  background-color: #1d4ed8;
}

.custom-no-posts {
  text-align: center;
  color: #64748b;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.custom-main-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.custom-grid {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .custom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .custom-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.custom-main-container .custom-grid {
  justify-items: center;
}
.custom-main-container .custom-grid .custom-post-image {
  position: relative;
}
.custom-main-container .custom-grid .custom-post-image .event-start-date {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #3b82f6;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  z-index: 10;
}

.custom-article {
  width: 22rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.08), 0 1.5px 6px 0 rgba(30, 41, 59, 0.04);
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.custom-img-small {
  width: 100%;
  height: 8rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.75rem;
}

.custom-title-lg {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.custom-title-lg a {
  text-decoration: none;
  color: #1e293b;
}

.custom-link-underline {
  text-decoration: underline;
}

.custom-link-underline:hover {
  color: #2563eb;
}

.custom-date-xs {
  color: #64748b;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.custom-excerpt-2 {
  margin-bottom: 0.5rem;
  color: #334155;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.custom-details-link {
  margin-top: auto;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.8rem;
  text-align: left;
  margin-bottom: 0.5rem;
}

.custom-pagination {
  display: flex;
  justify-content: center;
}

.custom-center-gray {
  text-align: center;
  color: #64748b;
}

.custom-breadcrumb {
  display: flex;
  font-size: 1rem;
  color: #64748b;
  direction: rtl;
}

.custom-breadcrumb ol {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-breadcrumb li {
  display: flex;
  align-items: center;
}

.custom-breadcrumb a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.18s;
}

.custom-breadcrumb a:hover {
  text-decoration: underline;
  color: #1d4ed8;
}

.custom-archive-header {
  position: relative;
  width: 100vw;
  min-width: 100vw;
  left: 50%;
  text-align: right;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 240px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(30, 41, 59, 0.08);
}

.custom-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.custom-header-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 30, 0.45);
  z-index: 2;
}

.custom-header-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: end;
  height: 100%;
  text-align: right;
  padding: 2.5rem 5vw 1.5rem 4vw;
  direction: rtl;
}
@media (min-width: 768px) {
  .custom-header-content {
    padding: 2.5rem 2vw 1.5rem 2vw;
  }
}

.custom-archive-header .archive-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  margin-bottom: 0.5rem;
}

.custom-archive-header .archive-description .custom-title-2xl {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  margin: 0;
}

.custom-archive-header .custom-breadcrumb {
  text-align: right;
  z-index: 4;
  direction: ltr;
}

.custom-archive-header .custom-breadcrumb ol {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
  font-size: 1rem;
  flex-direction: row-reverse;
}

.custom-archive-header .custom-breadcrumb a {
  color: #fff;
  text-decoration: underline;
}

.wp-block-quote,
blockquote {
  direction: rtl;
  border-right: 4px solid #2563eb;
  border-left: none;
  background: #f4f7fb;
  border-radius: 1rem;
  padding: 1.5rem 2rem 1.5rem 1.5rem;
  margin: 2rem 0;
  font-size: 1.18rem;
  font-style: italic;
  color: #334155;
  position: relative;
  box-shadow: 0 2px 16px rgba(30, 41, 59, 0.07);
}

.wp-block-quote cite,
blockquote cite {
  display: block;
  text-align: left;
  color: #2563eb;
  font-size: 1rem;
  font-style: normal;
  margin-top: 1rem;
  font-weight: 600;
}

.wp-block-quote:before,
blockquote:before {
  content: "“";
  font-size: 3rem;
  color: #2563eb;
  position: absolute;
  right: 1.2rem;
  top: 0.5rem;
  line-height: 1;
  opacity: 0.18;
}/*# sourceMappingURL=PagesStyle.css.map */