/* =========================
   Font Faces
   ========================= */

@font-face {
  font-family: "Open Sans";
  src: url("/media/templates/site/cassiopeia/fonts/OpenSans-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/media/templates/site/cassiopeia/fonts/OpenSans-Italic-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 300 800;
  font-style: italic;
  font-display: swap;
}

/* =========================
   Theme Variables
   ========================= */

:root {
  --primary: #2f80ed;
  --primary-hover: #1f6fdb;
  --white: #ffffff;
  --dark: #0f172a;
  --bg-soft: #f8fafc;
  --text: #111827;
  --soft: #475569;
  --border: #e2e8f0;
  --cassiopeia-color-primary: #2f80ed;
  --cassiopeia-color-hover: #1f6fdb;
}

/* =========================
   General
   ========================= */

body {
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

main {
  padding-top: 1rem;
}

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

a:hover {
  color: var(--primary-hover);
  text-decoration: none;
}

.text-primary {
  color: rgb(26 115 232) !important;
}

.text-bg-primary {
  background-color: var(--cassiopeia-color-primary) !important;
}

.language-markup .tag {
  padding: 0;
}

.js-search-toggle span {
  padding: 0 !important;
}

/* =========================
   Typography
   ========================= */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
}

.display-3 {
  font-size: clamp(1.9rem, 6vw, 4rem);
}

.lead {
  font-size: clamp(1.1rem, 3vw, 1.2rem);
}

.accordion-button {
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  color: var(--cassiopeia-color-primary);
  background-color: #e8f0fe;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

/* Page Preak */
joomla-tab button[role=tab][aria-expanded=true], joomla-tab button[role=tab][aria-selected=true] {
  background-color: #e8f0fe;
  background-image: none;
  box-shadow: none;
  border-radius: 0;
  color: var(--cassiopeia-color-hover);
}

joomla-tab[view=tabs]>div[role=tablist] {
  background-color: rgb(249 249 249);
  border: none;
  border-image: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

joomla-tab button[role=tab] {
  color: #22262a;
  font-weight: 600;
}

joomla-tab button[aria-expanded=true]:after, joomla-tab button[aria-selected=true]:after {
  background-color: #2f80ed;
  height: 3px;
}

/* =========================
   Cards and Boxes
   ========================= */

.card,
.sidebar-right .card,
.sidebar-left .card {
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.card-header,
.card > h3,
.sidebar-right .card-header,
.sidebar-left .card-header {
  background: var(--bg-soft);
  color: var(--text);
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}

/* =========================
   Buttons
   ========================= */

.btn,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  border-radius: 32px;
}

.btn-primary {
  --btn-color: #fff;
  --btn-bg: #2f80ed;
  --btn-border-color: #2f80ed;
  --btn-hover-color: #fff;
  --btn-hover-bg: #1f6fdb;
  --btn-hover-border-color: #1f6fdb;
  --btn-focus-shadow-rgb: 47, 128, 237;
  --btn-active-color: #fff;
  --btn-active-bg: #1f6fdb;
  --btn-active-border-color: #1f6fdb;
  --btn-active-shadow: none;
  --btn-disabled-color: #fff;
  --btn-disabled-bg: #2f80ed;
  --btn-disabled-border-color: #2f80ed;
}

.btn-link {
  --btn-font-weight: 400;
  --btn-color: #2f80ed;
  --btn-bg: transparent;
  --btn-border-color: transparent;
  --btn-hover-color: #1f6fdb;
  --btn-hover-border-color: transparent;
  --btn-active-color: #1f6fdb;
  --btn-active-border-color: transparent;
  --btn-disabled-color: #6d757e;
  --btn-disabled-border-color: transparent;
  --btn-box-shadow: 0 0 0 #000;
  --btn-focus-shadow-rgb: 47, 128, 237;
  text-decoration: underline;
}

/* Cassiopeia fallbacks */
.btn-primary,
button.btn-primary,
input[type="submit"] {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus,
button.btn-primary:hover,
button.btn-primary:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
}

.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle,
:not(.btn-check) + .btn-primary:active,
.btn-check:checked + .btn-primary,
.btn-check:active + .btn-primary,
button.btn-primary:active,
input[type="submit"]:active {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
  box-shadow: none !important;
}

.btn-primary:focus,
button.btn-primary:focus,
input[type="submit"]:focus {
  box-shadow: none !important;
  outline: none;
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: none !important;
}

.btn-outline-primary:active,
.btn-outline-primary.active,
.show > .btn-outline-primary.dropdown-toggle,
:not(.btn-check) + .btn-outline-primary:active,
.btn-check:checked + .btn-outline-primary,
.btn-check:active + .btn-outline-primary,
.btn-check:focus + .btn-outline-primary {
  color: var(--white) !important;
  background-color: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
  box-shadow: none !important;
}

/* =========================
   Forms
   ========================= */

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  box-shadow: none;
}

.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-radius: 0.25rem;
}

.form-check-input:checked {
  background-color: #198754;
  border-color: #198754;
}

.form-check-input:focus {
  box-shadow: none !important;
}

.valid {
  border-color: #448344;
}

/* =========================
   Header
   ========================= */

.container-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "top below"
    "logo logo"
    "nav nav";
  background: var(--white);
  background-image: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.container-header .container-topbar {
  grid-area: top;
  padding: 0.5em;
}

.container-header .container-below-top {
  grid-area: below;
  justify-content: flex-end;
}

.container-header .grid-child:has(.navbar-brand) {
  grid-area: logo;
}

.container-header .container-nav {
  grid-area: nav;
}

.container-header .navbar-brand {
  font-weight: 700;
}

.container-header .navbar-brand img {
  width: 13rem;
  height: auto;
  position: relative;
  top: -0.3rem;
}

.container-header .site-description {
  color: var(--headercolor);
}

.container-header .mod-menu > li.active::after,
.container-header .mod-menu > li:hover::after {
  background: currentColor;
}

.container-header .navbar-toggler {
  color: currentColor;
  border-color: currentColor;
}

/* Header login */
.header-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  line-height: 1.2;
  border-radius: 10px;
  text-decoration: none;
}

/* =========================
   Menu
   ========================= */

.mod-menu__sub a[target="_blank"] {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.mod-menu__sub a[target="_blank"]::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    margin-left: 8px;
    background-color: currentColor;
    opacity: 0.55;
    transform: translateY(-1px);
    transition: transform 0.18s cubic-bezier(.2, .8, .2, 1), opacity 0.18s ease;

    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6 3h7v7M13 3L3 13' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6 3h7v7M13 3L3 13' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}

.mod-menu__sub a[target="_blank"]:hover::after,
.mod-menu__sub a[target="_blank"]:focus-visible::after {
    transform: translate(2px, -3px);
    opacity: 0.95;
}

.jt-menu-heading {
  display: block;
  margin: 0.4rem 0 0.85rem;
  padding-bottom: 0.55rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--gray-900);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  pointer-events: none;
}

.container-header .mod-menu li + li > .jt-menu-heading {
  margin-top: 1rem;
}

.container-header .mod-menu a,
.container-header .mod-menu button {
  color: #6d757e;
}

.container-header .mod-menu > li::after {
  display: none;
}

.container-header .mod-menu > li > a,
.container-header .mod-menu a {
  color: #6d757e !important;
  font-weight: 500;
}

.container-header .mod-menu > li > a:hover {
  opacity: 0.85;
}

.container-header .mod-menu > li > a:hover,
.container-header .mod-menu > li > a:focus,
.container-header .mod-menu > li.active > a,
.container-header .mod-menu a:hover,
.container-header .mod-menu a:focus {
  color: #171717 !important;
}

.container-nav .mod-articles {
  display: flex;
  gap: 1rem;
}

.container-nav .mod-articles a {
  color: var(--headercolor);
}

.container-nav .mod-articles a:hover,
.container-nav .mod-articles a.active {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
}

@media (min-width: 992px) {
  .container-header {
    grid-template-columns:
      [full-start] minmax(0, 1fr)
      [main-start] repeat(4, minmax(0, 19.875rem))
      [main-end] minmax(0, 1fr)
      [full-end];
    grid-template-areas: ". logo logo nav nav .";
    gap: 0 1rem;
  }

  .container-header:has(.container-below-top, .container-topbar) {
    grid-template-areas:
      ". top top below below ."
      ". logo logo nav nav .";
  }

  .header-login-module {
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  .container-header .mod-menu > li {
    position: relative;
  }

  .container-header .mod-menu .mod-menu__sub {
    z-index: 1001;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    display: block;
    min-width: max-content;
    margin: 0;
    padding: 10px;
    transform: translateX(-50%);
    background: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  .container-header .mod-menu .mod-menu__sub::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    transform: translateX(-50%) rotate(45deg);
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
  }

  .container-header .mod-menu .mod-menu__sub li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .container-header .mod-menu .mod-menu__sub a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    color: #6d757e;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .container-header .mod-menu .mod-menu__sub a:hover,
  .container-header .mod-menu .mod-menu__sub a:focus {
    background: #f9f9f9;
    color: #171717;
  }

  .jt-doc-sticky {
    position: sticky;
    top: 110px;
  }
}

@media (max-width: 991.98px) {
  .header-login-module {
    margin-top: 0.75rem;
  }

  .header-login-btn {
    display: inline-flex;
  }

  .container-header .mod-menu .mod-menu__sub a,
  .container-header .mod-menu .mod-menu__sub span {
    color: currentColor;
  }
}

/* =========================
   Modals and Small Tweaks
   ========================= */

#mod-custom110 p {
  margin: 0;
}

#mod-custom110 .btn {
  position: relative;
  top: 0.3rem;
}

#login-form-16,
.modal .btn {
  margin-right: 0;
}

.modal-backdrop.show {
  opacity: 0.3;
}

/* =========================
   Badges
   ========================= */

.badge {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.badge.bg-info {
  background: #eef6fb !important;
  color: #234a63 !important;
  border-color: #cfe1ee !important;
}

.badge.bg-primary {
  background: #eef4ff !important;
  color: #295ea8 !important;
  border-color: #cdddff !important;
}

.badge.bg-success {
  background: #edf8f1 !important;
  color: #1f5a38 !important;
  border-color: #cfe8d8 !important;
}

.badge.bg-warning {
  background: #fff6e8 !important;
  color: #7a5312 !important;
  border-color: #f1ddb4 !important;
}

.badge.bg-danger {
  background: #fff1f1 !important;
  color: #8f2d2d !important;
  border-color: #f0caca !important;
}

.badge.bg-secondary,
.badge.bg-light {
  background: #f5f7fa !important;
  color: #667085 !important;
  border-color: #e3e8ef !important;
}

a.badge-new::after,
a.badge-hot::after,
a.badge-soon::after {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 2px 6px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  vertical-align: middle;
  background: transparent;
}

a.badge-new::after {
  content: "NEW";
  color: #4caf50;
}

a.badge-hot::after {
  content: "HOT";
  color: #dc3545;
}

a.badge-soon::after {
  content: "SOON";
  color: #ff9f0a;
}

.metismenu-item a.badge-new,
.metismenu-item a.badge-hot,
.metismenu-item a.badge-soon {
  position: relative;
  display: inline-block !important;
}

/* =========================
   MiniShop
   ========================= */

/* =========================================================
   MiniShop – Final media/card layout
   Banner images: 1200x525
   Ratio: 1200 / 525
   ========================================================= */

/* -------------------------
   1) Product detail page
   ------------------------- */
.com-minishop.product .minishop-panel__media {
    width: 100%;
    aspect-ratio: 1200 / 525;
    height: auto !important;
    min-height: 0 !important;
    padding: 0;
    overflow: hidden;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.com-minishop.product .minishop-panel__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.com-minishop.products .minishop-card__meta, .com-minishop.product .minishop-product__meta {
    margin: 1rem;
}

/* -------------------------
   2) Shop main product cards
   ------------------------- */
.com-minishop.products .minishop-card__title a {
    color: #22262a;
}

.com-minishop.products .minishop-card__title a:hover, .com-minishop.products .minishop-card__title a:focus {
    color: #2f80ed;
}

.mod-minishop-products--grid .minishop-price {
    color: inherit;
    font-weight: 600;
}

.com-minishop.view-products .minishop-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.com-minishop.view-products .minishop-card__media {
    display: block;
    width: 100%;
    aspect-ratio: 1200 / 525;
    overflow: hidden;
    background: #f7f7f7;
}

.com-minishop.view-products .minishop-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.com-minishop.view-products .minishop-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.com-minishop.view-products .minishop-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.com-minishop.view-products .minishop-card__footer {
    margin-top: auto;
}

/* optional: intro çok uzarsa kartları dengeler */
.com-minishop.view-products .minishop-intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}


/* -------------------------
   3) Module grid product cards
   ------------------------- */
.mod-minishop-products--grid .minishop-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mod-minishop-products--grid .minishop-card__media {
    display: block;
    width: 100%;
    aspect-ratio: 1200 / 525;
    overflow: hidden;
    background: #f7f7f7;
}

.mod-minishop-products--grid .minishop-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.mod-minishop-products--grid .minishop-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.mod-minishop-products--grid .minishop-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mod-minishop-products--grid .minishop-card__footer {
    margin-top: auto;
}

/* optional: intro çok uzarsa modül kartlarını dengeler */
.mod-minishop-products--grid .minishop-intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.com-minishop.product .minishop-price {
  margin: 0 0 1rem;
  font-size: 1.875rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.com-minishop.product .minishop-price strong {
  margin-right: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #4b5563;
}

.com-minishop.products .minishop-card__meta dt,
.com-minishop.product .minishop-product__meta dt {
  font-size: 0.875rem;
  color: rgb(34 38 42 / 50%);
}

.com-minishop.products .minishop-card__meta dd,
.com-minishop.product .minishop-product__meta dd {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(34 38 42 / 50%);
}

.com-minishop.products .minishop-card__title {
  font-size: 1.25rem;
  font-weight: 700;
}

.com-minishop.products .minishop-price strong, .com-minishop.product .minishop-price strong {
  font-weight: 600;
}

.com-minishop.products .minishop-actions .btn, .com-minishop.product .minishop-actions .btn {
  border-radius: 32px;
  font-weight: 500;
}

.com-minishop.products .minishop-price, .com-minishop.product .minishop-price {
  font-weight: 700;
  color: #448344;
}

.com-minishop.product .minishop-section {
  padding: 1.5rem 0;
  font-weight: 400;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.com-minishop.product .minishop-description p {
  margin-bottom: 1rem;
  font-weight: 400;
}

.com-minishop.product .minishop-alt-payment a,
.com-minishop.product .minishop-checkout-legal-notice a {
  font-weight: inherit;
  text-decoration: none;
}

.com-minishop.product .alert {
  margin-bottom: 1rem;
  padding: 1rem 1.125rem;
  border: 1px solid;
  border-radius: 10px;
  box-shadow: none;
}

.com-minishop.product .alert-info {
  --alert-color: #234a63;
  --alert-bg: #eef6fb;
  --alert-border-color: #cfe1ee;

  color: var(--alert-color);
  background-color: var(--alert-bg);
  border-color: var(--alert-border-color);
  border-left: 4px solid #7fb6d6;
}

.com-minishop.product .alert-warning {
  --alert-color: #7a5312;
  --alert-bg: #fff6e8;
  --alert-border-color: #f1ddb4;

  color: var(--alert-color);
  background-color: var(--alert-bg);
  border-color: var(--alert-border-color);
  border-left: 4px solid #e3b45c;
}

.com-minishop.product .alert-success {
  --alert-color: #1f5a38;
  --alert-bg: #edf8f1;
  --alert-border-color: #cfe8d8;

  color: var(--alert-color);
  background-color: var(--alert-bg);
  border-color: var(--alert-border-color);
  border-left: 4px solid #67b98b;
}

.com-minishop.product .alert a {
  color: inherit;
  font-weight: 600;
}

.com-minishop.product .minishop-features-list__icon svg {
  fill: var(--success);
}

.minishop-brandline {
  margin-top: 40px;
  padding-top: 8px;
  text-align: center;
  font-size: 0.92rem;
  color: #7a8594;
}

.minishop-brandline a {
  color: inherit;
  text-decoration: none;
}

.minishop-brandline a:hover,
.minishop-brandline a:focus {
  color: #5f6f82;
  text-decoration: underline;
}

.mod-minishop-products--grid .minishop-actions .btn {
  border-radius: 32px;
  padding-inline: 1rem;
}

.mod-minishop-products--grid .minishop-card__title {
  font-size: 1.25rem;
  line-height: 1.12;
  font-weight: 700;
}

.mod-minishop-products--grid .minishop-card__title a {
  color: inherit;
}

.mod-minishop-products--grid .minishop-card__title a:hover, .mod-minishop-products--grid .minishop-card__title a:focus {
  color: #2f80ed;
}

.main-bottom .mod-minishop-products {
  margin-bottom: 3rem;
}

/* =========================
   Extensions Blog
   ========================= */

.com-content-article__body a[target="_blank"]:not(.btn) {
    display: inline-flex;
    text-decoration: none;
}

.com-content-article__body a[target="_blank"]:not(.btn)::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    margin-left: 8px;
    background-color: currentColor;
    opacity: 0.55;
    transform: translateY(-1px);
    transition: transform 0.18s cubic-bezier(.2, .8, .2, 1), opacity 0.18s ease;

    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6 3h7v7M13 3L3 13' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6 3h7v7M13 3L3 13' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}

.com-content-article__body a[target="_blank"]:not(.btn):hover::after,
.com-content-article__body a[target="_blank"]:not(.btn):focus-visible::after {
    transform: translate(2px, -3px);
    opacity: 0.95;
}

.extensions-blog .blog-items .item-content {
  display: flex;
  flex-direction: column;
}

.extensions-blog .blog-items .item-content > p:not(.readmore) {
  display: -webkit-box;
  min-height: 4.8em;
  margin-bottom: 14px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.extensions-blog .blog-items .readmore {
  margin-top: 0;
  margin-bottom: 0;
}

.fields-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 14px 0 20px;
  padding: 0;
}

.fields-container .field-entry {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 4px 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.2px;
  list-style: none;
}

.fields-container .field-label {
  display: none !important;
}

.fields-container .field-value {
  margin: 0;
  padding: 0;
}

.fields-container li::marker {
  content: "";
}

.fields-container .field-entry:nth-child(1) {
  background: #ecfdf5 !important;
  color: #16a34a !important;
}

.fields-container .field-entry:nth-child(1) .field-value {
  color: inherit !important;
}

.fields-container .field-entry:nth-child(2) {
  background: #f1f5f9 !important;
  color: #475569 !important;
}

.fields-container .field-entry:nth-child(3) {
  background: #eff6ff !important;
  color: #2563eb !important;
}

.com-content-category-blog__item.blog-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  box-shadow:
    0 4px 6px -2px rgba(10, 11, 10, 0.08),
    0 12px 16px -4px rgba(10, 11, 10, 0.03);
}

.com-content-category-blog__item.blog-item > .item-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
}

.com-content-category-blog__item.blog-item .readmore {
  margin-top: auto;
  padding-top: 15px;
}

.com-content-article.item-pageextensions-blog {
  max-width: 860px;
  margin: 0 auto;
}

.com-content-article.item-page .page-header,
.com-content-article.item-page .com-content-article__body,
.com-content-article.item-page .article-info,
.com-content-article.item-page .fields-container {
  max-width: 100%;
}

.com-content-category-blog__item .page-header h2,
.blog-item .page-header h2,
.page-header h2 {
  font-size: 1.625rem;
}

.com-content-category-blog__item .page-header h2 a,
.blog-item .page-header h2 a,
.page-header h2 a {
  color: #22262a;
  text-decoration: none;
}

.com-content-category-blog__item .page-header h2 a:hover,
.blog-item .page-header h2 a:hover,
.page-header h2 a:hover {
  color: #1f6fdb;
}

.blog-item .item-image {
  margin-top: 0;
  margin-bottom: 0;
}

.article-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin: 10px 0 18px;
  padding: 0;
  font-size: 0.875rem;
  color: #adb5bd !important;
}

.article-info dd {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #adb5bd !important;
}

.article-info .article-info-term {
  display: none;
}

.article-info [class^="icon-"],
.article-info [class*=" icon-"] {
  font-size: 0.875rem;
  opacity: 0.7;
}

.article-info a {
  color: #6d757e;
  text-decoration: none;
}

.article-info a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.readmore .icon-chevron-right:before {
  display: none;
}

/* =========================
   Footer
   ========================= */

.footer {
  background-color: #f9f9f9;
  background-image: none;
}