/* Shared blog detail: 70:30 content + sidebar
   Does not alter article HTML — only layout chrome around it. */

.k365-blog-layout {
  --k365-blog-ink: #1a1a1a;
  --k365-blog-muted: #5c5c5c;
  --k365-blog-line: rgba(0, 0, 0, 0.08);
  --k365-blog-accent: var(--wdtPrimaryColor, #e31c23);
  --k365-blog-surface: #f7f7f7;
  width: 100%;
  padding: 1.5rem 0 3.5rem;
  background: #fff;
}

.k365-blog-layout__inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(240px, 3fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  align-items: start;
}

.k365-blog-layout__main {
  min-width: 0;
}

.k365-blog-layout__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  align-items: center;
  margin: 0 0 1.15rem;
  padding: 0.65rem 0.85rem;
  background: var(--k365-blog-surface);
  border: 1px solid var(--k365-blog-line);
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--k365-blog-muted);
}

.k365-blog-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 1.5rem;
  line-height: 1.3;
  color: inherit;
  text-decoration: none;
}

.k365-blog-meta__icon {
  flex: 0 0 auto;
  color: var(--k365-blog-accent);
  opacity: 0.9;
}

.k365-blog-meta__item--cat {
  padding: 0.2rem 0.55rem 0.2rem 0.4rem;
  border: 1px solid rgba(227, 28, 35, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--k365-blog-ink);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

a.k365-blog-meta__item--cat:hover {
  border-color: var(--k365-blog-accent);
  color: var(--k365-blog-accent);
}

.k365-blog-meta__item--author,
.k365-blog-meta__item--read,
.k365-blog-meta__item--date {
  font-weight: 500;
}

.k365-blog-meta__item--author span,
.k365-blog-meta__item--read span,
.k365-blog-meta__item--date time {
  color: var(--k365-blog-ink);
}

/* Legacy class kept for safety if referenced elsewhere */
.k365-blog-layout__cat {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--k365-blog-line);
  border-radius: 2px;
  color: var(--k365-blog-ink);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* Let Elementor article fill the left column (override old 65%/920px clamps) */
body.single-post.k365-blog-layout-page .k365-blog-layout__article .k365-blog-post,
body.single-post.k365-blog-layout-page .k365-blog-layout__article .k365-blog-post .elementor,
body.single-post.k365-blog-layout-page .k365-blog-layout__article .container.k365-blog-post {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.single-post.k365-blog-layout-page .k365-blog-layout__article .elementor-element.e-con,
body.single-post.k365-blog-layout-page .k365-blog-layout__article .e-con-boxed,
body.single-post.k365-blog-layout-page .k365-blog-layout__article .e-con-inner {
  --content-width: 100% !important;
  max-width: none !important;
}

body.single-post.k365-blog-layout-page .k365-blog-layout__article .e-con-inner {
  width: 100% !important;
}

body.single-post.k365-blog-layout-page .k365-blog-layout__article .k365-blog-post .elementor-widget-image img {
  max-width: 100%;
  height: auto;
}

/* Conclusion CTA breathing room before share */
.k365-blog-conclusion .k365-blog-cta {
  margin-bottom: 0.35rem;
}

.k365-blog-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.7rem;
  margin-top: 2.35rem;
  padding: 0.95rem 1.05rem;
  background: var(--k365-blog-surface);
  border: 1px solid var(--k365-blog-line);
  border-radius: 6px;
}

.k365-blog-share__label {
  font-family: Rajdhani, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--k365-blog-muted);
  margin-right: 0.2rem;
}

body.single-post .k365-blog-share__btn,
.k365-blog-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.25rem;
  padding: 0.4rem 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  background: #fff !important;
  color: var(--k365-blog-ink) !important;
  font-family: Montserrat, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  box-shadow: none;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

body.single-post .k365-blog-share__btn:hover,
.k365-blog-share__btn:hover {
  background: #fff !important;
  border-color: rgba(0, 0, 0, 0.28);
  color: var(--k365-blog-ink) !important;
  filter: none;
  transform: translateY(-1px);
}

body.single-post .k365-blog-share__btn--wa,
.k365-blog-share__btn--wa {
  border-color: rgba(37, 211, 102, 0.4);
  color: #0f8a66 !important;
}

body.single-post .k365-blog-share__btn--wa:hover,
.k365-blog-share__btn--wa:hover {
  background: rgba(37, 211, 102, 0.08) !important;
  border-color: #25d366;
  color: #0b6b52 !important;
}

body.single-post .k365-blog-share__btn--copy,
.k365-blog-share__btn--copy {
  border-color: rgba(0, 0, 0, 0.16);
  color: #333 !important;
}

body.single-post .k365-blog-share__btn--copy:hover,
.k365-blog-share__btn--copy:hover {
  border-color: rgba(227, 28, 35, 0.45);
  color: var(--k365-blog-accent, #e31c23) !important;
}

body.single-post .k365-blog-share__btn--copy.is-copied,
.k365-blog-share__btn--copy.is-copied {
  border-color: rgba(31, 143, 78, 0.5);
  color: #1f8f4e !important;
  background: rgba(31, 143, 78, 0.06) !important;
}

.k365-blog-share__icon {
  flex: 0 0 auto;
}

.k365-blog-layout__foot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0;
  border-top: 0;
}

body.single-post.k365-blog-layout-page .k365-blog-layout__foot .k365-blog-back-btn,
.k365-blog-layout__foot .k365-blog-back-btn {
  margin: 0;
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1.1rem;
  border-radius: 4px;
  font-size: 0.84rem;
  letter-spacing: 0.045em;
}

/* Outline CTA: beat theme-bridge white text (body.single-post .k365-blog-back-btn). */
body.single-post.k365-blog-layout-page .k365-blog-layout__foot .k365-blog-back-btn--outline,
.k365-blog-layout__foot .k365-blog-back-btn--outline {
  background: #fff !important;
  color: #1a1a1a !important;
  border: 1px solid rgba(0, 0, 0, 0.22);
}

body.single-post.k365-blog-layout-page .k365-blog-layout__foot .k365-blog-back-btn--outline:hover,
.k365-blog-layout__foot .k365-blog-back-btn--outline:hover {
  background: #fff !important;
  border-color: var(--k365-blog-accent, #e31c23);
  color: var(--k365-blog-accent, #e31c23) !important;
  filter: none;
}

@media (max-width: 640px) {
  .k365-blog-layout__foot {
    grid-template-columns: 1fr;
  }

  .k365-blog-share {
    padding: 0.85rem 0.9rem;
  }
}

/* Sidebar */
.k365-blog-layout__aside {
  position: sticky;
  top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.k365-blog-widget {
  background: var(--k365-blog-surface);
  border: 1px solid var(--k365-blog-line);
  padding: 1.1rem 1.15rem 1.2rem;
}

.k365-blog-widget__title {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--k365-blog-ink);
  letter-spacing: 0.01em;
}

.k365-blog-search {
  display: block;
  width: 100%;
}

.k365-blog-search__field {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.35rem;
  min-height: 52px;
  padding: 0.3rem 0.3rem 0.3rem 0.85rem;
  border: 1px solid rgba(14, 14, 14, 0.1);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(14, 14, 14, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.k365-blog-search__field:focus-within {
  border-color: rgba(227, 28, 35, 0.45);
  box-shadow: 0 12px 30px rgba(227, 28, 35, 0.12);
}

.k365-blog-search__icon {
  flex: 0 0 auto;
  color: #8a8a8a;
  display: block;
}

.k365-blog-search__field:focus-within .k365-blog-search__icon {
  color: var(--k365-blog-accent);
}

.k365-blog-search input[type="search"] {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.55rem 0.35rem;
  font: inherit;
  font-size: 0.98rem;
  color: var(--k365-blog-ink);
  outline: none;
  box-shadow: none;
}

.k365-blog-search input[type="search"]::placeholder {
  color: #8f8f8f;
}

.k365-blog-search input[type="search"]::-webkit-search-decoration,
.k365-blog-search input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.k365-blog-search input[type="search"]:focus {
  outline: none;
}

.k365-blog-search button,
.k365-blog-index-search button {
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--k365-blog-accent, #e31c23) !important;
  color: #fff !important;
  font-family: var(--wdtFontTypo_Alt, "Rajdhani", sans-serif);
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem !important;
  line-height: 1 !important;
  padding: 0.8rem 1.15rem !important;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: none !important;
}

.k365-blog-search button:hover,
.k365-blog-index-search button:hover {
  background: #c40d18 !important;
  color: #fff !important;
}

.k365-blog-search button:focus-visible,
.k365-blog-index-search button:focus-visible {
  outline: 2px solid rgba(227, 28, 35, 0.45);
  outline-offset: 2px;
}

.k365-blog-widget__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.k365-blog-widget__card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.7rem;
  align-items: start;
  text-decoration: none;
  color: inherit;
}

.k365-blog-widget__card:hover .k365-blog-widget__name {
  color: var(--k365-blog-accent);
}

.k365-blog-widget__thumb {
  display: block;
  width: 72px;
  height: 54px;
  overflow: hidden;
  background: #e8e8e8;
}

.k365-blog-widget__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.k365-blog-widget__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.k365-blog-widget__name {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--k365-blog-ink);
}

.k365-blog-widget__date {
  font-size: 0.78rem;
  color: var(--k365-blog-muted);
}

.k365-blog-widget__cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.k365-blog-widget__cats li {
  margin: 0;
  padding: 0;
  border: 0;
}

.k365-blog-widget__cats li + li {
  border-top: 0;
}

.k365-blog-widget__cats a {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.8rem;
  text-decoration: none;
  color: var(--k365-blog-ink);
  font-weight: 650;
  font-size: 0.88rem;
  border: 1px solid rgba(14, 14, 14, 0.1);
  border-radius: 999px;
  background: #fff;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.k365-blog-widget__cats a:hover {
  color: var(--k365-blog-accent);
  border-color: rgba(227, 28, 35, 0.35);
  background: #fff7f7;
  transform: translateY(-1px);
}

.k365-blog-widget__count {
  display: inline-flex;
  min-width: 1.55rem;
  justify-content: center;
  align-items: center;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.06);
  border: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #666;
}

.k365-blog-layout .visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .k365-blog-layout__inner {
    grid-template-columns: 1fr;
  }

  .k365-blog-layout__aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .k365-blog-widget--search {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .k365-blog-layout {
    padding: 1rem 0 2.5rem;
  }

  .k365-blog-layout__inner {
    width: min(100% - 1.25rem, 1180px);
  }

  .k365-blog-layout__aside {
    grid-template-columns: 1fr;
  }
}

/* Blog listing filter banner (search / category) */
.k365-blog-filter-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto 1.25rem;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border: 1px solid rgba(14, 14, 14, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(14, 14, 14, 0.04);
}

.k365-blog-filter-banner p {
  margin: 0;
  font-weight: 650;
}

.k365-blog-filter-banner a {
  color: var(--wdtPrimaryColor, #e31c23);
  font-weight: 700;
  text-decoration: none;
}

.k365-blog-filter-banner a:hover {
  text-decoration: underline;
}

.k365-blog-index-chrome {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto 1.75rem;
  display: grid;
  gap: 1.15rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid rgba(14, 14, 14, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(227, 28, 35, 0.07), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  box-shadow: 0 14px 36px rgba(14, 14, 14, 0.05);
}

.k365-blog-index-search {
  max-width: none;
  width: 100%;
}

.k365-blog-index-cats-wrap {
  display: grid;
  gap: 0.65rem;
}

.k365-blog-index-cats__label {
  margin: 0;
  font-family: var(--wdtFontTypo_Alt, "Rajdhani", sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a7a7a;
}

.k365-blog-index-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.k365-blog-index-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(14, 14, 14, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.9rem;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(14, 14, 14, 0.03);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.k365-blog-index-cat__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.45rem;
  padding: 0.18rem 0.4rem;
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.06);
  color: #666;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.k365-blog-index-cat:hover {
  border-color: rgba(227, 28, 35, 0.35);
  color: var(--wdtPrimaryColor, #e31c23);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(227, 28, 35, 0.1);
}

.k365-blog-index-cat.is-active {
  border-color: var(--wdtPrimaryColor, #e31c23);
  background: var(--wdtPrimaryColor, #e31c23);
  color: #fff;
  box-shadow: 0 10px 22px rgba(227, 28, 35, 0.22);
}

.k365-blog-index-cat.is-active .k365-blog-index-cat__count {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.k365-blog-index-cat:focus-visible {
  outline: 2px solid rgba(227, 28, 35, 0.45);
  outline-offset: 2px;
}

.k365-blog-index .visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) {
  .k365-blog-index-chrome {
    padding: 1rem;
    gap: 1rem;
    border-radius: 14px;
  }

  .k365-blog-search__field {
    min-height: 48px;
    padding-left: 0.7rem;
  }

  .k365-blog-search button {
    padding: 0.72rem 0.95rem;
  }

  .k365-blog-index-cat {
    padding: 0.48rem 0.75rem;
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .k365-blog-index-cat,
  .k365-blog-search button,
  .k365-blog-widget__cats a {
    transition: none;
  }

  .k365-blog-index-cat:hover,
  .k365-blog-widget__cats a:hover {
    transform: none;
  }
}

.k365-blog-featured {
  margin: 0 0 1.25rem;
}

.k365-blog-featured img {
  display: block;
  width: 100%;
  height: auto;
}

/* Clean HTML article body (post-Elementor) */
.k365-blog-post--html {
  max-width: none;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.75;
}

.k365-blog-post--html > h1,
.k365-blog-post--html > h2,
.k365-blog-post--html > h3,
.k365-blog-post--html > h4 {
  color: #111;
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.2;
  margin: 1.75rem 0 0.75rem;
}

/* Article title (lead heading) — clearly above section subheads */
.k365-blog-post--html > h1:first-child,
.k365-blog-post--html > h2:first-child {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

/* Section subtitles / mid-article H2s */
.k365-blog-post--html > h2:not(:first-child) {
  font-size: clamp(1.2rem, 1.85vw, 1.45rem);
  margin-top: 2rem;
}

.k365-blog-post--html > h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  letter-spacing: 0.02em;
}

.k365-blog-post--html > h4 {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.k365-blog-post--html p {
  margin: 0 0 1.15rem;
}

.k365-blog-post--html a,
.k365-blog-conclusion a,
.k365-blog-faqs a {
  color: #b60404;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.k365-blog-post--html a:hover,
.k365-blog-conclusion a:hover,
.k365-blog-faqs a:hover {
  color: var(--wdtPrimaryColor, #e31c23);
}

.k365-blog-post--html img {
  display: block;
  width: 100%;
  height: auto;
  margin: 1.25rem 0 1.75rem;
  border-radius: 4px;
}

.k365-blog-post--html .k365-blog-cta,
.k365-blog-conclusion .k365-blog-cta {
  margin: 1rem 0 1.5rem;
}

.k365-blog-post--html .k365-blog-cta a,
.k365-blog-conclusion .k365-blog-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  background: var(--wdtPrimaryColor, #e31c23);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  border-radius: 2px;
}

.k365-blog-post--html .k365-blog-cta a:hover,
.k365-blog-conclusion .k365-blog-cta a:hover {
  filter: brightness(0.92);
}

.k365-blog-post--html details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.15rem 0;
}

.k365-blog-post--html details > summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0a0a0a;
}

.k365-blog-post--html details > summary::-webkit-details-marker {
  display: none;
}

.k365-blog-post--html details > summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: #666;
}

.k365-blog-post--html details[open] > summary::after {
  content: "–";
}

.k365-blog-post--html details > p,
.k365-blog-post--html details .k365-blog-faq-answer {
  margin: 0 0 1rem;
  color: #4c4c4c;
}

.k365-blog-faqs,
.k365-blog-conclusion {
  margin-top: 2.25rem;
  padding-top: 0.25rem;
}

.k365-blog-faqs > h2,
.k365-blog-conclusion > h2 {
  margin: 0 0 1rem;
  font-family: Rajdhani, sans-serif;
  font-size: clamp(1.2rem, 1.85vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #0a0a0a;
}

/* Blog hero title + breadcrumb: left-aligned with content column */
body.single-post.k365-blog-layout-page .main-title-section,
body.single-post.k365-blog-layout-page .main-title-section h1,
body.single-post.k365-blog-layout-page .main-title-section-wrapper .breadcrumb {
  text-align: left !important;
}

body.single-post.k365-blog-layout-page .main-title-section h1 {
  font-size: clamp(1.65rem, 3.6vw, 2.65rem) !important;
  line-height: 1.15 !important;
  max-width: 18em;
  margin-left: 0;
  margin-right: 0;
}

body.single-post.k365-blog-layout-page .main-title-section-wrapper .breadcrumb {
  font-size: 0.92rem;
  line-height: 1.45;
}

body.single-post.k365-blog-layout-page .main-title-section-wrapper .breadcrumb .current {
  font-size: 0.9em;
}

.k365-blog-faqs details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.15rem 0;
}

.k365-blog-faqs details > summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0a0a0a;
}

.k365-blog-faqs details > summary::-webkit-details-marker {
  display: none;
}

.k365-blog-faqs details > summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: #666;
}

.k365-blog-faqs details[open] > summary::after {
  content: "–";
}

.k365-blog-faqs details > p,
.k365-blog-faqs details .k365-blog-faq-answer {
  margin: 0 0 1rem;
  color: #4c4c4c;
}

.k365-blog-conclusion p {
  margin: 0 0 1rem;
  color: #333;
  line-height: 1.7;
}

.k365-blog-post--html ul,
.k365-blog-post--html ol {
  margin: 0 0 1.15rem;
  padding-left: 1.25rem;
}
