/**
 * Cocon Sémantique - Styles
 * Version: 1.4.0
 * 
 * All selectors are namespaced with .cocon- prefix to prevent
 * conflicts with client themes and plugins.
 */

/* ==========================================================================
   0. TYPOGRAPHY ISOLATION & CSS VARIABLES
   ========================================================================== */

/* Set controlled base font-size for rem calculations */
main.cocon-archive-main,
.cocon-single-wrapper {
  /* Reset and control base font-size for rem calculations */
  font-size: 16px !important;
  /* CSS Custom Properties for typography - isolated from client CSS */
  --cocon-base-font-size: 16px;
  --cocon-line-height-base: 1.5;
  --cocon-font-family-base: inherit;
  --cocon-font-family-serif: inherit;
  --cocon-color-text: #333;
  --cocon-color-text-light: #666;
  --cocon-color-text-lighter: #888;
  --cocon-color-link: #a67c52;
  --cocon-color-link-hover: #8a6441;

  /* Typography reset - override client styles */
  font-family: var(--cocon-font-family-base) !important;
  line-height: var(--cocon-line-height-base) !important;
  color: var(--cocon-color-text) !important;

  /* Reset inherited typography from client CSS */
  font-weight: normal !important;
  font-style: normal !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  text-align: left !important;
}

/* Typography reset for all elements within cocon scope */
main.cocon-archive-main *,
.cocon-single-wrapper * {
  /* Reset font-size inheritance - use rem relative to our base */
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  color: inherit;
}

/* Restore specific font-sizes using rem (relative to our controlled base) */
main.cocon-archive-main h1,
.cocon-single-wrapper h1 {
  font-size: 2.5rem !important;
  line-height: 1.2 !important;
  font-weight: bold !important;
  margin: 0 0 1rem 0 !important;
}

main.cocon-archive-main h2,
.cocon-single-wrapper h2 {
  font-size: 2rem !important;
  line-height: 1.3 !important;
  font-weight: bold !important;
  margin: 0 0 0.875rem 0 !important;
}

main.cocon-archive-main h3,
.cocon-single-wrapper h3 {
  font-size: 1.1rem !important;
  line-height: 1.4 !important;
  font-weight: bold !important;
  margin: 0 0 0.75rem 0 !important;
}

main.cocon-archive-main p,
.cocon-single-wrapper p {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  margin: 0 0 1rem 0 !important;
}

main.cocon-archive-main ul,
main.cocon-archive-main ol,
.cocon-single-wrapper ul,
.cocon-single-wrapper ol {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  margin: 0 0 1rem 0 !important;
  padding-left: 2rem !important;
}

main.cocon-archive-main li,
.cocon-single-wrapper li {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  margin: 0 0 0.5rem 0 !important;
}

/* Note: Link styling is handled by specific selectors:
   - .cocon-entry-content a (content links - already styled below)
   - .cocon-card__title a (card titles - no underline)
   - .cocon-breadcrumbs a (breadcrumbs)
   - .cocon-toc-link (TOC links)
   - .cocon-level-3-link, .cocon-level-4-link (navigation links)
   - etc.
   No global link styling to avoid affecting navigation/structural links.
 */

/* ==========================================================================
   1. ARCHIVE PAGE LAYOUT
   ========================================================================== */

main.cocon-archive-main {
  padding: 80px 20px;
  background: #fdfaf5;
  /* Scoped scroll behavior - only affects this container */
}

.cocon-archive-main,
.cocon-single-wrapper {
  scroll-behavior: smooth;
}

.cocon-section {
  margin: 50px auto;
  max-width: 1100px;
  clear: both;
}

/* Legacy class support */
.lrm-section {
  margin: 50px auto;
  max-width: 1100px;
  clear: both;
}

/* ==========================================================================
   2. TABLE OF CONTENTS (Archive Page)
   ========================================================================== */

.cocon-toc-container {
  border: 3px solid #333;
  border-radius: 20px;
  padding: 25px;
  margin: 40px auto;
  position: relative;
  background: #fff;
  max-width: 1100px;
  box-sizing: border-box;
  float: none;
}

.cocon-toc-title {
  position: absolute;
  top: -15px;
  left: 40px;
  background: #fdfaf5;
  padding: 0 15px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.cocon-toc-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.cocon-toc-item {
  list-style: none;
}

.cocon-toc-link {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  text-align: center;
  display: block;
}

.cocon-toc-link:hover {
  opacity: 0.8;
}

.cocon-toc-icon {
  display: block;
  height: 50px;
  width: auto;
  margin: 0 auto 10px;
  object-fit: contain;
}

/* ==========================================================================
   3. CARDS (Level 1 & 2)
   ========================================================================== */

article.cocon-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cocon-card.cocon-level-1 {
  border-radius: 15px;
}

.cocon-card.cocon-level-1 .cocon-card__media {
  line-height: 0;
}

.cocon-card.cocon-level-1 .cocon-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cocon-card.cocon-level-2 {
  border-radius: 15px 15px 0 0;
}

.cocon-card__body {
  padding: 0 15px;
}

.cocon-card__title {
  line-height: 1.2;
  margin-bottom: 25px;
  margin-top: 0;
}

.cocon-card__title a {
  text-decoration: none;
  color: #333;
  font-size: 1.8rem;
  line-height: 1.2;
}

.cocon-card__title a:hover {
  color: #555;
}

.cocon-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cocon-card__media {
  display: block;
  overflow: hidden;
}

@media (max-width: 768px) {
  article.cocon-card {
    grid-template-columns: 1fr;
  }

  .cocon-card__title a {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   4. LEVEL 3 LIST
   ========================================================================== */

.cocon-level-3-list-wrap {
  background: #f5f5f5;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
  border-top: 1px solid #ddd;
}

.cocon-level-3-item {
  list-style: none;
  border-top: 1px solid #ddd;
}

.cocon-level-3-item:first-child {
  border-top: none;
}

.cocon-level-3-link {
  display: flex;
  gap: 25px;
  align-items: center;
  padding: 15px 25px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.cocon-level-3-link:hover {
  background: #eaeaea;
}

.cocon-level-3-img {
  width: 120px;
  height: 75px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}

.cocon-level-3-link h3 {
  margin: 0;
  font-size: 1.4rem;
}

/* ==========================================================================
   5. LEVEL 4 LIST
   ========================================================================== */

.cocon-level-4-list {
  margin: 0 0 0 165px;
  padding: 0 25px 15px 0;
  list-style: none;
  border-top: 1px dashed #ddd;
}

.cocon-level-4-item {
  padding: 6px 0;
  list-style: none;
}

.cocon-level-4-link {
  font-size: 1.15rem;
  text-decoration: none;
  color: #555;
  display: inline-block;
}

.cocon-level-4-link::before {
  content: "↳ ";
  margin-right: 6px;
  font-size: 1.2rem;
}

.cocon-level-4-link:hover {
  color: #000;
}

@media (max-width: 768px) {
  .cocon-level-4-list {
    margin-left: 20px;
  }
}

/* ==========================================================================
   6. SINGLE POST LAYOUT
   ========================================================================== */

.cocon-single-wrapper {
  max-width: 850px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #333;
  box-sizing: border-box;
}

/* ==========================================================================
   7. BREADCRUMBS
   ========================================================================== */

.cocon-breadcrumbs {
  font-size: 1rem;
  color: #888;
  margin-bottom: 20px;
  text-transform: none;
}

.cocon-breadcrumbs a {
  color: #888;
  text-decoration: none;
}

.cocon-breadcrumbs a:hover {
  text-decoration: underline;
}

.cocon-breadcrumbs .sep,
.cocon-breadcrumbs__sep {
  margin: 0 8px;
  font-size: 0.7rem;
}

.cocon-breadcrumbs .current,
.cocon-breadcrumbs__current {
  color: #333;
  font-weight: 500;
}

/* ==========================================================================
   8. POST HEADER & META
   ========================================================================== */

.cocon-post-header {
  margin-bottom: 40px;
  text-align: center;
}

.cocon-post-header h1 {
  margin-bottom: 15px;
  font-size: 2.5rem;
  line-height: 1.2;
}

.cocon-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cocon-featured-image {
  margin: 30px 0;
}

.cocon-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   9. RELATED SIBLINGS GRID
   ========================================================================== */

.cocon-related-wrap {
  margin-top: 60px;
  border-top: 1px solid #eee;
  padding-top: 40px;
}

.cocon-related-title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 20px;
}

.cocon-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.cocon-related-card {
  transition: transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.cocon-related-card:hover {
  transform: translateY(-5px);
}

.cocon-related-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.cocon-related-card-title,
.cocon-related-card__title {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 0;
}

@media (max-width: 768px) {
  .cocon-related-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   10. AUTHOR BOX
   ========================================================================== */

.cocon-author-box {
  margin-top: 80px;
  padding: 0;
  background: #f7f7f7;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cocon-author-box-top {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.cocon-author-img img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  flex-shrink: 0;
}

.cocon-author-info {
  flex: 1;
  padding: 15px;
}

.cocon-author-name {
  margin: 0 0 5px 0;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  font-family: Georgia, serif;
}

.cocon-author-job-title {
  margin: 0 0 15px 0;
  font-size: 1.1rem;
  font-weight: normal;
  color: #666;
  font-family: Georgia, serif;
  font-style: italic;
}

.cocon-author-bio {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 1.3rem;
  line-height: 1.6;
  font-family: Georgia, serif;
}

.cocon-author-bio p:last-child {
  margin-bottom: 0;
}

.cocon-author-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #0077b5;
  font-size: 1rem;
}

.cocon-author-linkedin img {
  width: 20px;
  height: 20px;
  border-radius: 0;
}

.cocon-author-linkedin:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .cocon-author-box-top {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
  }

  .cocon-author-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-top: 15px;
  }

  .cocon-author-name {
    text-align: center;
  }

  .cocon-author-job-title {
    text-align: center;
  }

  .cocon-author-bio {
    text-align: left;
  }
}

/* ==========================================================================
   11. POST CONTENT LINKS
   ========================================================================== */

.cocon-entry-content a {
  color: #a67c52;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.cocon-entry-content a:hover {
  color: #8a6441;
  text-decoration-thickness: 2px;
}

/* ==========================================================================
   12. QUICK SUMMARY BOX
   ========================================================================== */

.cocon-quick-summary {
  background-color: #f5f5f5;
  border-left: 4px solid #ccc;
  padding: 1em;
  margin: 1em 0;
  border-radius: 4px;
  font-size: 1.3rem;
}

/* ==========================================================================
   13. IN-PAGE TABLE OF CONTENTS
   ========================================================================== */

.cocon-toc-inline {
  background-color: #f5f5f5;
  border: 1px solid #e0dcd5;
  border-radius: 5px;
  padding: 20px;
  margin: 30px 0;
}

.cocon-toc-inline__title {
  font-weight: bold;
  font-size: 1.3rem;
  color: #333;
  margin: 0 0 15px 0;
}

.cocon-toc-inline ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  counter-reset: cocon-toc-level1;
}

.cocon-toc-inline ul > li {
  counter-increment: cocon-toc-level1;
  counter-reset: cocon-toc-level2;
  margin-bottom: 12px;
  line-height: 1.4;
  padding-left: 0;
  position: relative;
}

.cocon-toc-inline ul > li::before {
  content: counter(cocon-toc-level1) ". ";
  font-weight: 600;
  margin-right: 8px;
  color: #333;
}

.cocon-toc-inline ul ul {
  padding-left: 30px;
  margin: 10px 0;
  counter-reset: cocon-toc-level2;
}

.cocon-toc-inline ul ul > li {
  counter-increment: cocon-toc-level2;
  position: relative;
}

.cocon-toc-inline ul ul > li::before {
  content: counter(cocon-toc-level1) "." counter(cocon-toc-level2) " ";
  font-weight: 600;
  margin-right: 8px;
  color: #333;
}

.cocon-toc-inline a {
  color: #a67c52;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.cocon-toc-inline a:hover {
  color: #8a6441;
}

/* Legacy support for #toc-container */
#toc-container {
  background-color: #f5f5f5;
  border: 1px solid #e0dcd5;
  border-radius: 5px;
  padding: 20px;
  margin: 30px 0;
}

.toc-title {
  font-weight: bold;
  font-size: 1.3rem;
  color: #333;
}

#toc-details {
  font-size: 1.3rem;
}

#toc-details summary {
  list-style: none;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
}

#toc-details summary::-webkit-details-marker {
  display: none;
}

#toc-details summary::marker {
  display: none;
}

/* Toggle Show/Hide text - icon on the right */
.toc-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-icon::after {
  content: "[Masquer]";
  font-weight: normal;
  color: #a67c52;
  font-size: 1.2rem;
  margin-left: 8px;
}

#toc-details:not([open]) .toc-icon::after {
  content: "[Afficher]";
}

/* List & Link Styling inside TOC */
#toc-container ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  counter-reset: toc-level1;
}

#toc-container ul > li {
  counter-increment: toc-level1;
  counter-reset: toc-level2;
  margin-bottom: 12px;
  line-height: 1.4;
  padding-left: 0;
  position: relative;
}

#toc-container ul > li::before {
  content: counter(toc-level1) ". ";
  font-weight: 600;
  margin-right: 8px;
  color: #333;
}

#toc-container ul ul {
  padding-left: 30px;
  margin: 10px 0;
  counter-reset: toc-level2;
}

#toc-container ul ul > li {
  counter-increment: toc-level2;
  position: relative;
}

#toc-container ul ul > li::before {
  content: counter(toc-level1) "." counter(toc-level2) " ";
  font-weight: 600;
  margin-right: 8px;
  color: #333;
}

#toc-container ul ul ul {
  padding-left: 30px;
  margin: 10px 0;
  counter-reset: toc-level3;
}

#toc-container ul ul ul > li {
  counter-increment: toc-level3;
  position: relative;
}

#toc-container ul ul ul > li::before {
  content: counter(toc-level1) "." counter(toc-level2) "." counter(toc-level3)
    " ";
  font-weight: 600;
  margin-right: 8px;
  color: #333;
}

#toc-container li {
  margin-bottom: 12px;
  line-height: 1.4;
}

#toc-container a {
  color: #a67c52;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

#toc-container a:hover {
  color: #8a6441;
}

#toc-details nav {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .cocon-toc-inline,
  #toc-container {
    padding: 15px;
    font-size: 1rem;
  }
}

/* ==========================================================================
   14. FAQ ACCORDION
   ========================================================================== */

details.cocon-faq {
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
}

details.cocon-faq summary {
  background-color: #f5f0e8;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: background-color 0.2s ease;
}

details.cocon-faq summary:hover {
  background-color: #ede8e0;
}

details.cocon-faq summary::-webkit-details-marker {
  display: none;
}

details.cocon-faq summary::marker {
  display: none;
}

details.cocon-faq summary::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #666;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

details.cocon-faq[open] summary::after {
  transform: rotate(180deg);
}

details.cocon-faq[open] summary {
  border-radius: 8px 8px 0 0;
}

details.cocon-faq > div,
details.cocon-faq > p {
  background-color: #ffffff;
  padding: 20px;
  margin: 0;
  border-radius: 0 0 8px 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

details.cocon-faq > div p,
details.cocon-faq > div ul,
details.cocon-faq > div ol {
  margin: 0 0 12px 0;
}

details.cocon-faq > div p:last-child,
details.cocon-faq > div ul:last-child,
details.cocon-faq > div ol:last-child {
  margin-bottom: 0;
}

/* Legacy support for .faq class */
details.faq {
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
}

details.faq summary {
  background-color: #f5f0e8;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: background-color 0.2s ease;
}

details.faq summary:hover {
  background-color: #ede8e0;
}

details.faq summary::-webkit-details-marker {
  display: none;
}

details.faq summary::marker {
  display: none;
}

details.faq summary::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #666;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

details.faq[open] summary::after {
  transform: rotate(180deg);
}

details.faq[open] summary {
  border-radius: 8px 8px 0 0;
}

details.faq > div,
details.faq > p {
  background-color: #ffffff;
  padding: 20px;
  margin: 0;
  border-radius: 0 0 8px 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

details.faq > div p,
details.faq > div ul,
details.faq > div ol {
  margin: 0 0 12px 0;
}

details.faq > div p:last-child,
details.faq > div ul:last-child,
details.faq > div ol:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   15. CTA COMPONENT
   ========================================================================== */

.cocon-cta-wrapper {
  max-width: 1100px;
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cocon-cta-top {
  background-color: #943840;
  padding: 30px 40px;
  color: #ffffff;
}

.cocon-cta-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.cocon-cta-title-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.cocon-cta-title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  font-family: Georgia, serif;
}

.cocon-cta-description {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
  font-family: Georgia, serif;
}

.cocon-cta-bottom {
  background-color: #f5f5f5;
  padding: 20px 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cocon-cta-button {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: Georgia, serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  transition: opacity 0.2s ease;
  color: #333;
}

.cocon-cta-button:hover {
  opacity: 0.8;
}

.cocon-cta-button-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.cocon-cta-button-icon.rotated {
  transform: rotate(180deg);
}

.cocon-cta-content-wrapper {
  background-color: #ffffff;
  padding: 0 40px;
  border-top: 2px solid #f5f5f5;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease-out;
}

.cocon-cta-content-wrapper.expanded {
  max-height: 2000px;
  padding: 30px 40px;
  transition:
    max-height 0.3s ease-in,
    padding 0.3s ease-in;
}

@media (max-width: 768px) {
  .cocon-cta-top,
  .cocon-cta-bottom {
    padding: 20px;
  }

  .cocon-cta-content-wrapper {
    padding: 0 20px;
  }

  .cocon-cta-content-wrapper.expanded {
    padding: 20px;
  }

  .cocon-cta-title {
    font-size: 1.5rem;
  }

  .cocon-cta-description {
    font-size: 1rem;
  }
}

/* ==========================================================================
   16. FAQ SECTION WRAPPER
   ========================================================================== */

.cocon-faq-section {
  margin: 40px 0;
}

.cocon-faq-section h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px dotted #ccc;
  color: #333;
}

/* Legacy support for aria-labelledby FAQ sections */
section[aria-labelledby="faq-heading"] {
  margin: 40px 0;
}

section[aria-labelledby="faq-heading"] h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px dotted #ccc;
  color: #333;
}

.cocon-entry-content ul {
  list-style: disc !important;
  padding-left: 1.5em;
}

.“cocon-content-image” {
  display: none;
}

.cocon-entry-content img {
  display: none;
}
