    .main-area {
      margin-top: 0px;
    }

    /* Main Content Area */
    #primary.primary-content-area {
      max-width: 800px;
      margin: 0 auto;
      padding: 15px 5px;
      font-family: 'Helvetica Neue', sans-serif;
    }

    /* Page Head Layout Adjustments */
    .page-head {
      display: flex;
      flex-direction: column;
      margin-bottom: 15px;
      padding: 0px;
    }

    /* Post Title */
    .thunk-post-title {
      font-size: 2.2rem;
      font-weight: 600;
      margin-bottom: 20px;
      line-height: 1.2;
      letter-spacing: -0.5px;
      width: 100%;
    }

    .thunk-post-title a {
      color: #333;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .thunk-post-title a:hover {
      color: #0066cc;
    }

    /* Breadcrumbs - Separated and Aligned */
    .breadcrumbs {
      width: 100%;
      font-size: 0.85rem;
      padding: 1px 0;
      border-bottom: 1px solid #eee;
      margin-bottom: 0px;
    }

    .trail-browse {
      display: none;
    }

    .trail-items {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
    }

    .trail-item {
      display: inline;
      margin-right: 5px;
    }

    .trail-item.trail-end:after {
      content: "";
    }

    .trail-item a {
      color: #666;
      text-decoration: none;
    }

    .trail-item a:hover {
      color: #0066cc;
      text-decoration: underline;
    }

    /* Post Image */
    .thunk-post-img {
      width: 100%;
      margin-bottom: 30px;
      border-radius: 8px;
      overflow: hidden;
    }

    .thunk-post-img img {
      width: 100%;
      height: auto;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
    }

    .thunk-post-img:hover img {
      transform: scale(1.02);
    }

    /* Post Meta */
    .thunk-post-meta {
      margin-bottom: 5px;
      padding-bottom: 2px;
      border-bottom: 1px solid #eee;
      font-size: 0.9rem;
      color: #666;
    }

    .thunk-post-info {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      align-items: center;
    }

    .thunk-post-info span a {
      color: #0066cc;
      text-decoration: none;
    }

    .thunk-post-info span a:hover {
      text-decoration: underline;
    }

    /* Post Content */
    .thunk-post-excerpt {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #333;
      margin-bottom: 40px;
    }

    .thunk-post-excerpt p {
      margin-bottom: 20px;
    }

    .thunk-post-excerpt h2 {
      font-size: 1.6rem;
      margin-top: 35px;
      margin-bottom: 15px;
      color: #222;
    }

    /* Author Box */
    .authorbox {
      background-color: #f9f9f9;
      padding: 25px;
      margin: 15px 0;
      border-radius: 8px;
    }

    .thunk-author-bio {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .author-avatar img {
      border-radius: 50%;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    }

    .author-header {
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.2rem;
    }

    /* Post Navigation */
    .thunk-related-links {
      margin: 15px 0;
    }

    .post-navigation {
      padding: 15px 0;
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
    }

    .post-navigation .nav-links {
      display: flex;
      justify-content: space-between;
    }

    .post-navigation .nav-previous,
    .post-navigation .nav-next {
      max-width: 48%;
    }

    .post-navigation a {
      color: #555;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .post-navigation a:hover {
      color: #0066cc;
    }

    /* Comments Section */
    .comments-area {
      margin-top: 15px;
      border-top: 1px solid #eee;
      padding-top: 2px;
    }

    .comments-title {
      font-size: 1.4rem;
      margin-bottom: 30px;
      font-weight: 500;
    }

    .comment-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .comment-body {
      padding: 20px;
      background-color: #f9f9f9;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .comment-author img {
      border-radius: 50%;
      margin-right: 10px;
    }

    .comment-metadata {
      font-size: 0.8rem;
      color: #777;
      margin: 5px 0 15px 42px;
    }

    .comment-content {
      margin-left: 42px;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .reply {
      text-align: right;
      margin-top: 10px;
    }

    .comment-reply-link {
      background-color: #f1f1f1;
      padding: 5px 15px;
      border-radius: 20px;
      color: #555;
      text-decoration: none;
      font-size: 0.8rem;
      transition: background-color 0.3s ease;
    }

    .comment-reply-link:hover {
      background-color: #e5e5e5;
    }

    /* Comment Form */
    .comment-respond {
      margin-top: 15px;
    }

    .comment-reply-title {
      font-size: 1.3rem;
      margin-bottom: 5px;
    }

    .comment-form-comment textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 6px;
      resize: vertical;
      min-height: 150px;
      transition: border-color 0.3s ease;
    }

    .comment-form-comment textarea:focus {
      border-color: #0066cc;
      outline: none;
    }

    .form-submit input[type="submit"] {
      background-color: #0066cc;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 0.9rem;
      transition: background-color 0.3s ease;
    }

    .form-submit input[type="submit"]:hover {
      background-color: #004c99;
    }

    /* Enhanced Responsive Styles */
    @media (max-width: 992px) {
      #primary.primary-content-area {
        max-width: 100%;
        padding: 30px 15px;
      }
    }

    @media (max-width: 768px) {
      #primary.primary-content-area {
        max-width: 100%;
        padding: 10px 5px;
      }

      .thunk-post-title {
        font-size: 1.8rem;
      }

      .thunk-author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .comment-content,
      .comment-metadata {
        margin-left: 0;
      }

      .post-navigation .nav-links {
        flex-direction: column;
        gap: 15px;
      }

      .post-navigation .nav-previous,
      .post-navigation .nav-next {
        max-width: 100%;
      }
    }

    @media (max-width: 480px) {
      .thunk-post-title {
        font-size: 1.5rem;
      }

      .thunk-post-excerpt h2 {
        font-size: 1.4rem;
      }

      .thunk-post-info {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
      }

      .trail-items {
        font-size: 0.8rem;
      }

      .authorbox {
        padding: 15px;
      }
    }