/* Article Page Styling */

.single .content-post .content-body {
    margin-bottom: 3rem;
  
    h2 {
      font-size: 2rem;
      font-weight: 700;
      margin: 2.5rem 0 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid #f0f0f0;
      color: #222;
    }
  
    h3 {
      font-size: 1.8rem;
      font-weight: 600;
      margin: 2rem 0 1rem;
      color: #333;
    }
  
    h4 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 1.5rem 0 1rem;
      color: #444;
    }
  
    iframe {
      max-width: 100%;
      margin: 1.5rem 0;
      height: 360px;
      border-radius: 4px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      @media (max-width: 768px) {
        height: 160px;
      }
    }

    p {
      font-size: 1.6rem;
      line-height: 1.8;
      margin-bottom: 1.6rem;
    }
  
    blockquote {
      margin: 2rem 0;
      padding: 1.5rem 2rem;
      background-color: #f9f9f9;
      border-left: 4px solid #ddd;
      font-style: italic;
      color: #dddddd;
      position: relative;
  
      &::before {
        content: '"';
        font-size: 3rem;
        color: #ddd;
        position: absolute;
        left: 10px;
        top: 10px;
           line-height: 1.4;
      }
  
      p:last-child {
        margin-bottom: 0;
      }
    }
  
    ul, ol {
      margin: 1.5rem 0 1.5rem 1.5rem;
      padding-left: 1rem;
    }
  
    ul li, ol li {
      margin-bottom: 0.8rem;
    }
  
    ul {
      list-style-type: disc;
  
      ul {
        list-style-type: circle;
        margin: 0.8rem 0 0.8rem 1.5rem;
      }
    }
  
    ol {
      list-style-type: decimal;
  
      ol {
        list-style-type: lower-alpha;
        margin: 0.8rem 0 0.8rem 1.5rem;
      }
    }
  
    table {
      width: 100%;
      border-collapse: collapse;
      margin: 2rem 0;
  
      th, td {
        padding: 0.8rem;
        border: 1px solid #ddd;
        text-align: left;
      }
  
      th {
        background-color: #f5f5f5;
        font-weight: 600;
      }
  
      tr:nth-child(even) {
        background-color: #f9f9f9;
      }
    }
  
    pre {
      background-color: #f5f5f5;
      padding: 1rem;
      border-radius: 4px;
      overflow-x: auto;
      margin: 1.5rem 0;
      font-family: monospace;
    }
  
    code {
      background-color: #f5f5f5;
      padding: 0.2rem 0.4rem;
      border-radius: 3px;
      font-family: monospace;
      font-size: 0.9rem;
    }
  
    img {
      max-width: 100%;
      height: auto;
      margin: 1.5rem 0;
      border-radius: 4px;
    }
  
    figure {
      margin: 2rem 0;
    }
  
    figcaption {
      font-size: 0.9rem;
      color: #666;
      text-align: center;
      margin-top: 0.5rem;
    }
  
    hr {
      border: 0;
      height: 1px;
      background-color: #ddd;
      margin: 2.5rem 0;
    }
  }
  
 .group-list {
    margin-top: 4rem;
  
    h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid #f0f0f0;
    }
  
    .list {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
    }
  
    .item {
      text-decoration: none;
      color: #333;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  
      &:hover {
        transform: translateY(-5px);
      }
    }
  
    .img {
      height: 180px;
      overflow: hidden;
  
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
      }
    }
  
    .item:hover .img img {
      transform: scale(1.05);
    }
  
    .title {
      display: flex;
      justify-content: space-between;
      padding: 1rem 1rem 0.5rem;
      font-size: 0.9rem;
    }
  
    .name {
      font-weight: 600;
      color: #dddddd;
    }
  
    .date {
      color: #888;
    }
  
    .group-txt {
      padding: 0 1rem 1rem;
  
      p {
        margin: 0;
        font-weight: 400;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
  
        /* Standard property for compatibility */
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
    }
  }
  
  /* Additional article decorative elements */
  
  /* Highlighted text */
  
  .content-body {
    .highlight {
      background-color: #fffde7;
      padding: 0.2rem 0.4rem;
      border-radius: 3px;
    }
  
    .note-box {
      background-color: #f8f9fa;
      border-left: 4px solid #4285f4;
      padding: 1.5rem;
      margin: 2rem 0;
      border-radius: 0 4px 4px 0;
    }
  
    .note-box-title {
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #4285f4;
    }
  
    .warning-box {
      background-color: #fff8e1;
      border-left: 4px solid #ffb300;
      padding: 1.5rem;
      margin: 2rem 0;
      border-radius: 0 4px 4px 0;
    }
  
    .warning-box-title {
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #ffb300;
    }
  
    dl {
      margin: 1.6rem 0;
    }
  
    dt {
      font-weight: 700;
      margin-top: 1.6rem;
    }
  
    dd {
      margin-left: 1.6rem;
      margin-bottom: 1.6rem;
    }
  }
  
  /* Note box */
  
  /* Warning box */
  
  /* Definition lists */
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .group-title {
      .top {
        flex-direction: column;
        align-items: flex-start !important;
      }
  
      .date {
        margin-top: 0.5rem;
      }
  
      h1 {
        font-size: 1.5rem;
      }
    }
  
    .content-body {
      h2 {
        font-size: 1.3rem;
      }
  
      h3 {
        font-size: 1.2rem;
      }
    }
  
    .group-list .list {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .content-page {
      padding: 1rem;
    }
  
    .group-title h1 {
      font-size: 1.3rem;
    }
  
    .content-ft {
      .item {
        flex-direction: column;
        align-items: flex-start;
      }
  
      .img {
        margin-right: 0;
        margin-bottom: 0.5rem;
      }
    }
  }
  