@charset "utf-8";

/* Preserved from MemberBenefit_page.jsp; only responsive integration rules were added. */
.policy_container {
   background: #fff;
   border-radius: 8px;
   margin-top: 25px;
 }
 .policy_container h2 {
   margin-bottom: 10px;
   font-size: 20px;
 }
   .section {
   margin-bottom: 40px;
 }
   .items {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 10px;
 }
   .item {
   height: 130px;
   display: flex;
   align-items: center;
   padding: 12px 12px 12px 12px;
   border-radius: 8px;
   border: 1px solid #dcdcdc;
 }
   .item-icon {
   border: 1px solid #dcdcdc;
   width: 90px;
   height: 90px;
   border-radius: 50%;
   margin-right: 15px;
   display: flex;
   align-items: center;
   justify-content: center;
 }
   .item-text {
   text-align: left;
 }
   .item-text h3 {
   font-size: 16px;
   margin: 0;
   color: #444;
   font-weight: 500;
 }
   .item-text p {
   font-size: 14px;
   margin: 5px 0 0;
   color: #555555;
   line-height: 22px;
 }
   .benefit-table-wrap {
   position: relative;
   margin-bottom: 54px;
   border-radius: 12px;
   overflow: hidden;
 }
   .benefit-table-wrap::before,
 .benefit-table-wrap::after {
   content: "";
   position: absolute;
   top: 0;
   bottom: 0;
   z-index: 1;
   width: 1px;
   background: #fff;
   pointer-events: none;
 }
   .benefit-table-wrap::before {
   left: 0;
 }
   .benefit-table-wrap::after {
   right: 0;
 }
   .benefit-table {
   width: 100%;
   border-collapse: collapse;
   table-layout: fixed;
   border-bottom: 2px solid #244b8f;
   text-align: center;
 }
   .benefit-table th,
 .benefit-table td {
   height: 27px;
   padding: 3px 7px;
   border: 1px solid #8f8f8f;
   color: #222;
   font-size: 13px;
   font-weight: 400;
   line-height: 1.28;
   vertical-align: middle;
 }
   .benefit-table thead th {
   height: 39px;
   padding: 0 8px;
   border-color: #cbd8ef;
   background: #2f5597;
   color: #fff;
   font-size: 14px;
   font-weight: 700;
   line-height: 1.25;
 }
   .benefit-table thead tr:first-child th:first-child {
   background: #082a67;
   border-top-left-radius: 5px;
 }
   .benefit-table thead tr:first-child th:last-child {
   border-top-right-radius: 5px;
 }
   .benefit-table thead tr:nth-child(2) th {
   height: 31px;
 }
   .benefit-table .benefit-category {
   background: #c7d7f2;
   color: #082a67;
   font-weight: 700;
   line-height: 1.32;
 }
   .benefit-table .benefit-main {
   font-weight: 500;
 }
   .benefit-table .nowrap {
   white-space: nowrap;
 }

@media (max-width: 900px) {
  .benefit-table-wrap {
    overflow-x: auto;
    border-radius: 8px;
  }

  .benefit-table {
    min-width: 920px;
  }

  .items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .item {
    height: auto;
    min-height: 130px;
  }

  .item-icon {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
  }

  .item-icon img {
    max-width: 48px;
    max-height: 48px;
  }
}
