@charset "UTF-8";
/*
Theme Name: Skoolrez - inner pages
Description: Component styles for the marketing, resource and legal pages.
             Standalone on purpose: no bootstrap dependency, so it compiles
             with the webpack pipeline or a plain `sass scss/pages.scss css/pages.css`.
             Palette mirrors scss/_variables.scss - keep the two in sync.
*/
/* Shared primitives
-------------------------------------------------*/
.sk {
  color: #8fa4b8;
  font-family: "Instrument Sans", sans-serif;
  /* Buttons keep the theme's own colour tokens from style.scss. */
}
.sk h1,
.sk h2,
.sk h3,
.sk h4 {
  color: #ffffff;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sk h2 {
  font-size: 44px;
  line-height: 1.08;
  margin-bottom: 18px;
}
@media (max-width: 991.98px) {
  .sk h2 {
    font-size: 34px;
  }
}
.sk h3 {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.sk h4 {
  font-size: 20px;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}
.sk p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.sk a:not(.btn) {
  color: #ffb400;
  text-decoration: none;
}
.sk a:not(.btn):hover {
  color: #ff4e2e;
}
.sk strong,
.sk b {
  color: #ffffff;
  font-weight: 600;
}
.sk > :last-child {
  margin-bottom: 0;
}

.sk-eyebrow {
  align-items: center;
  color: #ffb400;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.sk-eyebrow::before {
  background-color: #ffb400;
  content: "";
  display: inline-flex;
  height: 2px;
  margin-inline-end: 10px;
  width: 24px;
}

.sk-center {
  text-align: center;
}
.sk-center .sk-eyebrow {
  justify-content: center;
}
.sk-center .sk-lead {
  margin-inline: auto;
}

.sk-lead {
  color: #8fa4b8;
  font-size: 18px;
  line-height: 1.7;
  max-width: 680px;
}
@media (max-width: 991.98px) {
  .sk-lead {
    font-size: 16px;
  }
}

.sk-muted {
  color: rgba(143, 164, 184, 0.72);
  font-size: 13px;
}

.sk-divider {
  background: linear-gradient(90deg, rgba(46, 61, 82, 0) 0%, #2e3d52 50%, rgba(46, 61, 82, 0) 100%);
  border: 0;
  height: 1px;
  margin: 60px 0;
}

.sk-btn {
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}
.sk-btn:hover {
  transform: translateY(-2px);
}

/* Mirrors .btn-primary / .btn-secondary from style.scss so authored markup can
   use either class set without drifting from the theme. */
.sk-btn--primary {
  background-color: #ffb400;
  border-color: #ffb400;
  border-radius: 10px;
  box-shadow: 0 8px 32px 0 rgba(255, 180, 0, 0.3);
  color: #0d1b2a;
}
.sk-btn--primary:hover {
  background-color: #ffb400;
  color: #0d1b2a;
}

.sk-btn--ghost {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #ffffff;
}
.sk-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.sk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* Page hero
-------------------------------------------------*/
.sk-hero {
  padding-block: 40px 10px;
  position: relative;
}
.sk-hero h1 {
  font-size: 68px;
  letter-spacing: 1.36px;
  line-height: 1.05;
  margin-bottom: 22px;
}
@media (max-width: 991.98px) {
  .sk-hero h1 {
    font-size: 44px;
  }
}
.sk-hero .sk-lead {
  font-size: 19px;
  max-width: 720px;
}
@media (max-width: 991.98px) {
  .sk-hero .sk-lead {
    font-size: 16px;
  }
}

.sk-hero--narrow {
  margin-inline: auto;
  max-width: 780px;
  text-align: center;
}
.sk-hero--narrow .sk-eyebrow {
  justify-content: center;
}
.sk-hero--narrow .sk-lead {
  margin-inline: auto;
}
.sk-hero--narrow .sk-actions {
  justify-content: center;
}

.sk-hero__meta {
  border-top: 1px solid #2e3d52;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 45px;
  padding-top: 28px;
}
.sk-hero__meta div {
  min-width: 120px;
}
.sk-hero__meta span {
  color: #ffffff;
  display: block;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 38px;
  line-height: 1;
}
.sk-hero__meta small {
  color: #8fa4b8;
  font-size: 13px;
}

/* Cards
-------------------------------------------------*/
.sk-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 991.98px) {
  .sk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .sk-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sk-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 767.98px) {
  .sk-grid--2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sk-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 991.98px) {
  .sk-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .sk-grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sk-card {
  background-color: rgba(21, 36, 54, 0.55);
  border: 1px solid #2e3d52;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.sk-card h3,
.sk-card h4 {
  margin-bottom: 10px;
}
.sk-card p {
  font-size: 15px;
  margin-bottom: 14px;
}
.sk-card:hover {
  border-color: rgba(255, 180, 0, 0.4);
  transform: translateY(-3px);
}

.sk-card__icon {
  align-items: center;
  background-color: rgba(255, 180, 0, 0.12);
  border: 1px solid rgba(255, 180, 0, 0.25);
  border-radius: 14px;
  display: inline-flex;
  height: 52px;
  justify-content: center;
  margin-bottom: 20px;
  width: 52px;
}
.sk-card__icon img,
.sk-card__icon svg {
  height: 26px;
  width: 26px;
}

.sk-card__link {
  align-items: center;
  color: #ffb400;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
}
.sk-card__link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.sk-card__link:hover::after {
  transform: translateX(4px);
}

[dir=rtl] .sk-card__link::after {
  content: "←";
}
[dir=rtl] .sk-card__link::after:hover {
  transform: translateX(-4px);
}

.sk-card--flat {
  background-color: transparent;
  border-color: transparent;
  border-inline-start: 2px solid #2e3d52;
  border-radius: 0;
  padding: 4px 0 4px 22px;
}
.sk-card--flat:hover {
  border-color: transparent;
  border-inline-start-color: #ffb400;
  transform: none;
}

[dir=rtl] .sk-card--flat {
  padding: 4px 22px 4px 0;
}

/* Split section: copy + visual
-------------------------------------------------*/
.sk-split {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 991.98px) {
  .sk-split {
    gap: 36px;
    grid-template-columns: minmax(0, 1fr);
  }
}

.sk-split--reverse .sk-split__visual {
  order: -1;
}
@media (max-width: 991.98px) {
  .sk-split--reverse .sk-split__visual {
    order: 0;
  }
}

.sk-split + .sk-split {
  margin-top: 90px;
}
@media (max-width: 991.98px) {
  .sk-split + .sk-split {
    margin-top: 50px;
  }
}

.sk-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.sk-list li {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 12px;
  padding-inline-start: 30px;
  position: relative;
}
.sk-list li::before {
  color: #ffb400;
  content: "✓";
  font-size: 14px;
  inset-inline-start: 0;
  position: absolute;
  top: 0;
}
.sk-list strong {
  color: #ffffff;
}

/* Product mockups (hand-built UI, no screenshots)
-------------------------------------------------*/
.sk-mock {
  background-color: #101c2b;
  border: 1px solid #2e3d52;
  border-radius: 14px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.sk-mock__bar {
  align-items: center;
  background-color: rgba(13, 27, 42, 0.9);
  border-bottom: 1px solid #2e3d52;
  display: flex;
  gap: 8px;
  padding: 12px 16px;
}
.sk-mock__bar i {
  background-color: #2e3d52;
  border-radius: 50%;
  display: block;
  height: 9px;
  width: 9px;
}
.sk-mock__bar span {
  color: #8fa4b8;
  font-size: 12px;
  letter-spacing: 0.4px;
  margin-inline-start: 10px;
}

.sk-mock__body {
  padding: 20px;
}

.sk-mock__row {
  align-items: center;
  border-bottom: 1px solid rgba(46, 61, 82, 0.6);
  display: flex;
  font-size: 13px;
  gap: 12px;
  justify-content: space-between;
  padding: 12px 4px;
}
.sk-mock__row:last-child {
  border-bottom: 0;
}
.sk-mock__row em {
  color: #ffffff;
  font-style: normal;
  font-weight: 600;
}

.sk-mock__head {
  color: rgba(143, 164, 184, 0.7);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sk-tag {
  border-radius: 20px;
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 4px 12px;
  white-space: nowrap;
}

.sk-tag--ok {
  background-color: rgba(40, 167, 69, 0.15);
  color: #4ade80;
}

.sk-tag--warn {
  background-color: rgba(255, 180, 0, 0.15);
  color: #ffb400;
}

.sk-tag--late {
  background-color: rgba(255, 78, 46, 0.15);
  color: #ff7a5f;
}

.sk-tag--info {
  background-color: rgba(143, 164, 184, 0.14);
  color: #8fa4b8;
}

.sk-mock__grid {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.sk-mock__grid b {
  background-color: rgba(46, 61, 82, 0.35);
  border-radius: 4px;
  color: rgba(143, 164, 184, 0.75);
  font-size: 10px;
  font-weight: 500;
  padding: 8px 2px;
  text-align: center;
}
.sk-mock__grid b.is-present {
  background-color: rgba(40, 167, 69, 0.22);
  color: #4ade80;
}
.sk-mock__grid b.is-absent {
  background-color: rgba(255, 78, 46, 0.22);
  color: #ff7a5f;
}
.sk-mock__grid b.is-late {
  background-color: rgba(255, 180, 0, 0.22);
  color: #ffb400;
}

.sk-mock__meter {
  background-color: rgba(46, 61, 82, 0.5);
  border-radius: 20px;
  height: 6px;
  overflow: hidden;
  width: 100%;
}
.sk-mock__meter span {
  background: linear-gradient(90deg, #ff4e2e 0%, #ffb400 100%);
  border-radius: 20px;
  display: block;
  height: 100%;
}

/* Metrics strip
-------------------------------------------------*/
.sk-metrics {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 991.98px) {
  .sk-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sk-metric {
  border-inline-start: 2px solid rgba(255, 180, 0, 0.5);
  padding-inline-start: 20px;
}
.sk-metric span {
  color: #ffffff;
  display: block;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 46px;
  line-height: 1;
  margin-bottom: 6px;
}
.sk-metric small {
  color: #8fa4b8;
  font-size: 14px;
  line-height: 1.5;
}

/* Steps / timeline
-------------------------------------------------*/
.sk-steps {
  counter-reset: sk-step;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 991.98px) {
  .sk-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .sk-steps {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sk-step {
  border-top: 2px solid #2e3d52;
  counter-increment: sk-step;
  padding-top: 22px;
  position: relative;
}
.sk-step::before {
  color: #ff4e2e;
  content: "0" counter(sk-step);
  display: block;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 12px;
}
.sk-step h4 {
  margin-bottom: 8px;
}
.sk-step p {
  font-size: 15px;
  margin-bottom: 0;
}

.sk-timeline {
  border-inline-start: 1px solid #2e3d52;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-inline-start: 30px;
}

.sk-timeline__item {
  margin-bottom: 46px;
  position: relative;
}
.sk-timeline__item::before {
  background-color: #0d1b2a;
  border: 2px solid #ff4e2e;
  border-radius: 50%;
  content: "";
  height: 12px;
  inset-inline-start: -37px;
  position: absolute;
  top: 6px;
  width: 12px;
}
.sk-timeline__item:last-child {
  margin-bottom: 0;
}

.sk-timeline__date {
  color: #ffb400;
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.sk-timeline--shipped .sk-timeline__item::before {
  background-color: #28a745;
  border-color: #28a745;
}

.sk-timeline--planned .sk-timeline__item::before {
  background-color: transparent;
  border-color: #2e3d52;
}

/* Long-form prose (legal, docs, articles)
-------------------------------------------------*/
.sk-prose {
  max-width: 760px;
}
.sk-prose h2 {
  font-size: 32px;
  margin-top: 46px;
}
.sk-prose h2:first-child {
  margin-top: 0;
}
.sk-prose h3 {
  font-size: 21px;
  margin-top: 32px;
}
.sk-prose ul,
.sk-prose ol {
  margin-bottom: 20px;
  padding-inline-start: 22px;
}
.sk-prose li {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 10px;
}
.sk-prose table {
  border: 1px solid #2e3d52;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 26px;
  width: 100%;
}
.sk-prose th,
.sk-prose td {
  border-bottom: 1px solid #2e3d52;
  padding: 12px 14px;
  text-align: start;
  vertical-align: top;
}
.sk-prose th {
  background-color: rgba(21, 36, 54, 0.7);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.sk-prose blockquote {
  border-inline-start: 3px solid #ffb400;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.6;
  margin: 30px 0;
  padding-inline-start: 24px;
}
.sk-prose code {
  background-color: rgba(46, 61, 82, 0.5);
  border-radius: 4px;
  color: #ffb400;
  font-size: 13px;
  padding: 2px 6px;
}
.sk-prose img {
  border-radius: 12px;
  height: auto;
  margin-bottom: 24px;
  max-width: 100%;
}
.sk-prose figure {
  margin: 0 0 26px;
}
.sk-prose figcaption {
  color: rgba(143, 164, 184, 0.7);
  font-size: 13px;
  margin-top: -14px;
}

.sk-layout {
  display: grid;
  gap: 60px;
  grid-template-columns: 260px minmax(0, 1fr);
}
@media (max-width: 991.98px) {
  .sk-layout {
    gap: 34px;
    grid-template-columns: minmax(0, 1fr);
  }
}

.sk-toc {
  align-self: start;
  border-inline-start: 1px solid #2e3d52;
  padding-inline-start: 22px;
  position: sticky;
  top: 120px;
}
@media (max-width: 991.98px) {
  .sk-toc {
    position: static;
  }
}
.sk-toc strong {
  color: #ffffff;
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.sk-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sk-toc li {
  margin-bottom: 12px;
}
.sk-toc a {
  color: #8fa4b8;
  font-size: 14px;
}
.sk-toc a:hover {
  color: #ffb400;
}

/* FAQ
-------------------------------------------------*/
.sk-faq {
  border-top: 1px solid #2e3d52;
  margin-top: 10px;
}

.sk-faq details {
  border-bottom: 1px solid #2e3d52;
  padding: 22px 0;
}

.sk-faq summary {
  align-items: center;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-size: 17px;
  font-weight: 600;
  gap: 16px;
  justify-content: space-between;
  list-style: none;
}
.sk-faq summary::-webkit-details-marker {
  display: none;
}
.sk-faq summary::after {
  color: #ffb400;
  content: "+";
  font-size: 22px;
  line-height: 1;
}

.sk-faq details[open] summary::after {
  content: "–";
}

.sk-faq p {
  font-size: 15px;
  margin: 14px 0 0;
  max-width: 720px;
}

/* Quote
-------------------------------------------------*/
.sk-quote {
  background-color: rgba(21, 36, 54, 0.6);
  border: 1px solid #2e3d52;
  border-radius: 16px;
  padding: 38px;
}
.sk-quote p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.6;
}
@media (max-width: 991.98px) {
  .sk-quote p {
    font-size: 17px;
  }
}

.sk-quote__by {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.sk-quote__by i {
  align-items: center;
  background-color: rgba(255, 78, 46, 0.15);
  border: 1px solid rgba(255, 78, 46, 0.35);
  border-radius: 50%;
  color: #ff4e2e;
  display: flex;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 16px;
  font-style: normal;
  height: 46px;
  justify-content: center;
  width: 46px;
}
.sk-quote__by span {
  color: #ffffff;
  display: block;
  font-size: 15px;
  font-weight: 600;
}
.sk-quote__by small {
  color: #8fa4b8;
  font-size: 13px;
}

/* Blog
-------------------------------------------------*/
.sk-posts {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 991.98px) {
  .sk-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .sk-posts {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sk-post {
  background-color: rgba(21, 36, 54, 0.55);
  border: 1px solid #2e3d52;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.sk-post:hover {
  border-color: rgba(255, 180, 0, 0.4);
  transform: translateY(-3px);
}
.sk-post img {
  aspect-ratio: 16/9;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.sk-post__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}
.sk-post__body h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.sk-post__body p {
  font-size: 15px;
}

.sk-post__meta {
  color: rgba(143, 164, 184, 0.75);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 10px;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.sk-post__meta span:not(:last-child)::after {
  content: " ·";
}

.sk-post--wide {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}
@media (max-width: 991.98px) {
  .sk-post--wide {
    grid-template-columns: minmax(0, 1fr);
  }
}
.sk-post--wide img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.sk-post--wide .sk-post__body {
  justify-content: center;
  padding: 40px;
}
@media (max-width: 991.98px) {
  .sk-post--wide .sk-post__body {
    padding: 26px;
  }
}
.sk-post--wide h3 {
  font-size: 30px;
}
@media (max-width: 991.98px) {
  .sk-post--wide h3 {
    font-size: 24px;
  }
}

.sk-article__hero {
  border-radius: 16px;
  height: auto;
  margin-bottom: 40px;
  max-width: 100%;
}

.sk-author {
  align-items: center;
  border-top: 1px solid #2e3d52;
  display: flex;
  gap: 16px;
  margin-top: 50px;
  padding-top: 26px;
}
.sk-author i {
  align-items: center;
  background-color: rgba(255, 180, 0, 0.12);
  border: 1px solid rgba(255, 180, 0, 0.3);
  border-radius: 50%;
  color: #ffb400;
  display: flex;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 18px;
  font-style: normal;
  height: 52px;
  justify-content: center;
  width: 52px;
}
.sk-author span {
  color: #ffffff;
  display: block;
  font-weight: 600;
}
.sk-author small {
  color: #8fa4b8;
  font-size: 13px;
}

/* Pricing / comparison table
-------------------------------------------------*/
.sk-compare {
  border: 1px solid #2e3d52;
  border-radius: 14px;
  overflow-x: auto;
}
.sk-compare table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}
.sk-compare th,
.sk-compare td {
  border-bottom: 1px solid rgba(46, 61, 82, 0.7);
  font-size: 14px;
  padding: 16px 20px;
  text-align: start;
}
.sk-compare thead th {
  background-color: rgba(21, 36, 54, 0.8);
  color: #ffffff;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.sk-compare tbody th {
  color: #ffffff;
  font-weight: 600;
}
.sk-compare td {
  color: #8fa4b8;
}
.sk-compare .sk-yes {
  color: #4ade80;
  font-weight: 700;
}
.sk-compare .sk-no {
  color: rgba(143, 164, 184, 0.45);
}
.sk-compare tr:last-child th,
.sk-compare tr:last-child td {
  border-bottom: 0;
}

.sk-section-title {
  margin-bottom: 40px;
}

/* Careers
-------------------------------------------------*/
.sk-job {
  align-items: center;
  border: 1px solid #2e3d52;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 24px 28px;
  transition: border-color 0.2s ease;
}
.sk-job:hover {
  border-color: rgba(255, 180, 0, 0.4);
}
.sk-job h4 {
  margin-bottom: 6px;
}

.sk-job__meta {
  color: #8fa4b8;
  font-size: 13px;
}

/* Status page
-------------------------------------------------*/
.sk-status-head {
  align-items: center;
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.35);
  border-radius: 12px;
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  padding: 24px 28px;
}
.sk-status-head i {
  background-color: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.18);
  display: block;
  flex: none;
  height: 12px;
  width: 12px;
}
.sk-status-head strong {
  color: #ffffff;
  display: block;
  font-size: 18px;
}
.sk-status-head small {
  color: #8fa4b8;
}

.sk-status-row {
  align-items: center;
  border-bottom: 1px solid #2e3d52;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding: 18px 4px;
}
.sk-status-row span {
  color: #ffffff;
  font-size: 15px;
}

.sk-uptime {
  display: flex;
  gap: 3px;
}
.sk-uptime i {
  background-color: #4ade80;
  border-radius: 2px;
  display: block;
  height: 22px;
  width: 5px;
}
.sk-uptime i.is-degraded {
  background-color: #ffb400;
}
.sk-uptime i.is-down {
  background-color: #ff4e2e;
}

/* Logo wall
-------------------------------------------------*/
.sk-logos {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 767.98px) {
  .sk-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.sk-logos div {
  align-items: center;
  border: 1px solid #2e3d52;
  border-radius: 10px;
  color: rgba(143, 164, 184, 0.85);
  display: flex;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 1px;
  min-height: 84px;
  padding: 16px;
  text-align: center;
  text-transform: uppercase;
}

/* Notice / callout
-------------------------------------------------*/
.sk-note {
  background-color: rgba(255, 180, 0, 0.07);
  border: 1px solid rgba(255, 180, 0, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
}
.sk-note p {
  font-size: 15px;
  margin-bottom: 0;
}
.sk-note strong {
  color: #ffb400;
}

/* Rhythm helpers used inside layout-builder blocks
-------------------------------------------------*/
.sk-mt-30 {
  margin-top: 30px;
}

.sk-mt-50 {
  margin-top: 50px;
}

.sk-mt-70 {
  margin-top: 70px;
}
@media (max-width: 991.98px) {
  .sk-mt-70 {
    margin-top: 40px;
  }
}

/* Blog listing (views page) and article page
   These render outside layout builder, under the floating fixed header,
   so they carry their own top offset.
-------------------------------------------------*/
.sk-blog {
  padding-top: 150px;
}
@media (max-width: 991.98px) {
  .sk-blog {
    padding-top: 110px;
  }
}
.sk-blog .view-header {
  margin-bottom: 55px;
}
.sk-blog .view-content {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 991.98px) {
  .sk-blog .view-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .sk-blog .view-content {
    grid-template-columns: minmax(0, 1fr);
  }
}
.sk-blog .views-row {
  display: flex;
}
.sk-blog .sk-post {
  width: 100%;
}
.sk-blog .pager {
  margin-top: 55px;
}
.sk-blog .pager__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sk-blog .pager__item a {
  border: 1px solid #2e3d52;
  border-radius: 8px;
  color: #8fa4b8;
  display: inline-flex;
  font-size: 14px;
  padding: 9px 16px;
}
.sk-blog .pager__item a:hover {
  border-color: #ffb400;
  color: #ffb400;
}
.sk-blog .pager__item.is-active a {
  background-color: rgba(255, 180, 0, 0.12);
  border-color: rgba(255, 180, 0, 0.4);
  color: #ffb400;
}

.sk-article {
  margin-inline: auto;
  max-width: 820px;
  padding-block: 150px 40px;
}
@media (max-width: 991.98px) {
  .sk-article {
    padding-top: 110px;
  }
}
.sk-article h1 {
  font-size: 52px;
  line-height: 1.06;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .sk-article h1 {
    font-size: 34px;
  }
}

.sk-article__back {
  color: #8fa4b8;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  margin-bottom: 26px;
  text-transform: uppercase;
}
.sk-article__back:hover {
  color: #ffb400;
}

.sk-article__head {
  margin-bottom: 40px;
}

.sk-article__cover {
  margin-bottom: 45px;
}
.sk-article__cover img {
  border-radius: 16px;
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.sk-article__cta {
  align-items: center;
  background-color: rgba(21, 36, 54, 0.7);
  border: 1px solid #2e3d52;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 50px;
  padding: 34px 38px;
}
.sk-article__cta h3 {
  margin-bottom: 6px;
}
.sk-article__cta p {
  margin-bottom: 0;
  max-width: 420px;
}
