      .featured-section {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        padding-bottom: 4.375rem;
      }

      .featured-section .section-header {
        margin-bottom: 0;
        padding: 2.188rem 0 0;
        border-top: 1px solid var(--color-dark-blue);
      }

      .section-heading {
        font-family: var(--font-family-heading);
        font-size: 1.75rem;
        font-weight: 400;
        line-height: 2.125rem;
        letter-spacing: 0;
        text-transform: capitalize;
        color: var(--color-text);
      }

      /* Hover Zoom Effect for Featured Post Image */
        .post-image-wrapper {
            overflow: hidden;
            display: block;
            width: 100%;
            aspect-ratio: 16 / 10;
            position: relative;
        }

        .post-image-wrapper .o_media {
            padding-bottom: 0 !important;
            height: 100% !important;
            width: 100% !important;
        }

        .post-image-wrapper .post-image {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .post-image-link:hover .post-image {
            transform: scale(1.05); /* Adjust the scale value as needed for the zoom amount */
        }

      /* Grid Layout */
      .posts-grid {
        display: flex;
        align-items: flex-start;
        gap: 2.5rem;
        width: 100%;
      }

      .posts-grid > * {
        flex: 1;
      }

      /* Post Card */
      .post-card {
        display: flex;
        flex-direction: column;
        gap: 1.875rem;
        width: 100%;
      }

      /* .post-image styles moved to .post-image-wrapper */

      /* Post Metadata */
      .post-meta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }

      .post-date {
        font-family: var(--font-family-base);
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--color-grey-2);
      }

      .post-title, .post-title a {
        font-family: var(--font-family-base);
        font-size: 1.125rem;
        font-weight: 500;
        line-height: 1.625rem;
        text-decoration: none;
      }

      /* Post Footer */
      .post-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1.25rem;
      }

      .post-category {
        font-family: var(--font-family-base);
        font-size: 1.125rem;
        font-weight: 400;
        line-height: 1.44;
        color: var(--color-blue-3);
      }

      /* Button */
      .read-more-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding: 0.5rem 1.25rem;
        border: 1px solid var(--color-light-blue);
        border-radius: 0.3125rem;
        background-color: transparent;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-family: inherit;
      }

      .read-more-btn:hover {
        background-color: rgba(0, 142, 255, 0.1);
      }

      .read-more-btn:active {
        background-color: rgba(0, 142, 255, 0.2);
      }

      .btn-text {
        font-family: var(--font-family-base);
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.5;
        color: var(--color-text);
        white-space: nowrap;
      }

      .btn-arrow {
        width: 1.3125rem;
        height: auto;
        flex-shrink: 0;
      }

      /* Divider */
      .divider {
        display: none;
        flex: 0 0 auto;
        width: 1px;
        height: 38.25rem;
        background: var(--color-dark-blue);
      }

      /* Responsive Design */

      /* Tablet and Desktop (1024px and above) */
      @media (min-width: 64rem) {

        .featured-section {
            padding-bottom: 8.75rem;
            gap: 3.75rem;
        }

        .section-heading {
          font-size: 3.75rem;
          font-weight: 500;
          line-height: 4.25rem;
        }

        .featured-section .section-header {
        padding: 4.25rem 0 0;
        }

        .post-date {
        font-size: 1.125rem;
        line-height: 1.44;
      }

        .post-title, .post-title a {
        font-size: 1.5rem;
        line-height: 1.33;
      }

        .posts-grid {
          gap: 2.5rem;
        }

        .divider {
          display: block;
        }

        .post-image-wrapper {
          aspect-ratio: auto;
          height: 25rem;
        }

        .post-footer {
          padding-top: 2.188rem;
        }
      }

      /* Tablet (768px to 1023px) */
      @media (min-width: 48rem) and (max-width: 63.938rem) {
        .section-heading {
          font-size: 2.5rem;
          font-weight: 500;
          line-height: 4.25rem;
        }

        .post-image-wrapper {
          aspect-ratio: auto;
          height: 20rem;
        }

        .posts-grid {
          gap: 2rem;
        }
      }

      @media (max-width: 63.938rem) {
        .posts-grid {
          flex-direction: column;
          gap: 3.75rem;
        }
      }

      /* Mobile (below 768px) */
      @media (max-width: 47.938rem) {
        .post-category {
          font-size: 1rem;
          line-height: 1.5rem;
        }
        
        .post-meta,
        .post-footer {
          padding-left: 0;
          padding-right: 0;
        }

        .post-image-wrapper {
          width: 100%;
          aspect-ratio: 330 / 206;
          height: auto;
        }

        .post-footer {
          flex-direction: column;
          align-items: flex-start;
        }
      }