.product-offer {
  overflow-x: hidden;
  margin-bottom: 120px;

  @media screen and (max-width: 768px) {
    margin-bottom: 60px;
  }

  .product-offer__head {

  }

  .product-offer__body {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;

    @media screen and (max-width: 768px) {
      gap: 12px;
    }

    .product-offer__tile {
      padding: 24px 16px;
      width: calc((100% - 20px * 3) / 4);
      word-break: break-word;
      background-color: white;
      align-self: stretch;

      @media screen and (max-width: 768px) {
        width: calc(50% - 12px / 2);
      }

      .product-offer__tile--icon {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        color: var(--mymoods-gray);

        > svg {
          width: 100%;
          height: 100%;
        }
      }

      .product-offer__tile--content {
        font-size: 18px;
        font-weight: var(--mymoods-font-weight-medium);
        text-align: center;
        line-height: 1.2;

        @media screen and (max-width: 768px) {
          font-size: 16px;
        }

        .sp_only {
          display: none;

          @media screen and (max-width: 480px) {
            display: block;
          }
        }

        .bold {
          font-weight: var(--mymoods-font-weight-bold);
        }

        .large {
          font-size: 24px;

          @media screen and (max-width: 375px) {
            font-size: 20px;
          }
        }

        .small {
          font-size: 12px;

          @media screen and (max-width: 768px) {
            font-size: 10px;
          }
        }

        .content-button-wrapper {
          display: flex;
          justify-content: center;
          align-self: center;
          padding-top: 16px;

          .cta-button {
            padding: 16px;
            height: 48px;
            display: flex;
            align-items: center;
            font-family: var(--mymoods-font-poppins), sans-serif;
            font-weight: var(--mymoods-font-weight-bold);
            font-size: 18px;
            background-color: white;
            color: var(--mymoods-blue);
            border: 1px solid var(--mymoods-blue);
            border-radius: 10px;
            text-decoration: none;
            transition: .3s;

            &.line {
              color: var(--line-color);
              border: 1px solid var(--line-color);

              &:hover {
                background-color: var(--line-color);
                color: white;
              }
            }

            @media screen and (max-width: 768px) {
              padding: 12px;
              height: 40px;
              font-size: 16px;
            }

            @media screen and (max-width: 375px) {
              padding: 10px;
              font-size: 14px;
            }

            &:hover {
              background-color: var(--mymoods-blue);
              color: white;
            }
          }
        }
      }
    }
  }
}