:root {
  --pageContainer: 1280px;
  --pagePadding: 2rem;
  --brandDark: #0f172a;
  --textPrimary: #475569;
  --textSecondary: #94a3b8;
  --surface: #ffffff;
  --surfaceMuted: #f8fafc;
  --accent: #dc2626;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0px;
}
.pagination .page-link {
  display: inline-block;
  padding: 20px 27px;
  margin: 0px 15px;
  font-weight: 600;
  font-size: 20px;
  border-radius: 20px;
}
.pagination .page-link.active {
  background: #034ad8;
  border-color: #034ad8;
}
.pagination .page-link svg {
  margin-right: -2px;
  color: #034ad8;
}
.pagination .page-link:hover svg g {
  fill: #034ad8;
}

.blog-post-tag {
  margin-block: 1rem;
}
.blog-post-tag a {
  background: #f1f1f1;
  border-radius: 6px;
  padding: 4px 10px;
  text-decoration: none;
  font-size: 12px;
  color: #034ad8;
  font-weight: 500;
  margin-right: 1rem;
}

.blog-index {
  max-width: var(--pageContainer);
  padding-inline: var(--pagePadding);
}

.post-size {
  position: relative;
}

.post-size::after {
  position: absolute;
  content: "";
  background: #4d4d4d;
  width: 1px;
  height: 15px;
  top: 50%;
  right: -10%;
  transform: translate(-50%, -50%);
}

@media (min-width: 640px) {
  .post-data-list-item {
    position: relative;
  }
  .post-data-list-item::after {
    position: absolute;
    content: "";
    background: #4d4d4d;
    width: 1px;
    height: 15px;
    top: 50%;
    right: -12%;
    transform: translate(-50%, -50%);
  }
}
.markdown-text h1,
.markdown-text h2,
.markdown-text h3,
.markdown-text h4 {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.markdown-text h1 {
  font-size: 3rem;
  line-height: 3rem;
}

.markdown-text h2 {
  font-size: 2.5rem;
  line-height: 2.5rem;
}

.markdown-text h3 {
  font-size: 2rem;
  line-height: 2rem;
}

.markdown-text h4 {
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.markdown-text p,
.markdown-text a,
.markdown-text ol li,
.markdown-text ul li {
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.75rem;
}

.markdown-text p {
  margin-bottom: 1.5rem;
}

.markdown-text li p {
  margin-bottom: 0.125rem;
}

.markdown-text li {
  margin-bottom: 0.25rem;
}

.markdown-text blockquote {
  font-style: italic;
  border-left: 5px solid #000000;
  padding-inline: 1rem;
  margin-inline: 0;
  margin-block: 1rem;
}

.markdown-text ul li {
  margin-inline: 1rem;
  padding-block: 0.125rem;
  list-style: disc;
}

.markdown-text ol li {
  list-style-type: decimal;
  padding-block: 0.125rem;
  margin-inline: 1rem;
}

.markdown-text a {
  color: blue;
  cursor: pointer;
}

.markdown-text sup {
  vertical-align: super;
  font-size: smaller;
}

.markdown-text sub {
  vertical-align: sub;
  font-size: smaller;
}

.markdown-text code {
  background-color: #f4f4f4;
  padding: 0.25rem;
  border-radius: 0.25rem;
  color: black;
  margin-block: 1.5rem;
}

.markdown-text table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.markdown-text table p {
  margin-bottom: 0;
  padding-block: 0.5rem;
}

.markdown-text th,
.markdown-text td {
  border: 1px solid #f2f2f2;
  padding: 0.5rem;
}

.markdown-text table caption {
  background-color: #f2f2f2;
}

.markdown-text table thead {
  background-color: #f2f2f2;
}

.markdown-text img {
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
}

.markdown-text hr {
  border: 0;
  border-top: 1px solid #928f8f;
  margin: 1.5rem 0;
}

.markdown-text pre {
  background-color: #f2f2f2 !important;
  color: black;
  margin-block: 1.5rem;
  padding: 1rem;
}

.header {
  width: 100%;
  overflow-x: hidden;
  padding-inline: var(--pagePadding, 2rem);
}

.header__container {
  max-width: var(--pageContainer, 1280px);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.header li {
  list-style-type: none;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1rem;
  gap: 1rem;
}

.header__logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}

.header__logo-image {
  width: 200px;
}

.header__logo-text {
  display: inline-block;
  font-family: "Cairo Play", "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.95rem, 3.5vw, 2.1rem);
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  font-size-adjust: 0.7;
}

.header__nav-links {
  display: none;
}
@media screen and (min-width: 850px) {
  .header__nav-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
}

@media screen and (max-width: 414px) {
  .header__nav {
    gap: 0.75rem;
  }
  .header__logo-link {
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 40px);
  }
  .header__logo-text {
    font-size: clamp(0.75rem, 4vw, 1.5rem);
    letter-spacing: 0.015em;
  }
  .header__hamburger {
    flex-shrink: 0;
    margin-left: auto;
  }
}
.header__nav-link {
  cursor: pointer;
  color: inherit;
  text-decoration: inherit;
}

.header__nav-link:hover {
  color: #034ad8;
}

.header__nav-link--button {
  padding: 0.875rem 1.5rem;
  background-color: #000000;
  color: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}
.header__nav-link--button:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.header__nav-link--button:active {
  transform: translateY(0);
}

@media screen and (min-width: 850px) {
  .header__nav-item {
    padding-left: 1rem;
  }
}
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  flex-shrink: 0;
}
@media screen and (min-width: 850px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger-line {
  width: 24px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header__hamburger-line:nth-child(1) {
  transform: translateY(0);
}
.header__hamburger-line:nth-child(2) {
  opacity: 1;
}
.header__hamburger-line:nth-child(3) {
  transform: translateY(0);
}
.header__hamburger-line--open:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__hamburger-line--open:nth-child(2) {
  opacity: 0;
}
.header__hamburger-line--open:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header__mobile-menu {
  width: 100%;
  background-color: #ffffff;
}

.header__mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 1rem var(--pagePadding);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.header__mobile-nav-item {
  margin: 0;
}

.header__mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: #393939;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.header__mobile-nav-link:hover {
  opacity: 0.7;
}
.header__mobile-nav-link--button {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  border-radius: 6px;
  margin-top: 0.5rem;
}
.header__mobile-nav-link--button:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  opacity: 1;
}

.footer {
  max-width: var(--pageContainer);
  margin: 0 auto;
}
.footer a {
  color: inherit;
}

.footer__logo-image {
  display: block;
  max-width: min(200px, 80%);
}

.footer__logo-link {
  text-decoration: none;
}

.footer__logo-text {
  display: inline-block;
  font-family: "Cairo Play", "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.95rem, 3.5vw, 2.1rem);
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1;
  color: inherit;
  white-space: nowrap;
  max-width: min(100%, 95vw);
}

@media screen and (max-width: 480px) {
  .footer__logo-text {
    font-size: clamp(0.95rem, 5.5vw, 1.8rem);
    letter-spacing: 0.02em;
  }
}
.footer__link {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}
.footer__link:hover {
  opacity: 0.8;
}

/* This file controls the styling in the content editor, and declares the styles added by the content editor. */
.align-left {
  text-align: left;
}

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

.align-right {
  text-align: right;
}

.align-justify {
  text-align: justify;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/Poppins-400.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/Poppins-600.ttf") format("truetype");
}
@font-face {
  font-family: "Cairo Play";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/CairoPlay-900.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: Poppins, sans-serif;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

[x-cloak] {
  display: none !important;
}

body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--textPrimary);
  background-color: var(--surfaceMuted);
  font-size-adjust: 0.52;
}

h1,
h2,
h3,
h4 {
  color: var(--brandDark);
  font-weight: 700;
  line-height: 1.2;
}

p,
li {
  color: var(--textPrimary);
}

a {
  color: var(--brandDark);
}

main {
  min-height: auto;
}

img {
  object-fit: cover;
}

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