/* Import Google Fonts - Roboto and Montserrat */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* CSS Variables for consistent theming */
:root {
  /* Ghost font settings */
  --gh-font-heading: "Montserrat", sans-serif;
  --gh-font-body: "Roboto", sans-serif;
  
  /* Custom font variables */
  --font-roboto: "Roboto", sans-serif;
  --font-montserrat: "Montserrat", sans-serif;
  
  /* Color variables */
  --color-primary: #f2994a;
  --color-blue-400: #0038ff;
  --color-orange-400: #ff8000;
  --color-gradient-start: #ff4880;
  --color-gradient-end: #992b4d;
  --color-bg-dark: #0c0c0c;
  --color-text-light: #f2f2f2;
  --color-text-gray: #aaa9a9;
  --color-text-muted: #aaaaaa;
  --color-border-gray: #363636;
  --color-bg-card: #1a1a1a;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--color-bg-dark);
  background-image: url('data:image/svg+xml,<svg width="1440" height="1666" viewBox="0 0 1440 1666" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.5"><g filter="url(%23filter0_f_82_5191)"><ellipse cx="523.448" cy="719.221" rx="446.5" ry="446" transform="rotate(26.175 523.448 719.221)" fill="%230038FF" fill-opacity="0.4"/></g><g filter="url(%23filter1_f_82_5191)"><path d="M-39.5842 226.624C-150.47 338.803 -220.399 431.45 -217.77 589.144C-212.645 896.592 238.98 1116.17 488.288 936.186C685.337 793.932 611.937 565.676 596.046 323.172C589.035 216.168 610.749 140.543 549.514 52.5818C412.487 -144.251 129.132 55.9395 -39.5842 226.624Z" fill="url(%23paint0_linear_82_5191)"/></g><g filter="url(%23filter2_f_82_5191)"><ellipse cx="-223.013" cy="418.24" rx="356" ry="355.5" transform="rotate(26.175 -223.013 418.24)" fill="%23FF8000"/></g></g><defs><filter id="filter0_f_82_5191" x="-423.055" y="-226.977" width="1893.01" height="1892.39" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="250" result="effect1_foregroundBlur_82_5191"/></filter><filter id="filter1_f_82_5191" x="-717.842" y="-528.912" width="1840.4" height="2030.04" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="250" result="effect1_foregroundBlur_82_5191"/></filter><filter id="filter2_f_82_5191" x="-1079" y="-437.438" width="1711.96" height="1711.35" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="250" result="effect1_foregroundBlur_82_5191"/></filter><linearGradient id="paint0_linear_82_5191" x1="504.693" y1="2.06328" x2="41.5234" y2="944.387" gradientUnits="userSpaceOnUse"><stop stop-color="%23FF4880"/><stop offset="1" stop-color="%23992B4D"/></linearGradient></defs></svg>');
  background-repeat: no-repeat;
  font-family: var(--font-roboto);
  color: var(--color-text-light);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-montserrat);
  font-weight: 700;
  color: var(--color-text-light);
}

/* Utility Classes - Tailwind-like */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-9 {
  gap: 2.25rem;
}

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

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

/* Padding and Margin utilities */
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-12 {
  padding: 3rem;
}
.p-16 {
  padding: 4rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-32 {
  padding-left: 8rem;
  padding-right: 8rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-50 {
  margin-top: 3.125rem;
}
.mt-100 {
  margin-top: 6.25rem;
}

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

/* Text sizes */
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-5xl {
  font-size: 3rem;
}
.text-6xl {
  font-size: 3.75rem;
}

/* Custom text sizes matching your design */
.text-18 {
  font-size: 18px;
}
.text-20 {
  font-size: 20px;
}
.text-24 {
  font-size: 24px;
}
.text-26 {
  font-size: 26px;
}
.text-30 {
  font-size: 30px;
}
.text-32 {
  font-size: 32px;
}
.text-40 {
  font-size: 40px;
}
.text-64 {
  font-size: 64px;
}

/* Font weights */
.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

/* Colors */
.text-primary {
  color: var(--color-primary);
}
.text-white {
  color: #ffffff;
}
.text-gray {
  color: var(--color-text-gray);
}
.text-muted {
  color: var(--color-text-muted);
}
.text-light {
  color: var(--color-text-light);
}

.bg-dark {
  background-color: var(--color-bg-dark);
}
.bg-card {
  background-color: var(--color-bg-card);
}

/* Borders */
.border {
  border: 1px solid;
}
.border-gray {
  border-color: var(--color-border-gray);
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}

/* Navigation Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #374151;
  position: relative;
  z-index: 20;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-weight: 500;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 14px;
}

.navbar-nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-nav a:hover {
  color: var(--color-text-light);
}

/* Navigation Link Styles */
.nav-link {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--color-text-light);
}

/* Dropdown Navigation Styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle::after {
  /* content: '▼'; */
  font-size: 10px;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-gray);
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(54, 54, 54, 0.5);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: rgba(242, 153, 74, 0.1);
  color: var(--color-primary);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    margin-top: 0;
  }

  .dropdown-item {
    padding: 0.5rem 0;
    border-bottom: none;
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-roboto);
}

.btn-primary {
  background: linear-gradient(to bottom, #f2994a, #d56d11);
  border-radius: 7485.04px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  color: black;
  font-weight: 600;
  line-height: 1.5;
  width: 128px;
  height: 38px;
  font-size: 12px;
}

.btn-primary:hover {
  background: linear-gradient(to bottom, #e8894a, #c25d0f);
  transform: translateY(-1px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-secondary {
  background: linear-gradient(
    to bottom,
    rgba(41, 41, 41, 0.5),
    rgba(66, 66, 66, 0.35)
  );
  border-radius: 1000px;
  border: 1.5px solid #aaaaaa;
  color: #aaaaaa;
  font-weight: 400;
  line-height: 1.5;
  width: 136px;
  height: 40px;
  font-size: 12px;
}

.btn-secondary:hover {
  background: linear-gradient(
    to bottom,
    rgba(41, 41, 41, 0.7),
    rgba(66, 66, 66, 0.55)
  );
  border-color: #cccccc;
  color: #cccccc;
  transform: translateY(-1px);
}

/* Header/Hero Section */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  z-index: 10;
}

.hero-content {
  max-width: 1083px;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  text-align: center;
}

.hero-title {
  font-family: var(--font-montserrat);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-light);
}

.hero-subtitle {
  font-family: var(--font-roboto);
  font-size: 24px;
  color: var(--color-text-gray);
  max-width: 900px;
  margin: 0 auto;
}

/* Services Section */
.services {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.services-title {
  font-size: 40px;
  font-family: var(--font-montserrat);
  font-weight: 700;
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 50px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  width: 100%;
}

.service-card {
  width: 300px;
  background-color: var(--color-bg-card);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--color-border-gray);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.service-description {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
  font-size: 14px;
}

.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-primary);
  border-radius: 50%;
}

/* Footer Styles */
.footer {
  margin-top: 50px;
  /* position: fixed;
  bottom: 0;
  left: 0;
  width: 100%; */
}

.footer-cta {
  width: 100%;
  height: 515px;
  background: linear-gradient(to bottom, #0c0c0c 50%, #1f1f1f 50%);
  margin-top: -100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-cta-content {
  width: 90%;
  max-width: 1160px;
  height: 218px;
  display: flex;
  align-items: center;
  background-color: #0c0c0c;
  background-image: url("/assets/images/blob.svg");
  background-size: cover;
  background-position: left top;
  border-radius: 14.54px;
  position: relative;
  z-index: 2;
  margin-top: 120px;
  padding: 3rem;
}

.footer-cta-text {
  flex: 1;
}

.footer-cta-title {
  color: white;
  font-size: 30px;
  font-family: var(--font-montserrat);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-cta-description {
  color: var(--color-text-muted);
  font-size: 18px;
  font-family: var(--font-roboto);
  font-weight: 400;
}

.footer-links {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10%;
  width: 100%;
  padding: 2rem 350px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-brand-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-name {
  color: white;
  font-size: 22px;
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: block;
  width: 40px;
  height: 40px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-nav-title {
  color: var(--color-text-light);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: var(--color-text-muted);
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #cbcbcb;
}

.footer-bottom {
  width: 100%;
  height: 50px;
  background-color: #131313;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright {
  color: #bebebe;
  font-size: 16px;
}

/* List Styles */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Root level (level 0): filled circle */
ul > li::before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  margin-right: 0.75rem;
}

/* First level (level 1): outlined circle */
ul ul > li::before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  background-color: transparent;
  margin-right: 0.75rem;
}

/* Deeper levels (level 2+): square */
ul ul ul > li::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-primary);
  border-radius: 0;
  margin-right: 0.75rem;
}

/* Ordered Lists */
ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: item;
}

ol li {
  display: flex;
  padding-left: 2rem;
  position: relative;
}

ol li::before {
  content: counter(item);
  counter-increment: item;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(to bottom, #2e2e2e, #131211);
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  font-family: var(--font-roboto);
  font-weight: bold;
  font-size: 0.75rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .navbar-nav {
    display: none;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .services-title {
    font-size: 26px;
  }

  .services-grid {
    gap: 1.5rem;
  }

  .service-card {
    width: 100%;
    max-width: 400px;
  }

  .footer-links {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .footer-cta-content {
    flex-direction: column;
    height: auto;
    padding: 2rem;
  }

  .footer-cta-title {
    font-size: 26px;
  }
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 50px;
  }

  .hero-subtitle {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .navbar {
    padding: 1rem 8rem;
  }

  .navbar-nav {
    display: flex;
  }

  .hero {
    padding: 5.625rem 0;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .services {
    margin-top: 100px;
  }

  .services-title {
    font-size: 40px;
  }

  .services-grid {
    gap: 4rem;
  }

  .service-card {
    width: 300px;
  }
}

/* Ghost-specific styles */
.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  font-family: var(--font-montserrat);
  color: var(--color-text-light);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content p {
  font-family: var(--font-roboto);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.post-content a {
  color: var(--color-primary);
  text-decoration: none;
}

.post-content a:hover {
  text-decoration: underline;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.post-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--color-text-gray);
}

.post-content code {
  background-color: var(--color-bg-card);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-family: "Menlo", "Monaco", "Consolas", monospace;
  font-size: 0.875rem;
}

.post-content pre {
  background-color: var(--color-bg-card);
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 2rem 0;
}

.post-content pre code {
  background: none;
  padding: 0;
}

.testimonial-social-link {
  align-self: self-end;
  margin-bottom: 3px;
  margin-left: 3px;
}

.testimonial-social-icon {
  width: 24px;
}

/* Koenig Editor Styles - Required for Ghost */
.kg-width-wide {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.kg-width-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.kg-card {
  margin: 2rem 0;
}

.kg-card figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  font-style: italic;
}

.kg-image {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.kg-gallery-container {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.kg-gallery-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.kg-gallery-image {
  flex: 1;
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
}

.kg-embed-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 2rem 0;
}

.kg-bookmark-card {
  width: 100%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-gray);
  border-radius: 0.5rem;
  overflow: hidden;
  margin: 2rem 0;
}

.kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.kg-bookmark-content {
  flex: 1;
  padding: 1.5rem;
}

.kg-bookmark-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.kg-bookmark-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.kg-bookmark-metadata {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.kg-bookmark-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.kg-bookmark-thumbnail {
  width: 200px;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .kg-width-wide,
  .kg-width-full {
    width: 100%;
    position: static;
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .kg-bookmark-container {
    flex-direction: column;
  }

  .kg-bookmark-thumbnail {
    width: 100%;
    height: 200px;
  }

  .kg-gallery-row {
    flex-direction: column;
  }
}
