  /* Newsletter list container */
  .laposta-list {
    max-width: 900px;
    margin: 0 auto;
    font-family: "OpenSans", sans-serif;
  }

  /* Loading and error states */
  .laposta-status {
    text-align: center;
    padding: 40px 20px;
    color: var(--swatch-var-5466);
    font-size: 16px;
  }
  .laposta-status .fa {
    margin-right: 8px;
  }

  /* Each newsletter item */
  .laposta-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    margin-bottom: 12px;
    background-color: #fff;
    border: 1px solid rgba(3, 145, 147, 0.15);
    border-radius: 10px;
    transition: all 0.25s ease;
    text-decoration: none;
    color: inherit;
    min-height: 130px;
  }
  .laposta-item:hover {
    border-color: var(--swatch-var-3041);
    box-shadow: 0 4px 16px rgba(0, 84, 85, 0.12);
    transform: translateY(-2px);
    text-decoration: none;
  }

  /* Thumbnail column */
  .laposta-thumb {
    flex: 0 0 90px;
    height: 108px;
    margin-right: 22px;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--swatch-var-6110);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .laposta-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .laposta-thumb-placeholder {
    color: var(--swatch-var-5466);
    font-size: 32px;
    opacity: 0.5;
  }

  /* Body column — date on top, name below */
  .laposta-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  /* Date — leading */
  .laposta-date {
    font-family: "SpecialElite-Regular", monospace;
    color: var(--swatch-var-3041);
    line-height: 1.1;
  }
  .laposta-date .laposta-day {
    font-size: 22px;
    font-weight: 400;
  }

  /* Name */
  .laposta-name {
    font-family: "OpenSans-SemiBold", sans-serif;
    font-size: 17px;
    line-height: 1.35;
    color: var(--swatch-var-3741);
    word-break: break-word;
  }

  /* Arrow */
  .laposta-arrow {
    flex: 0 0 30px;
    text-align: right;
    color: var(--swatch-var-3041);
    font-size: 18px;
    transition: transform 0.25s ease;
    margin-left: 12px;
  }
  .laposta-item:hover .laposta-arrow {
    transform: translateX(4px);
  }

  /* Pagination */
  .laposta-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .laposta-page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    background-color: #fff;
    border: 2px solid var(--swatch-var-3041);
    color: var(--swatch-var-3041);
    font-family: "OpenSans-SemiBold", sans-serif;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .laposta-page-btn:hover:not(:disabled) {
    background-color: var(--swatch-var-3041);
    color: #fff;
  }
  .laposta-page-btn.is-active {
    background-color: var(--swatch-var-3041);
    color: #fff;
  }
  .laposta-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  /* Responsive */
  @media (max-width: 575px) {
    .laposta-item {
      padding: 12px 14px;
      min-height: 0;
    }
    .laposta-thumb {
      flex: 0 0 65px;
      height: 78px;
      margin-right: 12px;
    }
    .laposta-date .laposta-day {
      font-size: 18px;
    }
    .laposta-name {
      font-size: 14px;
    }
    .laposta-arrow {
      display: none;
    }
  }