* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-family);
}

body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(37, 99, 235, 0.16),
      transparent 24rem
    ),
    radial-gradient(
      circle at 82% 22%,
      rgba(6, 182, 212, 0.16),
      transparent 24rem
    ),
    rgba(248, 251, 255, 0.96);
  backdrop-filter: blur(16px);
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader-card {
  position: relative;
  width: min(360px, 100%);
  padding: 2rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 32px 90px rgba(15, 23, 42, 0.16);
  text-align: center;
  overflow: hidden;
}

.site-loader-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #06b6d4, #22c55e, #2563eb);
  background-size: 220% 100%;
  animation: loaderBar 1.6s linear infinite;
}

.loader-mark {
  position: relative;
  width: 86px;
  height: 86px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1.1rem;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #172554, #2563eb 56%, #06b6d4);
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.28);
  font-size: 2rem;
}

.loader-mark::before,
.loader-mark::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 34px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  animation: loaderPulse 1.8s ease-out infinite;
}

.loader-mark::after {
  animation-delay: 0.45s;
}

.loader-title {
  margin: 0;
  color: #0f172a;
  font-size: 1.08rem;
  font-weight: 900;
}

.loader-text {
  margin: 0.35rem 0 0;
  color: #64748b;
  font-size: 0.92rem;
}

.loader-dots {
  display: inline-flex;
  gap: 0.38rem;
  margin-top: 1.15rem;
}

.loader-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2563eb;
  animation: loaderDot 0.9s ease-in-out infinite;
}

.loader-dots span:nth-child(2) {
  animation-delay: 0.15s;
  background: #06b6d4;
}

.loader-dots span:nth-child(3) {
  animation-delay: 0.3s;
  background: #22c55e;
}

@keyframes loaderBar {
  to {
    background-position: -220% 0;
  }
}

@keyframes loaderPulse {
  from {
    opacity: 0.65;
    transform: scale(0.86);
  }
  to {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes loaderDot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader,
  .site-loader-card::before,
  .loader-mark::before,
  .loader-mark::after,
  .loader-dots span {
    animation: none;
    transition: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1070;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(0);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  animation: headerDrop 0.28s ease both;
}
@keyframes headerDrop {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(0);
  }
}
.header-top {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-top: 3px solid #243676;
}
.header-top::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 63%;
  background: #2c3d82;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.header-top-inner {
  position: relative;
  z-index: 1;
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition:
    min-height 0.25s ease,
    padding 0.25s ease;
}
.site-header.is-scrolled .header-top-inner {
  min-height: 86px;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #1f2a68;
  text-decoration: none;
  min-width: 0;
}
.brand-logo {
  max-height: 74px;
  max-width: 360px;
  object-fit: contain;
  transition: max-height 0.25s ease;
}
.site-header.is-scrolled .brand-logo {
  max-height: 60px;
}
.brand-fallback-mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: #2c3d82;
  font-size: 1.55rem;
}
.brand-title {
  display: block;
  max-width: 420px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}
.brand-subtitle {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.4rem;
  color: #fff;
}
.header-search-pill {
  width: 190px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 0 1.15rem;
  color: #fff;
  background: #4851dc;
  outline: none;
}
.header-search-pill::placeholder {
  color: rgba(255, 255, 255, 0.72);
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
  padding-left: 1.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.header-contact:first-of-type {
  border-left: 0;
  padding-left: 0;
}
.header-contact-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.72);
  font-size: 1.35rem;
}
.header-contact small {
  display: block;
  font-weight: 600;
  line-height: 1.1;
}
.header-contact strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  white-space: nowrap;
}
.nav-row {
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 251, 255, 0.94)
    ),
    #f8fafc;
  border-top: 1px solid rgba(37, 99, 235, 0.08);
  border-bottom: 1px solid rgba(37, 99, 235, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 10px 28px rgba(15, 23, 42, 0.06);
}
.nav-row::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 22% 50%,
      rgba(37, 99, 235, 0.08),
      transparent 18rem
    ),
    radial-gradient(
      circle at 82% 50%,
      rgba(14, 165, 233, 0.08),
      transparent 16rem
    );
}
.nav-row .container {
  position: relative;
  z-index: 1;
}
.site-nav {
  min-height: 64px;
}
.site-nav .navbar-nav {
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 0.25rem;
}
.site-nav .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #17233c;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 1.1rem 0.72rem;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.58rem;
  width: auto;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2c3d82, #0ea5e9);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: #2c3d82;
  transform: translateY(-1px);
}
.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}
.site-nav .nav-link i {
  font-size: 1.05rem;
}
.navbar-toggler {
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 14px;
  background: #fff;
  padding: 0.6rem 0.75rem;
  box-shadow: none !important;
}
.site-footer {
  position: relative;
  overflow: visible;
  z-index: 5;
  color: #dbeafe;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(37, 99, 235, 0.32),
      transparent 28rem
    ),
    radial-gradient(
      circle at 88% 22%,
      rgba(6, 182, 212, 0.2),
      transparent 25rem
    ),
    linear-gradient(135deg, #08111f 0%, #101b33 52%, #172554 100%);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding: 3.25rem 0 1.6rem;
}
.footer-brand-mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.32);
  font-size: 1.55rem;
}
.footer-title {
  color: #fff;
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.footer-text {
  color: #b6c5df;
  line-height: 1.75;
}
.footer-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #b6c5df;
  text-decoration: none;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}
.footer-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8;
  opacity: 0.65;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}
.footer-contact-card:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}
.footer-contact-card i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 11px;
  color: #fff;
  background: rgba(37, 99, 235, 0.85);
}
.footer-newsletter {
  display: flex;
  gap: 0.5rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.footer-newsletter .form-control {
  color: #fff;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.footer-newsletter .form-control::placeholder {
  color: rgba(219, 234, 254, 0.68);
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}
.footer-socials a:hover {
  background: #2563eb;
  transform: translateY(-3px);
}
.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9fb0ca;
}
.card-hover {
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.ad-slot {
  background: #f1f3f5;
  border: 1px dashed #ced4da;
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  color: #868e96;
}
.swal2-popup {
  width: min(420px, calc(100vw - 2rem)) !important;
  border-radius: 18px !important;
  padding: 1.4rem !important;
  font-family: "Outfit", sans-serif !important;
}
.swal2-title {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}
.swal2-html-container {
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
}
div:where(.swal2-icon) {
  font-size: 12px !important;
  margin: 0 auto !important;
}
.swal2-confirm {
  border-radius: 999px !important;
  padding: 0.65rem 1.35rem !important;
  font-weight: 800 !important;
}
.choices {
  margin-bottom: 0;
}
.choices__inner {
  min-height: 38px;
  border-color: #dee2e6;
  border-radius: 0.375rem;
  background: #fff;
}
.choices.is-focused .choices__inner,
.choices.is-open .choices__inner {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.choices__list--dropdown,
.choices__list[aria-expanded] {
  border-color: #dee2e6;
  border-radius: 0.5rem;
  z-index: 1060;
}

/* CSS Bare Acts  */
.bare-library {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 46%, #f7fafc 100%);
}

.library-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 58px;
  background:
    linear-gradient(
      135deg,
      rgba(247, 250, 252, 0.95),
      rgba(239, 246, 255, 0.92)
    ),
    url("https://images.unsplash.com/photo-1507842217343-583bb7270b66?auto=format&fit=crop&w=1800&q=80")
      center/cover;
}

.library-hero::before {
  content: "";
  position: absolute;
  left: 7%;
  bottom: -70px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.14);
  filter: blur(8px);
}

.library-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 2rem;
  align-items: end;
}

.library-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: #075985;
  background: rgba(224, 242, 254, 0.92);
  font-weight: 850;
}

.library-hero h1 {
  max-width: 780px;
  margin: 1rem 0 0.8rem;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 1;
  font-weight: 500;
  color: #0f172a;
  letter-spacing: -1px;
}

.library-hero p {
  max-width: 650px;
  color: #475569;
  font-size: 1.08rem;
}

.library-count-card {
  padding: 1.4rem;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

.library-count-card strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

.library-count-card span {
  color: rgba(255, 255, 255, 0.7);
}

.library-search-panel {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.library-search {
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(18px);
}

.library-search .form-control,
.library-search .form-select {
  min-height: 52px;
  border-radius: 16px;
  border-color: #dbe5ef;
  background: #f8fbff;
}

.library-search .form-control:focus,
.library-search .form-select:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 0.24rem rgba(14, 165, 233, 0.14);
  background: #fff;
}

.library-search button,
.library-search .reset-link {
  min-height: 52px;
  border-radius: 16px;
  font-weight: 800;
}

.library-search button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.2);
}

.library-body {
  padding: 58px 0 72px;
}

.library-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.category-shelf {
  position: sticky;
  top: 110px;
  padding: 1rem;
  border-radius: 24px;
  background: #0f172a;
  color: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.category-shelf h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 1rem;
}

.category-link {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  padding: 0.78rem 0.85rem;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.category-link:hover,
.category-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(3px);
}

.category-link i {
  color: #38bdf8;
}

.act-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.act-card {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(14, 165, 233, 0.28), rgba(37, 99, 235, 0.06))
      border-box;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.065);
  isolation: isolate;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.act-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(14, 165, 233, 0.14),
      transparent 32%
    ),
    radial-gradient(circle at 8% 92%, rgba(37, 99, 235, 0.08), transparent 30%);
  opacity: 0.85;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.act-card::after {
  content: "";
  position: absolute;
  inset: auto 1.35rem 1rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  transform: scaleX(0.7);
  transform-origin: left;
}

.act-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.28);
  box-shadow: 0 30px 90px rgba(14, 165, 233, 0.16);
}

.act-card:hover::before {
  opacity: 1;
  transform: scale(1.02);
}

.act-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.act-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.act-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  color: #075985;
  background: #e0f2fe;
  font-size: 0.8rem;
  font-weight: 850;
  max-width: calc(100% - 58px);
  line-height: 1.2;
}

.act-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #2563eb);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.act-card:hover .act-icon {
  transform: rotate(-4deg) scale(1.05);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.3);
}

.act-card h2 {
  margin: 1.1rem 0 0.7rem;
  color: #0f172a;
  font-size: 1.3rem;
  line-height: 1.25;
  font-weight: 750;
}

.act-card p {
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.act-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 0.95rem;
}

.act-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.92);
  color: #475569;
  font-size: 0.78rem;
  font-weight: 750;
}

.act-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  margin-top: auto;
  color: #2563eb;
  font-weight: 850;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}

.act-card-footer i {
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

.act-card:hover .act-card-footer i {
  transform: translate(3px, -3px);
}

.empty-library {
  padding: 3rem;
  border: 1px dashed #bae6fd;
  border-radius: 26px;
  text-align: center;
  background: #f8fbff;
}

.library-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
}

.library-pagination nav {
  width: 100%;
}

.library-pagination .pagination {
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0;
}

.library-pagination .page-item .page-link {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  color: #0f172a;
  background: #fff;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.library-pagination .page-item .page-link:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: #0ea5e9;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.18);
}

.library-pagination .page-item.active .page-link {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0f172a, #2563eb);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.22);
}

.library-pagination .page-item.disabled .page-link {
  color: #94a3b8;
  background: #f8fafc;
  border-color: #e2e8f0;
  box-shadow: none;
  cursor: not-allowed;
}

.library-pagination .page-link:focus {
  box-shadow: 0 0 0 0.24rem rgba(14, 165, 233, 0.14);
}

.act-reader {
  background:
    radial-gradient(
      circle at 8% 14%,
      rgba(14, 165, 233, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f7fafc 100%);
}

.act-reader-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 64px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(14, 64, 121, 0.9)),
    url("https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=1800&q=80")
      center/cover;
}

.act-reader-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.24;
}

.act-reader-hero .container {
  position: relative;
  z-index: 1;
}

.act-reader-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #dbeafe;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.act-reader-hero h1 {
  max-width: 900px;
  margin: 1rem 0 0.9rem;
  font-size: clamp(2.2rem, 5vw, 4.55rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -1px;
}

.act-reader-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.hero-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.hero-tool {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.hero-tool:hover {
  transform: translateY(-2px);
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.act-reader-wrap {
  padding: 0 0 72px;
}

.reader-stats {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.reader-stat {
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.reader-stat span {
  display: block;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 750;
}

.reader-stat strong {
  display: block;
  margin-top: 0.25rem;
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 850;
}

.reader-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 1.4rem;
  align-items: start;
  margin-top: 2rem;
}

.reader-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.reader-card-header {
  padding: 1.3rem 1.45rem;
  border-bottom: 1px solid #eef2f7;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
}

.reader-card-header span {
  color: #2563eb;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.75rem;
}

.reader-card-header h2 {
  margin: 0.4rem 0 0;
  color: #0f172a;
  font-weight: 750;
  font-size: 1.55rem;
}

.reader-content {
  padding: 1.45rem;
  color: #334155;
  font-size: 1rem;
  line-height: 1.85;
  white-space: pre-line;
}

.notes-card {
  margin-top: 1.1rem;
  border-color: rgba(245, 158, 11, 0.18);
}

.notes-card .reader-card-header {
  background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.notes-card .reader-card-header span {
  color: #ea580c;
}

.reader-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 1rem;
}

.sidebar-panel {
  padding: 1.2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.sidebar-panel.dark {
  color: #fff;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(14, 165, 233, 0.25),
      transparent 35%
    ),
    #0f172a;
}

.sidebar-panel h3 {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
  font-weight: 850;
}

.quick-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
  padding: 0.82rem 0.9rem;
  border-radius: 16px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.quick-action:hover {
  transform: translateY(-2px);
  color: inherit;
  background: rgba(255, 255, 255, 0.16);
}

.outline-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.82rem 0.9rem;
  border-radius: 16px;
  background: #f8fbff;
  color: #0f172a;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.outline-action:hover {
  transform: translateY(-2px);
  color: #2563eb;
  background: #eff6ff;
}

.related-list {
  display: grid;
  gap: 0.7rem;
}

.related-act {
  display: block;
  padding: 0.9rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  color: #0f172a;
  text-decoration: none;
  background: #fff;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.related-act:hover {
  transform: translateY(-3px);
  color: #0f172a;
  border-color: #93c5fd;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.12);
}

.related-act strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.35;
}

.related-act span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
  color: #2563eb;
  font-size: 0.84rem;
  font-weight: 850;
}

.empty-content {
  color: #64748b;
  background: #f8fafc;
  border-radius: 18px;
  padding: 1rem;
}

@media (max-width: 991px) {
  .library-hero .container,
  .library-layout,
  .act-grid {
    grid-template-columns: 1fr;
  }

  .category-shelf {
    position: static;
  }

  .reader-stats,
  .reader-layout {
    grid-template-columns: 1fr;
  }

  .reader-sidebar {
    position: static;
  }
}

/* Bare Acts CSS Ends  */

/* RESPONSIVE */
@media (max-width: 1024px) {
}

@media (max-width: 768px) {
}

/* Media Query */

@media only screen and (max-width: 756px) {
}

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable,
  .choices__list[aria-expanded] .choices__item--selectable {
    padding-right: 10px;
  }
}
@media (max-width: 1199.98px) {
  .header-top::after {
    width: 58%;
  }
  .header-search-pill {
    display: none;
  }
  .header-actions {
    gap: 1rem;
  }
}
@media (max-width: 991.98px) {
  .header-top::after {
    display: none;
  }
  .header-top-inner {
    min-height: auto;
    padding-block: 0.9rem;
  }
  .header-actions {
    display: none;
  }
  .brand-logo {
    max-height: 58px;
    max-width: 260px;
  }
  .site-nav {
    min-height: auto;
    padding: 0.75rem 0 0.4rem;
  }
  .site-nav .navbar-nav {
    align-items: stretch !important;
    gap: 0.35rem;
  }
  .site-nav .nav-link {
    justify-content: flex-start;
    padding: 0.78rem 0.95rem;
  }
  .site-nav .nav-link::after {
    left: 0.95rem;
    right: 0.95rem;
    bottom: 0.42rem;
    width: auto;
    height: 3px;
    transform: scaleX(0);
  }
  .site-nav .nav-link:hover::after,
  .site-nav .nav-link.active::after {
    transform: scaleX(1);
  }
}
@media (max-width: 575.98px) {
  .brand-title {
    font-size: 1.05rem;
  }
  .brand-subtitle {
    display: none;
  }
  .footer-main {
    padding-top: 3rem;
  }
  .footer-newsletter {
    border-radius: 16px;
    flex-direction: column;
  }
}

:root {
  --primary-color: #047355;
  --font-family: "Outfit", sans-serif;
  --secondary-color: #03221a;
}

/* ==========================================================
   Frontend Page Styles
   Moved from Blade internal style blocks for shared maintenance.
   ========================================================== */

/* Source: .\resources\views\frontend\advertise-with-us.blade.php */
.ad-page {
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(32, 128, 255, 0.16),
      transparent 34%
    ),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 44%, #f6f9ff 100%);
}

.ad-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 70px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 22, 53, 0.94), rgba(15, 77, 151, 0.9)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=80")
      center/cover;
}

.ad-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.28;
}

.ad-hero .container {
  position: relative;
  z-index: 1;
}

.ad-kicker {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  font-weight: 700;
  color: #dbeafe;
}

.ad-hero h1 {
  max-width: 850px;
  margin: 1.2rem 0 1rem;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -1px;
}

.ad-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.ad-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  max-width: 720px;
}

.ad-stat {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.ad-stat strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1;
}

.ad-stat span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.ad-wrap {
  padding: 70px 0;
}

.ad-section-title {
  max-width: 720px;
  margin-bottom: 2rem;
}

.ad-section-title span {
  color: #1267d8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.ad-section-title h2 {
  margin: 0.5rem 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 650;
  color: #0d1b2f;
}

.ad-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.ad-package {
  position: relative;
  min-height: 280px;
  padding: 1.35rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.ad-package:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.36);
  box-shadow: 0 26px 80px rgba(37, 99, 235, 0.16);
}

.ad-package .icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  font-size: 1.4rem;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.ad-package h3 {
  margin: 1.2rem 0 0.6rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.ad-package p {
  color: #64748b;
  margin-bottom: 1rem;
}

.ad-package ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  color: #334155;
}

.ad-package li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.ad-package li i {
  color: #0ea5e9;
  margin-top: 0.15rem;
}

.ad-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  gap: 1.4rem;
  align-items: start;
  margin-top: 3rem;
}

.ad-process {
  padding: 2rem;
  border-radius: 28px;
  background: #0f172a;
  color: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

.ad-process h2 {
  font-size: 2rem;
  font-weight: 650;
  margin-bottom: 1.2rem;
}

.ad-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ad-step strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

.ad-step h4 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.ad-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.ad-form-card {
  position: sticky;
  top: 120px;
  padding: 1.4rem;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
}

.ad-form-card h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: #0f172a;
}

.ad-form-card .form-control {
  min-height: 50px;
  border-radius: 14px;
  border-color: #dbe5f0;
  background: #f8fbff;
}

.ad-form-card .form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 0.24rem rgba(37, 99, 235, 0.14);
  background: #fff;
}

.ad-submit {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #0891b2);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.24);
}

@media (max-width: 991px) {
  .ad-stats,
  .ad-package-grid,
  .ad-shell {
    grid-template-columns: 1fr;
  }

  .ad-form-card {
    position: static;
  }
}

/* Source: .\resources\views\frontend\bare-acts\index.blade.php */
/* Source: .\resources\views\frontend\bare-acts\show.blade.php */

/* Shared page banners */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  color: #fff;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 14% 20%,
      rgba(255, 255, 255, 0.16),
      transparent 18rem
    ),
    radial-gradient(
      circle at 86% 18%,
      rgba(56, 189, 248, 0.24),
      transparent 24rem
    );
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-weight: 800;
  margin-bottom: 1rem;
}
.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  font-weight: 500;
  line-height: 0.98;
  margin-bottom: 1rem;
}
.page-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}
.page-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.page-hero-stat {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
}
.page-hero-stat strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
}
.page-hero-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

/* Shared detail-page banners */
.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: end;
  color: #fff;
}
.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 14% 22%,
      rgba(255, 255, 255, 0.16),
      transparent 18rem
    ),
    radial-gradient(
      circle at 88% 16%,
      rgba(56, 189, 248, 0.22),
      transparent 24rem
    );
}
.detail-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, #f8fbff);
}
.detail-hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4.6rem;
}
.detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-weight: 800;
  margin-bottom: 1rem;
}
.detail-hero h1 {
  max-width: 940px;
  font-size: clamp(2.35rem, 4.8vw, 5rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1rem;
}
.detail-hero-summary {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}
.detail-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.detail-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  backdrop-filter: blur(10px);
}

/* Source: .\resources\views\frontend\blogs\index.blade.php */
.blogs-hero {
  background:
    linear-gradient(135deg, rgba(8, 17, 35, 0.94), rgba(30, 64, 175, 0.76)),
    url("/storage/blogs/blog-placeholder.svg") center/cover no-repeat;
}
.blogs-hero::before {
  background:
    radial-gradient(
      circle at 14% 20%,
      rgba(255, 255, 255, 0.16),
      transparent 18rem
    ),
    radial-gradient(
      circle at 86% 18%,
      rgba(56, 189, 248, 0.24),
      transparent 24rem
    );
}
.blogs-wrap {
  padding: 0 0 5rem;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(37, 99, 235, 0.09),
      transparent 24rem
    ),
    #f8fbff;
}
.blog-filter-card {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  padding: 1rem;
  border: 1px solid rgba(37, 99, 235, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
}
.filter-label {
  color: #475569;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.blogs-section-head,
.courses-section-head,
.judgments-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin: 3rem 0 1.35rem;
}
.blogs-section-head h2,
.courses-section-head h2 {
  font-weight: 700;
  margin: 0;
}
.blogs-count,
.courses-count,
.judgments-count {
  color: #64748b;
  font-weight: 700;
}
.blog-card-premium {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.blog-card-premium:hover {
  transform: translateY(-10px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 28px 72px rgba(37, 99, 235, 0.18);
}
.blog-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #2563eb);
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.blog-card-premium:hover .blog-card-media img {
  transform: scale(1.06);
}
.blog-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.04),
    rgba(15, 23, 42, 0.66)
  );
}
.blog-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 4rem;
}
.blog-category-pill {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(37, 99, 235, 0.92);
  font-size: 0.8rem;
  font-weight: 800;
}
.blog-card-body {
  padding: 1.25rem;
}
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.blog-title {
  min-height: 3.5rem;
  font-size: 1.22rem;
  line-height: 1.26;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.blog-title a {
  color: #0f172a;
  text-decoration: none;
}
.blog-title a:hover {
  color: #1d4ed8;
}
.blog-excerpt {
  color: #64748b;
  min-height: 3.1rem;
  margin-bottom: 1.15rem;
}
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}
.blog-tags span {
  padding: 0.32rem 0.52rem;
  border-radius: 999px;
  color: #1d4ed8;
  background: #dbeafe;
  font-size: 0.75rem;
  font-weight: 800;
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #fff;
  background: #111827;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  font-weight: 500;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
  font-size: 0.8rem;
}
.blog-link:hover {
  color: #fff;
  background: #2563eb;
  transform: translateX(2px);
}
.empty-blogs {
  padding: 4rem 1rem;
  border: 1px dashed #bfdbfe;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  color: #64748b;
}
@media (max-width: 767.98px) {
  .blogs-hero {
    padding: 4rem 0 4.5rem;
  }
  .blogs-section-head {
    align-items: start;
    flex-direction: column;
  }
}

/* Source: .\resources\views\frontend\blogs\show.blade.php */
.article-hero {
  min-height: 600px;
  background:
    linear-gradient(135deg, rgba(8, 17, 35, 0.94), rgba(30, 64, 175, 0.72)),
    var(--article-hero-image, url("/storage/blogs/blog-placeholder.svg"))
      center/cover no-repeat;
}
.article-hero::before {
  background:
    radial-gradient(
      circle at 14% 22%,
      rgba(255, 255, 255, 0.16),
      transparent 18rem
    ),
    radial-gradient(
      circle at 88% 16%,
      rgba(56, 189, 248, 0.22),
      transparent 24rem
    );
}
.article-wrap {
  padding: 0 0 5rem;
  background:
    radial-gradient(
      circle at 8% 16%,
      rgba(37, 99, 235, 0.08),
      transparent 24rem
    ),
    #f8fbff;
}
.article-shell {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
}
.article-panel {
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.article-panel-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid #eef2f7;
  background: linear-gradient(135deg, #fff, #f8fbff);
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.tag-list span {
  padding: 0.38rem 0.6rem;
  border-radius: 999px;
  color: #1d4ed8;
  background: #dbeafe;
  font-size: 0.78rem;
  font-weight: 800;
}
.article-content {
  padding: 1.6rem;
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.9;
}
.article-content p {
  margin-bottom: 1.15rem;
}
.article-sidebar {
  position: sticky;
  top: 150px;
}
.sidebar-card {
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  margin-bottom: 1rem;
}
.sidebar-card-header {
  padding: 1rem 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, #1d4ed8, #0891b2);
}
.sidebar-card-header h5 {
  margin: 0;
  font-weight: 700;
}
.sidebar-card-body {
  padding: 1rem;
}
.related-article {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #eef2f7;
}
.related-article:last-child {
  border-bottom: 0;
}
.related-thumb {
  width: 74px;
  height: 58px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #1d4ed8, #06b6d4);
}
.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-article a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.25;
}
.faq-panel {
  margin-top: 1.25rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}
.faq-panel h3 {
  padding: 1.2rem 1.35rem;
  margin: 0;
  font-weight: 700;
  border-bottom: 1px solid #eef2f7;
}
.faq-panel .accordion-button {
  font-weight: 800;
}
@media (max-width: 991.98px) {
  .article-sidebar {
    position: static;
  }
}

/* Source: .\resources\views\frontend\contact.blade.php */
.contact-hero {
  background:
    linear-gradient(135deg, rgba(8, 17, 35, 0.94), rgba(30, 64, 175, 0.72)),
    url("/storage/home-banners/home-banner-1.svg") center/cover no-repeat;
}
.contact-hero::before {
  background:
    radial-gradient(
      circle at 14% 20%,
      rgba(255, 255, 255, 0.16),
      transparent 18rem
    ),
    radial-gradient(
      circle at 86% 18%,
      rgba(56, 189, 248, 0.24),
      transparent 24rem
    );
}
.contact-hero h1 {
  max-width: 780px;
}
.contact-hero p {
  max-width: 680px;
}
.contact-wrap {
  padding: 0 0 5rem;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(37, 99, 235, 0.09),
      transparent 24rem
    ),
    #f8fbff;
}
.contact-info-grid {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(37, 99, 235, 0.13);
  border-radius: 18px;
  color: #0f172a;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.contact-info-card:hover {
  color: #0f172a;
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 28px 70px rgba(37, 99, 235, 0.15);
}
.contact-info-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  font-size: 1.35rem;
}
.contact-info-card small {
  display: block;
  color: #64748b;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.contact-info-card strong {
  display: block;
  overflow-wrap: anywhere;
}
.contact-shell {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 1.25rem;
  align-items: start;
}
.contact-panel {
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}
.contact-panel-head {
  padding: 1.3rem 1.45rem;
  border-bottom: 1px solid #eef2f7;
  background: linear-gradient(135deg, #fff, #f8fbff);
}
.contact-panel-head h2,
.contact-panel-head h3 {
  margin: 0;
  font-weight: 700;
}
.contact-panel-head p {
  margin: 0.25rem 0 0;
  color: #64748b;
}
.contact-form-body {
  padding: 1.45rem;
}
.contact-form-body .form-control {
  border-radius: 12px;
  padding: 0.76rem 0.9rem;
}
.contact-form-body textarea {
  min-height: 150px;
}
.map-card {
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}
.map-frame {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}
.map-details {
  padding: 1.2rem;
}
.quick-help {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}
.quick-help a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 14px;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  text-decoration: none;
  font-weight: 800;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.quick-help a:hover {
  background: #eff6ff;
  transform: translateX(3px);
}
.quick-help i {
  color: #2563eb;
}
@media (max-width: 991.98px) {
  .contact-info-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }
}

/* Source: .\resources\views\frontend\courses\index.blade.php */
.courses-hero {
  background:
    linear-gradient(135deg, rgba(8, 17, 35, 0.92), rgba(30, 64, 175, 0.78)),
    url("/storage/home-banners/home-banner-1.svg") center/cover no-repeat;
}
.courses-hero::before {
  background-image:
    radial-gradient(
      circle at 18% 15%,
      rgba(255, 255, 255, 0.18),
      transparent 18rem
    ),
    radial-gradient(
      circle at 86% 24%,
      rgba(56, 189, 248, 0.28),
      transparent 22rem
    );
}
.courses-hero h1 {
  max-width: 780px;
}
.courses-hero p {
  max-width: 660px;
}
.courses-wrap {
  position: relative;
  padding: 5rem 0 5rem;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(37, 99, 235, 0.09),
      transparent 24rem
    ),
    #f8fbff;
}
.course-filter-card {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  padding: 1rem;
  border: 1px solid rgba(37, 99, 235, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
}
.premium-course-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.premium-course-card:hover {
  transform: translateY(-10px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 28px 72px rgba(37, 99, 235, 0.18);
}
.course-card-media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(135deg, #1d4ed8, #06b6d4);
}
.course-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.premium-course-card:hover .course-card-media img {
  transform: scale(1.06);
}
.course-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.02),
    rgba(15, 23, 42, 0.68)
  );
}
.course-card-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 4rem;
}
.course-badges {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.course-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(37, 99, 235, 0.92);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
  font-size: 0.8rem;
  font-weight: 800;
}
.course-pill.featured {
  color: #111827;
  background: #facc15;
}
.premium-course-body {
  padding: 1.25rem;
}
.premium-course-title {
  min-height: 3.4rem;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.55rem;
}
.premium-course-title a {
  color: #0f172a;
  text-decoration: none;
}
.premium-course-title a:hover {
  color: #1d4ed8;
}
.course-institute {
  color: #475569;
  margin-bottom: 1rem;
}
.course-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}
.course-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid #eef2f7;
}
.course-price {
  color: #0f172a;
  font-weight: 700;
  line-height: 1.05;
}
.course-price small {
  display: block;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
}
.course-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  color: #fff;
  background: #111827;
  text-decoration: none;
  font-weight: 500;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
  font-size: 0.8rem;
}
.course-cta:hover {
  color: #fff;
  background: #2563eb;
  transform: translateX(2px);
}
.empty-courses {
  padding: 4rem 1rem;
  border: 1px dashed #bfdbfe;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  color: #64748b;
}
@media (max-width: 767.98px) {
  .courses-hero {
    padding: 4rem 0 4.5rem;
  }
  .courses-section-head {
    align-items: start;
    flex-direction: column;
  }
}

/* Source: .\resources\views\frontend\courses\show.blade.php */
.course-detail-hero {
  background:
    linear-gradient(135deg, rgba(8, 17, 35, 0.94), rgba(30, 64, 175, 0.72)),
    var(--course-hero-image, url("/storage/home-banners/home-banner-2.svg"))
      center/cover no-repeat;
}
.course-detail-hero::before {
  background:
    radial-gradient(
      circle at 14% 20%,
      rgba(255, 255, 255, 0.16),
      transparent 18rem
    ),
    radial-gradient(
      circle at 88% 16%,
      rgba(56, 189, 248, 0.22),
      transparent 24rem
    );
}
.course-detail-hero::after {
  height: 38%;
}
.course-detail-hero h1 {
  max-width: 920px;
}
.course-hero-subtitle {
  max-width: 740px;
  margin-bottom: 1.5rem;
}
.course-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.course-detail-wrap {
  padding: 0 0 5rem;
  background:
    radial-gradient(
      circle at 8% 16%,
      rgba(37, 99, 235, 0.08),
      transparent 24rem
    ),
    #f8fbff;
}
.course-summary-grid {
  position: relative;
  z-index: 2;
  margin-top: -2.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.summary-card {
  padding: 1rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}
.summary-card i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  margin-bottom: 0.65rem;
}
.summary-card small {
  display: block;
  color: #64748b;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.summary-card strong {
  color: #0f172a;
  font-size: 1.05rem;
}
.detail-panel {
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}
.detail-panel-header {
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid #eef2f7;
  background: linear-gradient(135deg, #fff, #f8fbff);
}
.detail-panel-header h2 {
  margin: 0;
  font-weight: 700;
}
.detail-copy {
  padding: 1.35rem;
  color: #334155;
  font-size: 1.03rem;
  line-height: 1.85;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0 1.35rem 1.35rem;
}
.benefit-item {
  display: flex;
  align-items: start;
  gap: 0.65rem;
  padding: 0.85rem;
  border-radius: 14px;
  background: #f8fafc;
  color: #334155;
  font-weight: 700;
}
.benefit-item i {
  color: #2563eb;
}
.enquiry-card {
  position: sticky;
  top: 150px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}
.enquiry-card-top {
  padding: 1.35rem;
  color: #fff;
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(255, 255, 255, 0.24),
      transparent 8rem
    ),
    linear-gradient(135deg, #1d4ed8, #0891b2);
}
.enquiry-card-top h5 {
  margin: 0;
  font-weight: 700;
}
.enquiry-card-body {
  padding: 1.25rem;
}
.enquiry-card .form-control {
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
}
.apply-box {
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.related-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.related-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow: 0 22px 55px rgba(37, 99, 235, 0.14);
}
.related-media {
  position: relative;
  height: 145px;
  overflow: hidden;
  background: linear-gradient(135deg, #1d4ed8, #06b6d4);
}
.related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.related-card:hover .related-media img {
  transform: scale(1.06);
}
.related-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.62));
}
.related-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 3rem;
}
.related-badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 1;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(37, 99, 235, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
}
.related-body {
  padding: 1rem;
}
.related-card a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
}
.related-title {
  min-height: 2.8rem;
  line-height: 1.25;
  margin-bottom: 0.65rem;
}
.related-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.75rem 0 1rem;
}
.related-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.38rem 0.55rem;
  border-radius: 999px;
  color: #334155;
  background: #f1f5f9;
  font-size: 0.78rem;
  font-weight: 700;
}
.related-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid #eef2f7;
}
.related-price {
  color: #0f172a;
  font-weight: 700;
}
.related-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff !important;
  background: #111827;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.related-card:hover .related-link {
  background: #2563eb;
  transform: translateX(2px);
}
@media (max-width: 991.98px) {
  .course-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .enquiry-card {
    position: static;
  }
}
@media (max-width: 575.98px) {
  .course-summary-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .course-detail-hero {
    min-height: 520px;
  }
}

/* Source: .\resources\views\frontend\drafting\index.blade.php */
.draft-store-page {
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(14, 165, 233, 0.13),
      transparent 28rem
    ),
    linear-gradient(180deg, #f8fbff 0%, #fff 45%, #f8fafc 100%);
}
.draft-store-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 72px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(8, 145, 178, 0.9)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=80")
      center/cover;
}
.draft-store-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.24;
}
.draft-store-hero .container {
  position: relative;
  z-index: 1;
}
.draft-store-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #cffafe;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 850;
  backdrop-filter: blur(12px);
}
.draft-store-hero h1 {
  max-width: 850px;
  margin: 1rem 0 0.8rem;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 650;
  letter-spacing: -1px;
}
.draft-store-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}
.draft-filter-wrap {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}
.draft-filter {
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(18px);
}
.draft-filter .form-control,
.draft-filter .form-select {
  min-height: 52px;
  border-radius: 16px;
  border-color: #dbe5ef;
  background: #fbfdff;
}
.draft-filter .form-control:focus,
.draft-filter .form-select:focus {
  border-color: #0891b2;
  box-shadow: 0 0 0 0.24rem rgba(8, 145, 178, 0.14);
}
.draft-filter button,
.draft-filter .reset-link {
  min-height: 52px;
  border-radius: 16px;
  font-weight: 850;
}
.draft-filter button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #0891b2, #2563eb);
  box-shadow: 0 16px 36px rgba(8, 145, 178, 0.22);
}
.draft-store-body {
  padding: 62px 0 78px;
}
.draft-store-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}
.draft-category-panel {
  position: sticky;
  top: 112px;
  padding: 1rem;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 8%, rgba(34, 211, 238, 0.2), transparent 34%),
    #0f172a;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}
.draft-category-panel h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 850;
}
.draft-category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.78rem 0.85rem;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.draft-category-link:hover,
.draft-category-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(3px);
}
.draft-template-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.draft-template-card {
  position: relative;
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.065);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.draft-template-card:hover {
  transform: translateY(-8px);
  color: inherit;
  border-color: rgba(8, 145, 178, 0.32);
  box-shadow: 0 30px 85px rgba(8, 145, 178, 0.14);
}
.draft-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.draft-card-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  color: #075985;
  background: #e0f2fe;
  font-size: 0.78rem;
  font-weight: 850;
}
.draft-card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #0891b2);
  box-shadow: 0 14px 30px rgba(8, 145, 178, 0.22);
}
.draft-template-card h2 {
  margin: 0 0 0.75rem;
  color: #0f172a;
  font-size: 1.28rem;
  line-height: 1.28;
  font-weight: 850;
}
.draft-template-card p {
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.draft-price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.sale-price {
  color: #15803d;
  font-weight: 900;
  font-size: 1.08rem;
}
.discount-price {
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 750;
}
.free-price {
  color: #0891b2;
  font-weight: 900;
  font-size: 1.08rem;
}
.draft-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid #eef2f7;
  color: #0891b2;
  font-weight: 850;
}
.draft-empty {
  grid-column: 1 / -1;
  padding: 3rem;
  border: 1px dashed #bae6fd;
  border-radius: 26px;
  text-align: center;
  color: #64748b;
  background: #f0f9ff;
}
.draft-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
}
.draft-pagination .pagination {
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0;
}
.draft-pagination .page-link {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #bae6fd;
  border-radius: 14px;
  color: #0f172a;
  background: #fff;
  font-weight: 850;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}
.draft-pagination .page-item.active .page-link,
.draft-pagination .page-link:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0891b2, #2563eb);
}
.draft-pagination .page-item.disabled .page-link {
  color: #94a3b8;
  background: #f8fafc;
  border-color: #e2e8f0;
  box-shadow: none;
}
@media (max-width: 991px) {
  .draft-store-layout,
  .draft-template-grid {
    grid-template-columns: 1fr;
  }
  .draft-category-panel {
    position: static;
  }
}

/* Source: .\resources\views\frontend\drafting\show.blade.php */
.draft-detail-page {
  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(14, 165, 233, 0.12),
      transparent 27rem
    ),
    linear-gradient(180deg, #f8fbff 0%, #fff 42%, #f8fafc 100%);
}
.draft-detail-hero {
  padding: 76px 0 58px;
  background: linear-gradient(135deg, #0f172a, #164e63);
  color: #fff;
}
.draft-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.4rem;
  align-items: start;
  padding: 0 0 78px;
}
.draft-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: #cffafe;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 850;
}
.draft-detail-hero h1 {
  max-width: 900px;
  margin: 1rem 0 0.8rem;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 650;
  letter-spacing: -1px;
}
.draft-detail-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}
.draft-detail-wrap {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}
.document-preview {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}
.document-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}
.toolbar-dots {
  display: flex;
  gap: 0.4rem;
}
.toolbar-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #cbd5e1;
}
.toolbar-dots span:nth-child(1) {
  background: #ef4444;
}
.toolbar-dots span:nth-child(2) {
  background: #f59e0b;
}
.toolbar-dots span:nth-child(3) {
  background: #22c55e;
}
.document-meta {
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 750;
}
.document-paper {
  padding: clamp(1.25rem, 3vw, 2.4rem);
  color: #334155;
  line-height: 1.9;
  white-space: pre-line;
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(14, 165, 233, 0.08) 0 5px, transparent 5px),
    #fff;
}
.document-paper h2 {
  color: #0f172a;
  font-weight: 850;
  margin-bottom: 1rem;
}
.purchase-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 1rem;
}
.purchase-card {
  padding: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}
.price-box {
  padding: 1rem;
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(34, 211, 238, 0.24),
      transparent 34%
    ),
    #0f172a;
  color: #fff;
  margin-bottom: 1rem;
}
.price-box span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-line-detail {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.45rem;
}
.sale-price-detail {
  color: #22c55e;
  font-size: 1.75rem;
  font-weight: 950;
  line-height: 1;
}
.discount-price-detail {
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 800;
}
.free-price-detail {
  color: #67e8f9;
  font-size: 1.75rem;
  font-weight: 950;
}
.purchase-card .form-control {
  min-height: 48px;
  border-radius: 14px;
  border-color: #dbe5ef;
}
.purchase-card .form-control:focus {
  border-color: #0891b2;
  box-shadow: 0 0 0 0.24rem rgba(8, 145, 178, 0.14);
}
.purchase-btn {
  min-height: 50px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #0891b2, #2563eb);
  font-weight: 900;
  width: 100%;
  box-shadow: 0 16px 36px rgba(8, 145, 178, 0.22);
}
.trust-list {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: #64748b;
  font-size: 0.9rem;
}
.trust-list li {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}
.trust-list i {
  color: #0891b2;
}
.side-link {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  color: #0f172a;
  text-decoration: none;
  background: #fff;
  font-weight: 850;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.side-link:hover {
  transform: translateY(-2px);
  color: #0f172a;
  border-color: #67e8f9;
  box-shadow: 0 14px 34px rgba(8, 145, 178, 0.12);
}
@media (max-width: 991px) {
  .draft-detail-layout {
    grid-template-columns: 1fr;
  }
  .purchase-panel {
    position: static;
  }
}

/* Source: .\resources\views\frontend\home.blade.php */
.home-hero-carousel,
.home-hero-slide {
  min-height: 560px;
}
.home-hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #111827;
}
.home-hero-slide picture,
.home-hero-slide img,
.home-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-hero-slide img {
  object-fit: cover;
}
.home-hero-overlay {
  z-index: 1;
  background: #000;
}
.home-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 6rem 0;
}
.hero-copy {
  max-width: 720px;
}
.hero-copy.center {
  margin-inline: auto;
  text-align: center;
}
.hero-copy.right {
  margin-left: auto;
  text-align: right;
}
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-weight: 700;
  font-size: 0.9rem;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
  margin-bottom: 1rem;
}
.hero-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
  margin-bottom: 1.6rem;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-copy.center p {
  margin-inline: auto;
}
.hero-copy.right p {
  margin-left: auto;
}
.hero-copy.center .hero-actions {
  justify-content: center;
}
.hero-copy.right .hero-actions {
  justify-content: flex-end;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
.featured-courses-section {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(37, 99, 235, 0.12),
      transparent 22rem
    ),
    radial-gradient(
      circle at 92% 18%,
      rgba(6, 182, 212, 0.16),
      transparent 24rem
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.featured-courses-section::before {
  content: "";
  position: absolute;
  inset: auto -8rem -14rem auto;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  filter: blur(4px);
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: #1d4ed8;
  background: #dbeafe;
  font-weight: 800;
  font-size: 0.84rem;
  margin-bottom: 0.85rem;
}
.section-heading {
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.65rem;
}
.section-subtitle {
  max-width: 670px;
  color: #64748b;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.featured-course-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.featured-course-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255, 255, 255, 0.42) 45%,
    transparent 62%
  );
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  pointer-events: none;
}
.featured-course-card:hover {
  transform: translateY(-10px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 28px 70px rgba(37, 99, 235, 0.18);
}
.featured-course-card:hover::after {
  transform: translateX(120%);
}
.course-media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(135deg, #1d4ed8, #06b6d4);
}
.course-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.course-media-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 4rem;
}
.featured-course-card:hover .course-media img {
  transform: scale(1.06);
}
.course-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.05),
    rgba(15, 23, 42, 0.62)
  );
}
.course-category-pill {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.46rem 0.7rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(37, 99, 235, 0.92);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
  font-weight: 800;
  font-size: 0.82rem;
}
.featured-course-body {
  padding: 1.25rem;
}
.featured-course-title {
  min-height: 3.45rem;
  font-size: 1.23rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}
.featured-course-title a {
  color: #0f172a;
  text-decoration: none;
}
.featured-course-title a:hover {
  color: #1d4ed8;
}
.course-institute {
  color: #475569;
  margin-bottom: 0.95rem;
}
.course-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}
.course-meta-chip {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  min-width: 0;
  padding: 0.58rem 0.65rem;
  border-radius: 12px;
  color: #334155;
  background: #f1f5f9;
  font-size: 0.86rem;
  font-weight: 500;
}
.course-meta-chip i {
  color: #2563eb;
}
.course-cta i {
  transition: transform 0.18s ease;
}
.course-cta:hover i {
  transform: translateX(3px);
}
.latest-articles-section {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(14, 165, 233, 0.14),
      transparent 24rem
    ),
    radial-gradient(
      circle at 90% 22%,
      rgba(37, 99, 235, 0.12),
      transparent 24rem
    ),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.latest-articles-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none;
}
.article-card-premium {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.article-card-premium:hover {
  transform: translateY(-10px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 28px 70px rgba(37, 99, 235, 0.16);
}
.article-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #2563eb);
}
.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.article-card-premium:hover .article-media img {
  transform: scale(1.06);
}
.article-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.04),
    rgba(15, 23, 42, 0.66)
  );
}
.article-media-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 4rem;
}
.article-category-pill {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(37, 99, 235, 0.92);
  font-size: 0.8rem;
  font-weight: 800;
}
.article-card-body {
  padding: 1.25rem;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.article-title {
  min-height: 3.5rem;
  font-size: 1.22rem;
  line-height: 1.26;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.article-title a {
  color: #0f172a;
  text-decoration: none;
}
.article-title a:hover {
  color: #1d4ed8;
}
.article-excerpt {
  color: #64748b;
  min-height: 3.1rem;
  margin-bottom: 1.15rem;
}
.article-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #fff;
  background: #111827;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  font-weight: 500;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
  font-size: 0.8rem;
}
.article-link:hover {
  color: #fff;
  background: #2563eb;
  transform: translateX(2px);
}
.latest-judgments-section {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(245, 158, 11, 0.14),
      transparent 22rem
    ),
    radial-gradient(
      circle at 92% 12%,
      rgba(37, 99, 235, 0.12),
      transparent 24rem
    ),
    #ffffff;
}
.judgment-card-premium {
  height: 100%;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fffaf0);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.judgment-card-premium:hover {
  transform: translateY(-10px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 28px 70px rgba(245, 158, 11, 0.18);
}
.judgment-card-top {
  padding: 1.1rem 1.2rem;
  color: #fff;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(255, 255, 255, 0.24),
      transparent 7rem
    ),
    linear-gradient(135deg, #0f172a, #1d4ed8);
}
.judgment-court-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.66rem;
  border-radius: 999px;
  color: #111827;
  background: #facc15;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.judgment-card-title {
  min-height: 4rem;
  font-size: 1.18rem;
  line-height: 1.28;
  font-weight: 700;
  margin: 0;
}
.judgment-card-title a {
  color: #fff;
  text-decoration: none;
}
.judgment-card-body {
  padding: 1.15rem;
}
.judgment-meta-list {
  display: grid;
  gap: 0.55rem;
  color: #475569;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.judgment-meta-list span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.judgment-meta-list i {
  color: #d97706;
}
.judgment-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  color: #fff;
  background: #111827;
  text-decoration: none;
  font-weight: 500;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
  font-size: 0.8rem;
}
.judgment-link:hover {
  color: #fff;
  background: #d97706;
  transform: translateX(2px);
}
.home-hero-carousel .carousel-control-prev,
.home-hero-carousel .carousel-control-next {
  z-index: 5;
  width: 4.5rem;
  opacity: 1;
}
.home-hero-carousel .carousel-control-prev-icon,
.home-hero-carousel .carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-size: 1.15rem;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  transition:
    background-color 0.18s ease,
    transform 0.18s ease,
    border-color 0.18s ease;
}
.home-hero-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.home-hero-carousel .carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.62);
  transform: scale(1.06);
}
.home-hero-carousel .carousel-indicators {
  z-index: 5;
}
.career-opportunities-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(20, 184, 166, 0.12),
      transparent 24rem
    ),
    radial-gradient(
      circle at 92% 8%,
      rgba(79, 70, 229, 0.13),
      transparent 24rem
    ),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.career-opportunities-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
}
.career-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.career-column {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.career-column-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid #eef2f7;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
}
.career-column-title {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.career-column-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
}
.career-column.internship .career-column-icon {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}
.career-column.job .career-column-icon {
  background: linear-gradient(135deg, #4338ca, #2563eb);
}
.career-column h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.3rem;
  font-weight: 800;
}
.career-column-title span {
  color: #64748b;
  font-size: 0.9rem;
}
.career-view-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  color: #0f172a;
  background: #f1f5f9;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.career-view-link:hover {
  transform: translateY(-2px);
  color: #fff;
  background: #0f172a;
}
.career-list {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}
.career-card {
  position: relative;
  display: block;
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  color: inherit;
  background: #fff;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.career-card:hover {
  transform: translateY(-5px);
  color: inherit;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.11);
}
.career-column.internship .career-card:hover {
  border-color: rgba(20, 184, 166, 0.34);
}
.career-column.job .career-card:hover {
  border-color: rgba(37, 99, 235, 0.34);
}
.career-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.career-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.62rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 500;
  white-space: nowrap;
}
.career-column.internship .career-pill {
  color: #0f766e;
  background: #ccfbf1;
}
.career-column.job .career-pill {
  color: #1d4ed8;
  background: #dbeafe;
}
.career-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #0f172a;
  background: #f8fafc;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}
.career-card:hover .career-arrow {
  transform: translate(3px, -3px);
  color: #fff;
  background: #0f172a;
}
.career-card h4 {
  margin: 0 0 0.45rem;
  color: #0f172a;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 800;
}
.career-org {
  display: block;
  margin-bottom: 0.75rem;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 600;
}
.career-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.82rem;
}
.career-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.35rem 0.52rem;
  border-radius: 999px;
  background: #f8fafc;
}
.career-empty {
  padding: 2rem;
  border: 1px dashed #cbd5e1;
  border-radius: 20px;
  text-align: center;
  color: #64748b;
  background: #f8fafc;
}
.drafting-showcase-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(14, 165, 233, 0.12),
      transparent 23rem
    ),
    radial-gradient(
      circle at 88% 10%,
      rgba(15, 23, 42, 0.08),
      transparent 26rem
    ),
    #ffffff;
}
.drafting-showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 20%,
    #000 82%,
    transparent
  );
}
.drafting-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.drafting-card-pro {
  position: relative;
  display: flex;
  min-height: 405px;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  isolation: isolate;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.drafting-card-pro::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 128px;
  z-index: -1;
  background:
    radial-gradient(
      circle at 86% 18%,
      rgba(255, 255, 255, 0.2),
      transparent 18%
    ),
    linear-gradient(135deg, #0f172a 0%, #0e7490 58%, #2563eb 100%);
  background-size:
    auto,
    22px 22px,
    auto;
  opacity: 1;
  pointer-events: none;
  transition:
    height 0.28s ease,
    filter 0.28s ease;
}
.drafting-card-pro::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 96px;
  height: 64px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: #fff;
  pointer-events: none;
  transition: transform 0.28s ease;
}
.drafting-card-pro:hover {
  transform: translateY(-10px);
  color: inherit;
  border-color: rgba(8, 145, 178, 0.34);
  box-shadow: 0 34px 95px rgba(8, 145, 178, 0.2);
}
.drafting-card-pro:hover::before {
  height: 136px;
  filter: saturate(1.08);
}
.drafting-card-pro:hover::after {
  transform: translateY(-3px);
}
.drafting-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.05rem 1.05rem 0;
  margin-bottom: 1.85rem;
  position: relative;
  z-index: 2;
}
.drafting-product-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  min-width: 0;
}
.drafting-product-meta strong {
  display: block;
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.2;
  font-weight: 850;
}
.drafting-product-meta span {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 650;
}
.drafting-doc-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 18px 38px rgba(15, 23, 42, 0.2);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
  font-size: 1.35rem;
  backdrop-filter: blur(10px);
}
.drafting-card-pro:hover .drafting-doc-icon {
  transform: rotate(-4deg) scale(1.05);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.3);
}
.draft-file-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.74rem;
  border-radius: 15px;
  color: #ef4444;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
  white-space: nowrap;
}
.drafting-card-pro h3 {
  position: relative;
  z-index: 2;
  margin: 0.2rem 1.1rem 0.9rem;
  color: #0f172a;
  font-size: 1.28rem;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.drafting-price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(240, 253, 244, 0.98),
    rgba(248, 250, 252, 0.94)
  );
  margin: 0 1.1rem 1rem;
}
.draft-sale-price {
  color: #15803d;
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1;
}
.draft-discount-price {
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 750;
  font-size: 0.95rem;
}
.draft-free-price {
  color: #0891b2;
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1;
}
.draft-card-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0 1.1rem 1rem;
  padding: 0;
  list-style: none;
}
.draft-card-features li {
  text-align: center;
  color: #475569;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.15;
}
.draft-card-features i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 0.45rem;
  border-radius: 50%;
  color: #0891b2;
  background: #e0f2fe;
  font-size: 1.1rem;
}
.drafting-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  padding: 0.95rem 1.1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  color: #0e7490;
  background: linear-gradient(135deg, #f8fafc, #ecfeff);
  font-weight: 850;
}
.drafting-card-footer i {
  font-size: 1.2rem;
  transition: transform 0.24s ease;
}
.drafting-card-pro:hover .drafting-card-footer i {
  transform: translate(3px, -3px);
}
.drafting-card-pro {
  min-height: 290px;
  padding: 1.15rem 1.15rem 1rem 1.45rem;
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
}
.drafting-card-pro::before {
  inset: auto;
  right: -44px;
  top: -44px;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: rgba(14, 116, 144, 0.1);
  transition:
    transform 0.28s ease,
    background 0.28s ease;
}
.drafting-card-pro::after {
  left: auto;
  right: 1.2rem;
  top: auto;
  bottom: 1.1rem;
  width: 76px;
  height: 96px;
  border-radius: 12px;
  border: 1px solid rgba(14, 116, 144, 0.16);
  background:
    linear-gradient(#e2e8f0 0 0) 16px 22px/42px 3px no-repeat,
    linear-gradient(#e2e8f0 0 0) 16px 34px/34px 3px no-repeat,
    linear-gradient(#e2e8f0 0 0) 16px 46px/45px 3px no-repeat,
    rgba(255, 255, 255, 0.72);
  opacity: 0.58;
  transform: rotate(3deg);
}
.drafting-card-pro:hover {
  transform: translateY(-7px);
  border-color: rgba(14, 116, 144, 0.28);
  box-shadow: 0 28px 85px rgba(14, 116, 144, 0.16);
}
.drafting-card-pro:hover::before {
  height: 138px;
  transform: scale(1.14);
  background: rgba(14, 116, 144, 0.16);
}
.drafting-card-pro:hover::after {
  transform: rotate(0deg) translateY(-4px);
  opacity: 0.76;
}
.drafting-card-top {
  padding: 0;
  margin-bottom: 1rem;
}
.drafting-product-head,
.drafting-product-meta strong {
  color: #0f172a;
}
.drafting-product-meta strong {
  font-weight: 600;
}
.drafting-product-meta span {
  color: #64748b;
  font-weight: 400;
}
.drafting-doc-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #0e7490);
  border: 0;
  box-shadow: 0 14px 30px rgba(14, 116, 144, 0.22);
  font-size: 1.25rem;
  backdrop-filter: none;
}
.draft-file-pill {
  padding: 0.48rem 0.64rem;
  border-radius: 999px;
  color: #0e7490;
  background: #ecfeff;
  border: 1px solid #bae6fd;
  box-shadow: none;
  font-weight: 600;
}
.drafting-card-pro h3 {
  margin: 0 0 0.85rem;
  font-size: 1.22rem;
  line-height: 1.28;
  font-weight: 650;
  letter-spacing: 0;
}
.drafting-price-line {
  gap: 0.65rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  margin: 0 0 1rem;
}
.draft-sale-price,
.draft-free-price {
  font-size: 1.18rem;
  font-weight: 700;
}
.draft-discount-price {
  font-weight: 500;
}
.draft-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
}
.draft-card-features li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  background: #f1f5f9;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 500;
}
.draft-card-features i {
  display: inline;
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.9rem;
}
.drafting-card-footer {
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(14, 116, 144, 0.14);
  border-radius: 16px;
  background: #ecfeff;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .home-hero-carousel,
  .home-hero-slide {
    min-height: 620px;
  }
  .home-hero-content {
    padding: 4.5rem 0;
  }
  .hero-copy,
  .hero-copy.right {
    text-align: left;
    margin: 0;
  }
  .hero-copy.center {
    text-align: center;
  }
  .hero-copy.right .hero-actions {
    justify-content: flex-start;
  }
  .hero-copy.center .hero-actions {
    justify-content: center;
  }
  .career-board {
    grid-template-columns: 1fr;
  }
  .career-column-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .drafting-grid {
    grid-template-columns: 1fr;
  }
}

/* Source: .\resources\views\frontend\internships\index.blade.php */
.internship-page {
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(20, 184, 166, 0.16),
      transparent 28rem
    ),
    linear-gradient(180deg, #f7fffd 0%, #ffffff 44%, #f8fbff 100%);
}
.internship-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 70px;
  background:
    linear-gradient(
      135deg,
      rgba(240, 253, 250, 0.96),
      rgba(236, 253, 245, 0.9)
    ),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1800&q=80")
      center/cover;
}
.internship-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.14);
}
.internship-hero .container {
  position: relative;
  z-index: 1;
}
.internship-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: #0f766e;
  background: #ccfbf1;
  font-weight: 850;
}
.internship-hero h1 {
  max-width: 820px;
  margin: 1rem 0 0.8rem;
  color: #0f172a;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 1;
  font-weight: 650;
  letter-spacing: -1px;
}
.internship-hero p {
  max-width: 680px;
  color: #475569;
  font-size: 1.08rem;
}
.internship-filter-wrap {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}
.internship-filter {
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(18px);
}
.internship-filter .form-control,
.internship-filter .form-select {
  min-height: 52px;
  border-radius: 16px;
  border-color: #dbe5ef;
  background: #fbfdff;
}
.internship-filter .form-control:focus,
.internship-filter .form-select:focus {
  border-color: #0f766e;
  box-shadow: 0 0 0 0.24rem rgba(15, 118, 110, 0.14);
}
.internship-filter button,
.internship-filter .reset-link {
  min-height: 52px;
  border-radius: 16px;
  font-weight: 850;
}
.internship-filter button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  box-shadow: 0 16px 36px rgba(20, 184, 166, 0.2);
}
.internship-body {
  padding: 62px 0 76px;
}
.internship-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.internship-card {
  position: relative;
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 1.2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.internship-card:hover {
  transform: translateY(-8px);
  color: inherit;
  border-color: rgba(20, 184, 166, 0.35);
  box-shadow: 0 30px 80px rgba(20, 184, 166, 0.15);
}
.internship-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.mode-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.45rem 0.68rem;
  border-radius: 999px;
  color: #0f766e;
  background: #ccfbf1;
  font-size: 0.78rem;
  font-weight: 850;
}
.internship-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  box-shadow: 0 14px 30px rgba(20, 184, 166, 0.24);
}
.internship-card h2 {
  margin: 0 0 0.6rem;
  color: #0f172a;
  font-size: 1.25rem;
  line-height: 1.28;
  font-weight: 800;
}
.internship-org {
  color: #475569;
  font-weight: 650;
  margin-bottom: 0.9rem;
}
.internship-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.internship-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  color: #64748b;
  background: #f8fafc;
  font-size: 0.8rem;
  font-weight: 750;
}
.internship-eligibility {
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.internship-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid #eef2f7;
  color: #0f766e;
  font-weight: 850;
}
.internship-card-footer i {
  transition: transform 0.22s ease;
}
.internship-card:hover .internship-card-footer i {
  transform: translate(3px, -3px);
}
.listing-empty {
  grid-column: 1 / -1;
  padding: 3rem;
  border: 1px dashed #99f6e4;
  border-radius: 26px;
  text-align: center;
  color: #64748b;
  background: #f0fdfa;
}
.premium-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
}
.premium-pagination .pagination {
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0;
}
.premium-pagination .page-link {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #ccfbf1;
  border-radius: 14px;
  color: #0f172a;
  background: #fff;
  font-weight: 850;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}
.premium-pagination .page-item.active .page-link,
.premium-pagination .page-link:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}
.premium-pagination .page-item.disabled .page-link {
  color: #94a3b8;
  background: #f8fafc;
  border-color: #e2e8f0;
  box-shadow: none;
}
@media (max-width: 991px) {
  .internship-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .internship-grid {
    grid-template-columns: 1fr;
  }
}

/* Source: .\resources\views\frontend\internships\show.blade.php */
.intern-detail {
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(20, 184, 166, 0.14),
      transparent 28rem
    ),
    linear-gradient(180deg, #f7fffd 0%, #fff 44%, #f8fbff 100%);
}
.intern-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 66px;
  background:
    linear-gradient(
      135deg,
      rgba(240, 253, 250, 0.96),
      rgba(236, 253, 245, 0.9)
    ),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1800&q=80")
      center/cover;
}
.intern-detail-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.15);
}
.intern-detail-hero .container {
  position: relative;
  z-index: 1;
}
.intern-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: #0f766e;
  background: #ccfbf1;
  font-weight: 850;
}
.intern-detail-hero h1 {
  max-width: 880px;
  margin: 1rem 0 0.75rem;
  color: #0f172a;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
  font-weight: 650;
  letter-spacing: -1px;
}
.intern-org-line {
  color: #475569;
  font-size: 1.08rem;
  font-weight: 650;
}
.intern-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}
.intern-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
}
.apply-primary {
  color: #fff;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  box-shadow: 0 16px 36px rgba(20, 184, 166, 0.24);
}
.back-soft {
  color: #0f172a;
  background: #fff;
  border: 1px solid #dbe5ef;
}
.intern-wrap {
  padding: 0 0 76px;
}
.intern-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: -32px;
}
.intern-stat {
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}
.intern-stat span {
  display: block;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 800;
}
.intern-stat strong {
  display: block;
  margin-top: 0.25rem;
  color: #0f172a;
  font-size: 1.08rem;
  font-weight: 850;
}
.intern-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 1.3rem;
  align-items: start;
  margin-top: 2rem;
}
.intern-panel {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.07);
}
.intern-panel-header {
  padding: 1.3rem 1.45rem;
  border-bottom: 1px solid #eef2f7;
  background: linear-gradient(135deg, #fff, #f0fdfa);
}
.intern-panel-header span {
  color: #0f766e;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.75rem;
}
.intern-panel-header h2 {
  margin: 0.4rem 0 0;
  color: #0f172a;
  font-size: 1.55rem;
  font-weight: 800;
}
.intern-content {
  padding: 1.45rem;
  color: #334155;
  line-height: 1.85;
  white-space: pre-line;
}
.intern-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 1rem;
}
.intern-side-card {
  padding: 1.15rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}
.intern-side-card.dark {
  color: #fff;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(45, 212, 191, 0.24),
      transparent 36%
    ),
    #0f172a;
}
.intern-side-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 850;
}
.side-apply {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  padding: 0.86rem 0.95rem;
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  font-weight: 850;
}
.side-info {
  display: grid;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}
.side-info span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.related-intern {
  display: block;
  padding: 0.9rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  color: #0f172a;
  text-decoration: none;
  background: #fff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.related-intern:hover {
  transform: translateY(-3px);
  color: #0f172a;
  border-color: #5eead4;
  box-shadow: 0 14px 34px rgba(20, 184, 166, 0.12);
}
.related-intern strong {
  display: block;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}
.related-intern span {
  color: #0f766e;
  font-size: 0.84rem;
  font-weight: 850;
}
@media (max-width: 991px) {
  .intern-stats,
  .intern-layout {
    grid-template-columns: 1fr;
  }
  .intern-sidebar {
    position: static;
  }
}

/* Source: .\resources\views\frontend\jobs\index.blade.php */
.jobs-page {
  background:
    radial-gradient(
      circle at 86% 8%,
      rgba(37, 99, 235, 0.14),
      transparent 26rem
    ),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f8fafc 100%);
}
.jobs-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 70px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(37, 99, 235, 0.88)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1800&q=80")
      center/cover;
}
.jobs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
}
.jobs-hero .container {
  position: relative;
  z-index: 1;
}
.jobs-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 850;
  backdrop-filter: blur(12px);
}
.jobs-hero h1 {
  max-width: 850px;
  margin: 1rem 0 0.8rem;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  line-height: 1;
  font-weight: 650;
  letter-spacing: -1px;
}
.jobs-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}
.jobs-filter-wrap {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}
.jobs-filter {
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(18px);
}
.jobs-filter .form-control,
.jobs-filter .form-select {
  min-height: 52px;
  border-radius: 16px;
  border-color: #dbe5ef;
  background: #fbfdff;
}
.jobs-filter .form-control:focus,
.jobs-filter .form-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 0.24rem rgba(37, 99, 235, 0.14);
}
.jobs-filter button,
.jobs-filter .reset-link {
  min-height: 52px;
  border-radius: 16px;
  font-weight: 850;
}
.jobs-filter button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #4338ca, #2563eb);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.22);
}
.jobs-body {
  padding: 62px 0 76px;
}
.jobs-list {
  display: grid;
  gap: 1rem;
}
.job-row-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.job-row-card:hover {
  transform: translateY(-6px);
  color: inherit;
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow: 0 30px 80px rgba(37, 99, 235, 0.14);
}
.job-row-main {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
.job-company-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #111827, #2563eb);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
  font-weight: 900;
  font-size: 1.15rem;
}
.job-type-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.42rem 0.65rem;
  margin-bottom: 0.65rem;
  border-radius: 999px;
  color: #1d4ed8;
  background: #dbeafe;
  font-size: 0.78rem;
  font-weight: 850;
}
.job-row-card h2 {
  margin: 0 0 0.35rem;
  color: #0f172a;
  font-size: 1.28rem;
  line-height: 1.28;
  font-weight: 850;
}
.job-company {
  color: #475569;
  font-weight: 650;
  margin-bottom: 0.8rem;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  color: #64748b;
  background: #f8fafc;
  font-size: 0.8rem;
  font-weight: 750;
}
.job-row-side {
  display: grid;
  gap: 0.7rem;
  justify-items: end;
  min-width: 150px;
}
.job-apply {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  color: #fff;
  background: #0f172a;
  font-weight: 500;
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}
.job-row-card:hover .job-apply {
  transform: translateX(3px);
  background: #2563eb;
}
.job-date {
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 700;
}
.jobs-empty {
  padding: 3rem;
  border: 1px dashed #bfdbfe;
  border-radius: 26px;
  text-align: center;
  color: #64748b;
  background: #eff6ff;
}
.jobs-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
}
.jobs-pagination .pagination {
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0;
}
.jobs-pagination .page-link {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  color: #0f172a;
  background: #fff;
  font-weight: 850;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}
.jobs-pagination .page-item.active .page-link,
.jobs-pagination .page-link:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #4338ca, #2563eb);
}
.jobs-pagination .page-item.disabled .page-link {
  color: #94a3b8;
  background: #f8fafc;
  border-color: #e2e8f0;
  box-shadow: none;
}
@media (max-width: 767px) {
  .job-row-card,
  .job-row-main {
    grid-template-columns: 1fr;
  }
  .job-row-side {
    justify-items: start;
  }
}

/* Source: .\resources\views\frontend\jobs\show.blade.php */
.job-detail {
  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(37, 99, 235, 0.16),
      transparent 28rem
    ),
    linear-gradient(180deg, #f8fbff 0%, #fff 44%, #f8fafc 100%);
}
.job-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 66px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(37, 99, 235, 0.88)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1800&q=80")
      center/cover;
}
.job-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
}
.job-detail-hero .container {
  position: relative;
  z-index: 1;
}
.job-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 850;
  backdrop-filter: blur(12px);
}
.job-detail-hero h1 {
  max-width: 900px;
  margin: 1rem 0 0.75rem;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 650;
  letter-spacing: -1px;
}
.job-company-line {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  font-weight: 650;
}
.job-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}
.job-hero-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
}
.job-apply-primary {
  color: #fff;
  background: linear-gradient(135deg, #4338ca, #2563eb);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.28);
}
.job-back-soft {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.job-wrap {
  padding: 0 0 76px;
}
.job-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: -32px;
}
.job-stat {
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}
.job-stat span {
  display: block;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 800;
}
.job-stat strong {
  display: block;
  margin-top: 0.25rem;
  color: #0f172a;
  font-size: 1.08rem;
  font-weight: 850;
}
.job-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 1.3rem;
  align-items: start;
  margin-top: 2rem;
}
.job-panel {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.07);
}
.job-panel-header {
  padding: 1.3rem 1.45rem;
  border-bottom: 1px solid #eef2f7;
  background: linear-gradient(135deg, #fff, #f8fbff);
}
.job-panel-header span {
  color: #2563eb;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.75rem;
}
.job-panel-header h2 {
  margin: 0.4rem 0 0;
  color: #0f172a;
  font-size: 1.55rem;
  font-weight: 800;
}
.job-content {
  padding: 1.45rem;
  color: #334155;
  line-height: 1.85;
  white-space: pre-line;
}
.job-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 1rem;
}
.job-side-card {
  padding: 1.15rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}
.job-side-card.dark {
  color: #fff;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(96, 165, 250, 0.24),
      transparent 36%
    ),
    #0f172a;
}
.job-side-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 850;
}
.job-side-apply {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  padding: 0.86rem 0.95rem;
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #4338ca, #2563eb);
  font-weight: 850;
}
.job-side-info {
  display: grid;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}
.job-side-info span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.related-job {
  display: block;
  padding: 0.9rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  color: #0f172a;
  text-decoration: none;
  background: #fff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.related-job:hover {
  transform: translateY(-3px);
  color: #0f172a;
  border-color: #93c5fd;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.12);
}
.related-job strong {
  display: block;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}
.related-job span {
  color: #2563eb;
  font-size: 0.84rem;
  font-weight: 850;
}
@media (max-width: 991px) {
  .job-stats,
  .job-layout {
    grid-template-columns: 1fr;
  }
  .job-sidebar {
    position: static;
  }
}

/* Source: .\resources\views\frontend\judgments\index.blade.php */
.judgments-hero {
  background:
    linear-gradient(135deg, rgba(8, 17, 35, 0.94), rgba(30, 64, 175, 0.74)),
    url("/storage/home-banners/home-banner-2.svg") center/cover no-repeat;
}
.judgments-hero::before {
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(250, 204, 21, 0.2),
      transparent 18rem
    ),
    radial-gradient(
      circle at 88% 20%,
      rgba(56, 189, 248, 0.22),
      transparent 24rem
    );
}
.judgments-wrap {
  padding: 0 0 5rem;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(245, 158, 11, 0.1),
      transparent 24rem
    ),
    #f8fbff;
}
.judgment-filter-card {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  padding: 1rem;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
}
.judgments-section-head h2 {
  font-weight: 900;
  margin: 0;
}
.judgment-list-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.judgment-list-card:hover {
  transform: translateY(-10px);
  border-color: rgba(245, 158, 11, 0.44);
  box-shadow: 0 28px 72px rgba(245, 158, 11, 0.18);
}
.judgment-list-top {
  padding: 1.15rem;
  color: #fff;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 255, 255, 0.24),
      transparent 7rem
    ),
    linear-gradient(135deg, #111827, #1d4ed8);
}
.court-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.66rem;
  border-radius: 999px;
  color: #111827;
  background: #facc15;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.judgment-title {
  min-height: 4.2rem;
  font-size: 1.18rem;
  line-height: 1.28;
  font-weight: 700;
  margin: 0;
}
.judgment-title a {
  color: #fff;
  text-decoration: none;
}
.judgment-list-body {
  padding: 1.15rem;
}
.judgment-summary {
  color: #64748b;
  min-height: 3rem;
  margin-bottom: 1rem;
}
.judgment-meta {
  display: grid;
  gap: 0.55rem;
  color: #475569;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.judgment-meta span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.judgment-meta i {
  color: #d97706;
}
.judgment-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  color: #fff;
  background: #111827;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
}
.judgment-cta:hover {
  color: #fff;
  background: #d97706;
}
.empty-judgments {
  padding: 4rem 1rem;
  border: 1px dashed #fbbf24;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  color: #64748b;
}
@media (max-width: 767.98px) {
  .judgments-hero {
    padding: 4rem 0 4.5rem;
  }
  .judgments-section-head {
    align-items: start;
    flex-direction: column;
  }
}

/* Source: .\resources\views\frontend\judgments\show.blade.php */
.judgment-detail-hero {
  background:
    linear-gradient(135deg, rgba(8, 17, 35, 0.95), rgba(30, 64, 175, 0.74)),
    url("/storage/home-banners/home-banner-2.svg") center/cover no-repeat;
}
.judgment-detail-hero::before {
  background:
    radial-gradient(
      circle at 14% 22%,
      rgba(250, 204, 21, 0.2),
      transparent 18rem
    ),
    radial-gradient(
      circle at 88% 16%,
      rgba(56, 189, 248, 0.2),
      transparent 24rem
    );
}
.court-hero-pill {
  color: #111827;
  background: #facc15;
  font-weight: 700;
}
.judgment-detail-hero h1 {
  max-width: 950px;
}
.judgment-wrap {
  padding: 0 0 5rem;
  background:
    radial-gradient(
      circle at 8% 16%,
      rgba(245, 158, 11, 0.09),
      transparent 24rem
    ),
    #f8fbff;
}
.case-summary-grid {
  position: relative;
  z-index: 2;
  margin-top: -2.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.case-card {
  padding: 1rem;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}
.case-card i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #111827;
  background: #facc15;
  margin-bottom: 0.65rem;
}
.case-card small {
  display: block;
  color: #64748b;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.case-card strong {
  color: #0f172a;
  font-size: 1.02rem;
}
.judgment-panel {
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.judgment-panel-header {
  padding: 1.2rem 1.35rem;
  border-bottom: 1px solid #eef2f7;
  background: linear-gradient(135deg, #fff, #fffaf0);
}
.judgment-panel-header h2 {
  margin: 0;
  font-weight: 900;
}
.judgment-copy {
  padding: 1.45rem;
  color: #334155;
  line-height: 1.9;
  font-size: 1.04rem;
}
.summary-callout {
  padding: 1.1rem;
  margin-bottom: 1.2rem;
  border-left: 4px solid #f59e0b;
  border-radius: 14px;
  background: #fffbeb;
  color: #374151;
}
.points-grid {
  display: grid;
  gap: 0.8rem;
  padding: 1.45rem;
}
.point-item {
  display: flex;
  gap: 0.7rem;
  padding: 0.9rem;
  border-radius: 14px;
  background: #f8fafc;
  font-weight: 700;
  color: #334155;
}
.point-item i {
  color: #d97706;
}
.judgment-sidebar {
  position: sticky;
  top: 150px;
}
.side-card {
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  margin-bottom: 1rem;
}
.side-card-header {
  padding: 1rem 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, #111827, #1d4ed8);
}
.side-card-header h5 {
  margin: 0;
  font-weight: 900;
}
.side-card-body {
  padding: 1rem;
}
.related-judgment {
  position: relative;
  display: block;
  padding: 0.95rem 2.65rem 0.95rem 0.95rem;
  margin-bottom: 0.7rem;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: #f8fafc;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.related-judgment:last-child {
  margin-bottom: 0;
}
.related-judgment:hover {
  background: #fff7ed;
  border-color: #fbbf24;
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.14);
  transform: translateY(-2px);
}
.related-judgment-title {
  color: #0f172a;
  font-weight: 700;
  line-height: 1.25;
}
.related-judgment:hover .related-judgment-title {
  color: #b45309;
}
.related-judgment-arrow {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #111827;
  transform: translateY(-50%);
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.related-judgment:hover .related-judgment-arrow {
  background: #d97706;
  transform: translateY(-50%) translateX(3px);
}
@media (max-width: 991.98px) {
  .case-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .judgment-sidebar {
    position: static;
  }
}
@media (max-width: 575.98px) {
  .case-summary-grid {
    grid-template-columns: 1fr;
  }
}

/* Source: .\resources\views\frontend\quizzes\index.blade.php */
.quiz-list-page {
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(124, 58, 237, 0.13),
      transparent 28rem
    ),
    linear-gradient(180deg, #fbfaff 0%, #fff 45%, #f8fafc 100%);
}
.quiz-list-hero {
  padding: 82px 0 72px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(124, 58, 237, 0.9)),
    url("https://images.unsplash.com/photo-1434030216411-0b793f4b4173?auto=format&fit=crop&w=1800&q=80")
      center/cover;
}
.quiz-list-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fef3c7;
  font-weight: 850;
}
.quiz-list-hero h1 {
  max-width: 840px;
  margin: 1rem 0 0.8rem;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 650;
}
.quiz-list-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}
.quiz-list-body {
  padding: 64px 0 78px;
}
.quiz-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.quiz-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 1.2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.quiz-card:hover {
  transform: translateY(-8px);
  color: inherit;
  border-color: rgba(124, 58, 237, 0.34);
  box-shadow: 0 30px 85px rgba(124, 58, 237, 0.15);
}
.quiz-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.quiz-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  color: #6d28d9;
  background: #f3e8ff;
  font-size: 0.78rem;
  font-weight: 850;
}
.quiz-card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, #111827, #7c3aed);
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.24);
}
.quiz-card h2 {
  margin: 0 0 0.65rem;
  color: #0f172a;
  font-size: 1.3rem;
  line-height: 1.28;
  font-weight: 850;
}
.quiz-card p {
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.quiz-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.quiz-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  color: #475569;
  background: #f8fafc;
  font-size: 0.8rem;
  font-weight: 750;
}
.quiz-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid #eef2f7;
  color: #7c3aed;
  font-weight: 850;
}
.quiz-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
}
.quiz-pagination .pagination {
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0;
}
.quiz-pagination .page-link {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #e9d5ff;
  border-radius: 14px;
  color: #0f172a;
  background: #fff;
  font-weight: 850;
}
.quiz-pagination .page-item.active .page-link,
.quiz-pagination .page-link:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
}
.quiz-empty {
  grid-column: 1 / -1;
  padding: 3rem;
  border-radius: 24px;
  background: #faf5ff;
  color: #64748b;
  text-align: center;
}
@media (max-width: 991px) {
  .quiz-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .quiz-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Source: .\resources\views\frontend\quizzes\result.blade.php */
.quiz-result-page {
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(124, 58, 237, 0.13),
      transparent 28rem
    ),
    linear-gradient(180deg, #fbfaff 0%, #fff 42%, #f8fafc 100%);
}
.result-hero {
  padding: 76px 0 92px;
  color: #fff;
  background:
    radial-gradient(
      circle at 86% 16%,
      rgba(250, 204, 21, 0.28),
      transparent 30%
    ),
    linear-gradient(135deg, #111827, #7c3aed);
}
.result-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: #fef3c7;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 850;
}
.result-hero h1 {
  max-width: 850px;
  margin: 1rem 0 0.65rem;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 650;
}
.result-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}
.result-wrap {
  margin-top: -52px;
  padding-bottom: 78px;
  position: relative;
  z-index: 2;
}
.result-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 1.3rem;
  align-items: start;
}
.score-card,
.review-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}
.score-card {
  position: sticky;
  top: 112px;
}
.score-top {
  padding: 1.35rem;
  color: #fff;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 255, 255, 0.2),
      transparent 35%
    ),
    linear-gradient(135deg, #111827, #6d28d9);
}
.score-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 850;
}
.score-circle {
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  margin: 1.35rem auto 0.85rem;
  border-radius: 50%;
  background:
    conic-gradient(
      #22c55e calc(var(--score) * 1%),
      rgba(255, 255, 255, 0.16) 0
    ),
    rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 12px rgba(17, 24, 39, 0.28);
}
.score-circle strong {
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #111827;
  font-size: 2rem;
  font-weight: 950;
}
.score-top h2 {
  text-align: center;
  margin: 0.4rem 0 0;
  font-weight: 850;
}
.score-body {
  padding: 1.2rem;
}
.result-stat {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #eef2f7;
}
.result-stat:last-child {
  border-bottom: 0;
}
.result-stat span {
  color: #64748b;
  font-weight: 750;
}
.result-stat strong {
  color: #0f172a;
  font-weight: 900;
}
.result-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}
.result-actions a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  min-height: 48px;
  border-radius: 16px;
  font-weight: 850;
  text-decoration: none;
}
.result-primary {
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
}
.result-secondary {
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.review-header {
  padding: 1.25rem;
  border-bottom: 1px solid #eef2f7;
  background: linear-gradient(135deg, #fff, #faf5ff);
}
.review-header h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.35rem;
  font-weight: 850;
}
.review-list {
  padding: 1.1rem;
  display: grid;
  gap: 1rem;
}
.answer-card {
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #fff;
}
.answer-card.correct {
  border-color: rgba(34, 197, 94, 0.32);
  background: #f0fdf4;
}
.answer-card.wrong {
  border-color: rgba(239, 68, 68, 0.28);
  background: #fff7f7;
}
.answer-title {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: #0f172a;
  font-weight: 850;
  line-height: 1.45;
}
.answer-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: #7c3aed;
  font-size: 0.86rem;
}
.answer-meta {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
  color: #475569;
}
.answer-pill {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  gap: 0.45rem;
  align-items: center;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 750;
}
.answer-pill.correct-text {
  color: #15803d;
}
.answer-pill.wrong-text {
  color: #dc2626;
}
.answer-explanation {
  margin-top: 0.8rem;
  padding: 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #64748b;
  line-height: 1.65;
}
@media (max-width: 991px) {
  .result-layout {
    grid-template-columns: 1fr;
  }
  .score-card {
    position: static;
  }
}

/* Source: .\resources\views\frontend\quizzes\show.blade.php */
.quiz-attempt-page {
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(124, 58, 237, 0.12),
      transparent 28rem
    ),
    linear-gradient(180deg, #fbfaff 0%, #fff 42%, #f8fafc 100%);
}
.attempt-hero {
  padding: 72px 0 58px;
  color: #fff;
  background: linear-gradient(135deg, #111827, #7c3aed);
}
.attempt-hero h1 {
  max-width: 850px;
  margin: 0.9rem 0 0.65rem;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1;
  font-weight: 650;
}
.attempt-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.75);
}
.quiz-list-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fef3c7;
  font-weight: 850;
}
.attempt-wrap {
  padding: 0 0 78px;
}
.attempt-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 1.3rem;
  align-items: start;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}
.attempt-panel {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.09);
  overflow: hidden;
}
.attempt-panel-header {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid #eef2f7;
  background: linear-gradient(135deg, #fff, #faf5ff);
}
.attempt-panel-header h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.08rem;
  font-weight: 850;
}
.attempt-panel-body {
  padding: 1.25rem;
}
.detail-card {
  position: sticky;
  top: 112px;
}
.detail-alert {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.85rem;
  border-radius: 16px;
  color: #ff0000;
  background: #fffbeb;
  font-size: 0.9rem;
  font-weight: 750;
}
.attempt-panel .form-control {
  min-height: 48px;
  border-radius: 14px;
  border-color: #dbe5ef;
}
.attempt-panel .form-control:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 0.24rem rgba(124, 58, 237, 0.14);
}
.question-card {
  padding: 1.1rem;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}
.question-card + .question-card {
  margin-top: 1rem;
}
.question-title {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: #0f172a;
  font-weight: 850;
  line-height: 1.45;
}
.question-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  font-size: 0.86rem;
}
.option-row {
  display: block;
  margin-top: 0.7rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f8fafc;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.option-row:hover {
  border-color: #c4b5fd;
  background: #faf5ff;
}
.option-row input {
  margin-right: 0.55rem;
}
.submit-quiz-btn {
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.22);
  width: 100%;
}
@media (max-width: 991px) {
  .attempt-layout {
    grid-template-columns: 1fr;
  }
  .detail-card {
    position: static;
  }
}

/* Source: .\resources\views\frontend\write-for-us.blade.php */
.write-page {
  background: linear-gradient(180deg, #fff8ed 0%, #ffffff 42%, #f8fbff 100%);
}

.write-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 62px;
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(245, 158, 11, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 12% 24%,
      rgba(37, 99, 235, 0.12),
      transparent 30%
    ),
    #fff;
}

.write-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 50px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 70px solid rgba(245, 158, 11, 0.12);
}

.write-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 2rem;
  align-items: center;
}

.write-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: #9a3412;
  background: #ffedd5;
  font-weight: 800;
}

.write-hero h1 {
  margin: 1rem 0;
  max-width: 780px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: 1;
  font-weight: 500;
  color: #111827;
  letter-spacing: -1px;
}

.write-hero p {
  max-width: 650px;
  color: #64748b;
  font-size: 1.08rem;
}

.write-note {
  position: relative;
  padding: 1.6rem;
  border: 1px solid rgba(146, 64, 14, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 70px rgba(146, 64, 14, 0.12);
  backdrop-filter: blur(16px);
}

.write-note .note-top {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1rem;
}

.write-note .avatar-stack {
  display: flex;
}

.write-note .avatar-stack span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #f97316, #2563eb);
}

.write-note .avatar-stack span:first-child {
  margin-left: 0;
}

.write-note h3 {
  font-size: 1.2rem;
  font-weight: 750;
  color: #111827;
  margin: 0;
}

.write-note p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}

.write-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.write-tags span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 0.86rem;
  font-weight: 700;
}

.write-wrap {
  padding: 70px 0;
}

.write-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.55fr);
  gap: 1.4rem;
  align-items: start;
}

.editorial-card {
  padding: 1.7rem;
  border-radius: 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.07);
}

.editorial-card + .editorial-card {
  margin-top: 1rem;
}

.editorial-card .eyebrow {
  color: #ea580c;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.editorial-card h2 {
  margin: 0.4rem 0 1rem;
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  font-weight: 700;
  color: #111827;
}

.guideline-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guideline-list li {
  padding: 1rem;
  border-radius: 18px;
  background: #fff7ed;
  color: #334155;
}

.guideline-list i {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.7rem;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  margin-right: 0.7rem;
}

.topic-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.topic-strip span {
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 14px;
  background: #f8fbff;
  color: #1e293b;
  font-weight: 500;
  font-size: 14px;
}

.write-form-card {
  position: sticky;
  top: 120px;
  padding: 1.5rem;
  border-radius: 30px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #fb923c, #2563eb) border-box;
  border: 1px solid transparent;
  box-shadow: 0 30px 75px rgba(15, 23, 42, 0.12);
}

.write-form-card h2 {
  color: #111827;
  font-weight: 750;
  font-size: 1.55rem;
}

.write-form-card .form-control {
  min-height: 50px;
  border-radius: 15px;
  border-color: #e2e8f0;
  background: #fbfdff;
}

.write-form-card .form-control:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 0.24rem rgba(249, 115, 22, 0.15);
  background: #fff;
}

.write-submit {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  font-weight: 850;
  background: linear-gradient(135deg, #f97316, #2563eb);
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.24);
}

.review-box {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: #f8fafc;
  color: #64748b;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .write-hero .container,
  .write-grid,
  .guideline-list {
    grid-template-columns: 1fr;
  }

  .write-form-card {
    position: static;
  }
}
