@charset "utf-8";
/* CSS Document */
/* Tabs scroll offset for fixed header */
.tabs-content[id] {
    scroll-margin-top: 280px;
}

/*--------reset----------*/
.text_purple_customize{
 color:#8071b3
}
.text_mauve_customize{
 color:#ae6eab
}
.text_heather_customize{
 color:#9f79a7
}
.text_caramel_customize{
 color:#be9357
}
.text_grassgreen_customize{
 color:#8fd56b
}
.text_greenblue_customize{
 color:#29927d
}
.text_green_customize{
  color: #27ae60;
}
.text_rosepink_customize{
 color:#c04189
}
.text_warmpeach_customize{
  color:#eb795a;
}
.text_peachpink_customize{
 color:#d46982
}
.text_warmcoral_customize{
 color: #f4846c;
}
.text_greenblue_list_customize{
color:#42a395
}
.text_bluegreen_customize{
 font-size: 18px;   
 color:#14899c
}
.color-blue-secondary{ 
    color:#2391DA;
}
.sub-title--lg{
  font-size:20px;
}
.sub-title--md{
  font-size:18px;
}
@media (max-width: 767px) {
.sub-title--lg{
  font-size: 18px;
}
.sub-title--md{
  font-size:16px;
}
}
p.note{
  font-size: 14px;
  color: #a3a3a3;
}
@media (max-width: 767px) {
  p.note{
  font-size: 13px;
}
}
p span {
    display: inline !important;
    white-space: normal;
    word-break: break-word;
}
a:not(.header__logo):not(.btn) span {
    text-decoration: underline;
    text-decoration-color: currentColor;
}
.esg-card-swiper {
  position: relative;
  padding-bottom: 40px; 
  overflow-x: hidden; 
  max-width: 100%;    
  box-sizing: border-box;
  --swiper-navigation-size: 24px;
   opacity: 0;
  transition: opacity 0.1s ease;
}

.esg-card-swiper.swiper-initialized {
  opacity: 1;
}

.esg-card-swiper .swiper-wrapper {
  padding-bottom: 20px;
  box-sizing: border-box;
}

.esg-card-swiper .swiper-slide {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  user-select: none;
  box-sizing: border-box;
  min-height: 400px;
  height: auto;
}
@media (max-width: 767px) {
  .esg-card-swiper .swiper-slide{
   min-height: 360px;
}
}
.esg-card-swiper .swiper-slide img {
  pointer-events: none;
  -webkit-user-drag: none; 
  user-select: none;
}

.esg-card__icon img {
  width: 72px;
  height: 72px;
}

.esg-card__title {
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 24px;
}

.esg-card__subtitle {
 display: none;
  color: #666;
  margin-top: 16px;
  margin-bottom: 4px;
}
.esg-card__desc {
  box-sizing: border-box;
  max-width: 280px; 
  margin: 0 auto;
  padding: 0 16px;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  margin: 0 auto;
  max-height: calc(1.6em * 4); 
  overflow-y: auto;
  scrollbar-width: thin; 
  scrollbar-color: #9c9c9c #f0f0f0
}
.esg-card__desc::-webkit-scrollbar {
  width: 6px;
}
.esg-card__desc::-webkit-scrollbar-thumb {
  background-color: #9c9c9c;
  border-radius: 3px;
}
.esg-card__desc::-webkit-scrollbar-track {
  background: #f0f0f0;
}
@media (max-width: 767px) {
  .esg-card__desc{
  max-width: 320px;
  font-size: 14px;
  max-height: calc(1.6em * 4);
}
}
.esg-card__more {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  display: inline-block;
  color: #666666;
  font-weight: 500;
  background-color: #FFF;
  padding: 8px 16px;
  margin: 0 auto;
  margin-top: auto;
  margin-bottom: 16px;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  max-width: 200px; 
  text-align: center;
  transition: all 0.3s ease;
}
.esg-card__more:hover {
  background-color: #335f74;
  color: #FFF;
  padding-right:24px;
}
.esg-card__more:focus {
  outline: none;
}

.esg-card__more:focus-visible {
  box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.3);
}

.esg-card-swiper .swiper-scrollbar {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(0,0,0,0.1);
  border-radius: 3px;
  z-index: 10;
}

.esg-card-swiper .swiper-scrollbar-drag {
  background: #c9c9c9;
  border-radius: 3px;
}

.swiper-button-prev,
.swiper-button-next {
  --swiper-navigation-color: #808080;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}


.popup-content {
  width: 90%;
  max-width: 500px;
  max-height: 85vh;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  animation: popupFadeIn 0.25s ease-out;
}


@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.popup-header {
  position: relative;  
  padding: 32px 20px 56px;
  text-align: center;
  background: var(--header-bg, #e9eff7);
  clip-path: ellipse(100% 80% at 50% 10%);
  flex-shrink: 0;
 
}


.popup-icon img {
  width: 64px;
  height: auto;
  margin-bottom: 12px;
}


.popup-title {
  font-size: 22px;
  font-weight: 600;
  color: #2b2b2b;
}


.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
}

.popup-close:hover {
  color: #3b3b3b;
}


.popup-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 24px;
  background: #fff;
}


.popup-section {
  margin-bottom: 32px;
  padding-bottom: 24px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}
.popup-section:last-child {
  border-bottom: none;
}


.popup-section h4 {
  display: inline-block;
  margin: 0 auto 16px;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #9bb0db;
  border-radius: 999px;
  text-align: center;
}


.popup-section ul {
  list-style: disc;
  list-style-position: outside; 
  padding-left: 1.2em;
  max-width: 360px;
  margin: 0 auto;
  text-align: left;
}
.popup-section ul ul {
  list-style: none; 
}
.popup-section ul ul li::before {
  content: '▸ ';
  color: #555; 
}
.popup-section li {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 6px;
}


.popup-section.two-col ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  list-style-position: outside;
  padding-left: 20px; 
  max-width: 360px;
  margin: 0 auto;
  column-gap: 88px;
}


@media (max-width: 767px) {
  .popup-content {
    max-width: 95%;
    max-height: 90vh;
  }
  .popup-title {
    font-size: 18px;
  }
  .popup-section h4 {
    font-size: 15px;
  }
  .popup-section li {
    font-size: 13px;
  }
}


.popup-body::-webkit-scrollbar {
  width: 8px;
}
.popup-body::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.1);
  border-radius: 4px;
}

.tabs__item.active .btn--outline.tab_e{
  background-color:#269e4e;
  color:#fff
}
.btn--outline.tab_e{
border: 1px solid #269e4e;
color: #269e4e;
}
.tabs__item.active .btn--outline.tab_s{
  background-color:#eb795a;
  color:#fff
}
.btn--outline.tab_s{
border: 1px solid #eb795a;
color: #eb795a;
}
.tabs__item.active .btn--outline.tab_g{
  background-color:#0d6fa7;
  color:#fff
}
.btn--outline.tab_g{
border: 1px solid #0d6fa7;
color: #0d6fa7;
}
.tab_e,
.tab_s,
.tab_g {
  display: flex;
  flex-direction: column; /* 上 icon，下文字 */
  align-items: center;
  justify-content: center;
}

.tab-icon {
  width: 40px; 
  height: 40px;
  margin: 0 4px;
}
.tab-icon path {
  stroke-width: 2;
}
.btn_content_more a{
    padding: 8px 32px;
}
.esg-content__sub-title.list{
    background-color: #FDF9EB;
    padding: 10px 10px;
    font-weight:500;
}
.esg-content__sub-title.list2{
    background-color: #FDF9EB;
    text-align: center;
    padding: 10px 10px;
    font-weight:500;
}
.esg-content__chart-title{
    font-size: 20px;
    text-align: center;
    margin: 10px 10px;
    font-weight:500;
}
@media (max-width: 767px) {
  .esg-content__chart-title{
    font-size: 18px;
  }
}
.img-wrap {
  flex: 1 1 0;       
  box-sizing: border-box; 
}
.img-wrap > img {
  width: 100% !important;
  height: auto !important;
  display: block;
}
.img-desc {
  margin-top: 8px;
  color:#29927d;
  text-align: left;
  line-height: 1.5;
}
.data-card-list{
    text-align: left;
}
.list-content{
    padding: 0 10px;
}
.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  /* border: 1px solid #d9b45a; */
  border-radius: 8px; 
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
  text-align: center;
}
.info-card .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.info-table {
  width: 80%;
  border-collapse: collapse;
  text-align: center;
  font-size: 16px;
  line-height: 1.8rem;
}
.info-table th {
  width: 40%;
  padding: 8px 0;
  font-weight: 600;
  text-align: left;
}
.info-table td {
  padding: 8px 0;
  color: #333333;
  text-align: left;
}
.info-table tr {
  border-bottom: 1px solid #d8d8d8;
}
.info-card .note {
  font-size: 12px;
  color: #666;
  margin-top: 15px;
  text-align: right;
  width: 82%;
  margin-bottom: 15px;
}

.info-card__icon {
  width: 80px; 
  height: 80px; 
  background-color: #c6a75c; 
  border-radius: 50%; 
  display: flex;
  justify-content: center;
  align-items: center; 
  margin-top: 15px;
  margin-bottom: 15px;
}
.info-card__icon img {
  width: 50px;
  height: 50px; 
  padding: 0;
  margin: 0;
}
.info-card__title {
  font-size: 20px;
  font-weight: 600;
  color: #c6a75c;
  margin-top: 10px;
  margin-bottom: 10px;
}
.info-card__description {
  font-size: 16px;
  text-align: left;
  color: #555;
  margin-bottom: 10px;
}
@media (max-width: 820px) {
  .welfare-list .grid-cols-4{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-section .grid-cols-4{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .welfare-list .grid,.cultivation-list .grid,.process-section .grid{
    gap: 1.2rem;
  }
  .info-card {
    padding: 15px;
  }
 .info-table {
  width: 90%;
  }
  .info-table th {
    width: 30%;
  }
  .info-card .note {
    text-align: center;
    width: 100%;
}
  .info-card__icon {
    width: 60px; 
    height: 60px; 
  }

  .info-card__icon img {
    width: 40px;
    height: 40px; 
  }

  .info-card__title {
    font-size: 18px;
  }

  .info-card__description {
    font-size: 14px; 
  }
}
ol.hanging-list {
  list-style: none;
  padding-left: 0;
  counter-reset: item;  
}

ol.hanging-list li {
  counter-increment: item;
  padding-left: 1em;  
  text-indent: -1.1em;   
  margin-bottom: 0.8em;  
  line-height: 1.6;
}

ol.hanging-list li::before {
  content: counter(item) ". ";
}


.kpi{
  position: relative;
  background: linear-gradient(
    to right,
    rgba(122, 127, 177, 0.20) 0%,
    rgba(122, 127, 177, 0.03) 100%);
  padding: 30px 30px;
  overflow: hidden;
}
.kpi::before {
  content: "";
  position: absolute;
  top: -20px;          
  right: -40px;        
  width: 360px;       
  height: 360px;
  background: url("../images/icon/kpi_icon.svg") no-repeat center;
  background-size: contain;
  opacity: 0.15;      
  pointer-events: none; 
}

@media (max-width: 768px) {
  .kpi::before {
    display: none;
  }
}
.kpi ul {
   list-style: disc;        
  padding-left: 0;
}

.kpi li {
  list-style-position: inside; 
  color: #000000;
  margin-bottom: 16px;        
  padding: 8px 32px;         
  border-radius: 50px;        
  line-height: 1.5; 
  text-indent: -1.5em;          
}
.kpi li span {
  font-size: 1.4rem;      
  font-weight: 700;
  color: #c04189;     
}

/*mb-img gap*/
@media (max-width: 767px) {
  .gap-sm-2{
    gap: 0.5rem;
  }
  .gap-sm-4 {
    gap: 1rem;
  }
}
/*procurement-policy*/
.esg-content__pic-half-block.block_customize,.esg-content__pic-half-block.block_customize2,.esg-content__pic-half-block.block_customize3 {
    display: grid;
    grid-template-columns: auto 1fr; 
    gap: 32px;
    align-items: center;
}
@media (min-width: 1025px) {
    .esg-content__pic-half-block.block_customize {
        grid-template-columns: 2fr 1fr; 
    }
    .esg-content__pic-half-block.block_customize2 {
        grid-template-columns: 2fr 2fr;
    }
     .esg-content__pic-half-block.block_customize3 {
        grid-template-columns: 1fr 2fr;
    }
    .esg-content__pic-half-block.block_customize img,.esg-content__pic-half-block.block_customize2 img,.esg-content__pic-half-block.block_customize3 img {
        max-width: 100%; 
    }
}
@media (max-width: 1024px) {
    .esg-content__pic-half-block.block_customize,.esg-content__pic-half-block.block_customize2,.esg-content__pic-half-block.block_customize3 {
        grid-template-columns: 1fr; 
    }

    .esg-content__pic-half-block.block_customize img,.esg-content__pic-half-block.block_customize2 img,.esg-content__pic-half-block.block_customize3 img {
        margin: 0 auto 16px; 
    }
    .esg-content__pic-half-block.block_customize3 > div:nth-child(2) {
    order: 1;
  }
  .esg-content__pic-half-block.block_customize3 > div:nth-child(1) {
    order: 2;
  }
}
/*food-safety*/
.grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr))
    }
@media (max-width: 767px) {
    .grid-sm-cols-none {
        grid-template-columns: none;
    }
}  
.table-block table thead th[colspan] {
  border-right: none !important;
}
.info-introcard table thead th{
 background-color: #ddb170;
}
.info-introcard  {
 border:  1px solid #ddb170;
}

/*data-淺綠無框線、data2-淺綠無框線偶數列底色*/
.data,.data2 {
  border: none;
  word-break: break-all;
}
.data table thead th,.data2 table thead th {
  background-color: #8fd56b;
  color: #fff;
}
.data2 table tbody tr:nth-child(even) td {
  background-color: #f9f9f9;
}
.table-green-highlight td{
    background-color: #ddf7d3 !important;
}
.ohs-ojt .data2 table thead th{
  background-color: #cca671;
}
/*data-sheet-全淺綠框線，偶數列底色，內容置左*/
.data-sheet {
  word-break: break-all;
  border-color: #8fd56b;
}
.data-sheet table {
  border-collapse: collapse;
  border: none; 
  width: 100%;
}
.data-sheet table thead th {
  background-color: #8fd56b;
  color: #fff;
  padding: 16px 0;
}
.data-sheet table td,
.data-sheet table th {
  border-right: 1px solid #8fd56b;
  border-bottom: 1px solid #8fd56b;
  vertical-align: top; 
}
.data-sheet table td:last-child,
.data-sheet table th:last-child {
  border-right: none;
}
.data-sheet table tr:last-child td {
  border-bottom: none;
}
.data-sheet table tbody tr:nth-child(even) td {
  background-color: #f9f9f9;
}
.data-sheet.row1-hl tbody tr td:first-child {
  color: #29927d;
}
.data-sheet  table tbody td span{
  font-size: 14px;
  color: #5a5a5a;
}
.th-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.th-wrap img {
  height: 40px;
  margin-right: 8px;
}


/* climate-strategy */
/*data-card-淺綠框線，內容置中、data-card2-第一行淺綠底色，內容置左*/
.data-card table thead th {
  background-color: #8fd56b;
  color: #fff;
  padding: 16px 0;
}
.data-card table{
  text-align: center
}
.data-card{
    border: 1px solid #8fd56b;
    word-break: break-all;
}
.data-card tbody p{
    padding-bottom: 4px;
}
/* biodiversity */
.process-section .info-card {
  position: relative;
}
.process-section .info-card__title{
  padding-top: 10px;
  color: #29927d;
}
.process-section .info-card__number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #519c97;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  border: 4px solid #ffffff;
  z-index: 3;
  pointer-events: none;
}

@media (max-width: 767px) {
  .process-section .info-card {
    padding: 15px;
  }
  .process-section .info-card__number {
    width: 44px;
    height: 44px;
    font-size: 16px;
    border-width: 3px;
  }
    .process-section .grid > :nth-child(n + 2) {
    margin-top: 24px;
  }
}

/* ohs */
.data-card2{
    border: 1px solid #8fd56b;
}
.data-card2 tr:not(:last-child) {
    border-bottom: 1px solid #e9e9e9;
}
.data-card2 tbody tr td:first-child {
  background-color: #8fd56b; 
  color: #fff;
  font-weight: bold;
  width: 20%;
}
.data-card2 tbody tr td:last-child {
  background-color: #ffffff;
}
.ohsplan .data-card2{
    border: 1px solid #cca671;
}

.ohsplan .data-card2 tbody tr td:first-child {
    background-color: #cca671; 
}
/* talent-development */
@media (max-width: 820px) {
  .cultivation-list .grid-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.cultivation-list .info-card {
  background-color: #fdf9ee;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}
.cultivation-list .info-card__title {
  font-size: 24px;
  color: #4E2A1F;
  display: inline-block; 
}
.cultivation-list .info-card__title::after {
  content: '小時'; 
  font-size: 16px; 
  margin-left: 5px;
}
.cultivation-list .info-card__description {
  font-size: 18px; 
  text-align: center;
  color: #7E5A4E; 
}
@media (max-width: 767px) {

  .cultivation-list .info-card__title {
    font-size: 20px; 
  }

  .cultivation-list .info-card__description {
    font-size: 16px; 
  }
}
/* familymartcare */
.info-groupcard{
  border: 1px solid #eda5ab;
}
.info-groupcard td:nth-child(1) {
  text-align: left;
  padding: 24px;
}
.info-groupcard td:nth-child(2) {
  text-align: center;
  vertical-align: middle; 
}

.info-groupcard table thead th,.table-block-data2 table thead th {
  background-color: #eda5ab;
  color: #fff;
}
.info-groupcard table tbody tr:nth-child(even) td {
  background-color: #f9f9f9;
}
.data-chartcard{
    border: 1px solid #eda5ab;
}
.data-chartcard table thead th {
  background-color: #eda5ab;
  text-align: center;
  color: #fff;
}
.data-chartcard table{
  text-align: left;
}
.data-chartcard td {
 border-left:  1px solid var(--color-gray-400);
}
.data-chartcard td:first-child {
 border-left:none;
}
.data-chartcard tbody p{
    padding-bottom: 4px;
}
/* SustainabilityFocus */
.plan li {
  list-style-position: inside; 
  margin-bottom: 16px;        
  border-radius: 50px;        
  line-height: 1.5; 
  text-indent: -1.5em;          
}
.plan li span {
  font-size: 1.4rem;      
  font-weight: 700;
  color: #27ae60;
  padding: 0 8px;     
}
.esg-card-swiper--img {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
}
.esg-card-swiper--img .swiper-wrapper {
  margin: 0 auto;
}

.esg-card-swiper--img .swiper-slide.esg-card--img {
  padding: 0 8px;
}
/* slide 基本樣式 */
.esg-card-swiper--img .swiper-slide.esg-card--img {
  width: 100%;              
  min-height: auto;
  padding: 0 8px;           
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;
}
.esg-card-swiper--img .swiper-slide.esg-card--img img {
  width: 100%;
  height: 100%; 
  display: block;
  object-fit: contain;
  border-radius: 5px;
  -webkit-box-shadow: -1px 1px 14px -5px rgba(0, 0, 0, .3);
  box-shadow: -1px 1px 14px -5px rgba(0, 0, 0, .3);

}
/* 桌機：三張圖撐滿內容寬度 */
@media (min-width: 1024px) {
  .esg-card-swiper--img .swiper-wrapper {
    margin: 0 auto;
  }

  .esg-card-swiper--img .swiper-slide.esg-card--img {
    padding: 0 8px;
  }
}
/* 手機版：一張全寬 */
@media (max-width: 767px) {
  .esg-card-swiper--img .swiper-wrapper {
    box-sizing: border-box;
  }
  .esg-card-swiper--img .swiper-slide.esg-card--img {
    padding: 0;      /* 手機不需要中間間距 */
  }
  .esg-card-swiper--img .swiper-slide.esg-card--img img {
    max-width: 280px;    /* 圖片縮小，但 slide 寬度保持滿螢幕 */
    margin: 0 auto;      /* 圖片置中 */
    display: block;
  }
}

/* =========================
  CKEditor-了解更多按鈕
========================= */

.btn.text-hover{
  display: inline-flex;
  flex-direction: column;
}

.btn.text-hover .text-wrap{
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.btn.text-hover .text-wrap span{
  display: block;
  margin: 0;
  transition: 1.125s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn.text-hover .text-wrap span:last-child{
  position: absolute;
  top: 1.75em;
  left: 0;
}

.btn.text-hover:hover .text-wrap span:first-child{
  transform: translateY(-1.75em);
}

.btn.text-hover:hover .text-wrap span:last-child{
  top: 0;
}
/* =========================
   CKEditor 最新消息CSS
   ========================= */
.esg-news-content__title{
    color: var(--color-blue-secondary);
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    margin-bottom: 1rem;
}
@media (max-width: 767px) {
    .esg-news-content__title {
        font-size: 18px;
    }
}
.esg-news-content__sub-title{
    color: var(--color-blue-secondary);
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    line-height: normal;
    margin: 0;
    margin-bottom: 1rem;
}
@media (max-width: 767px) {
    .esg-news-content__sub-title {
        font-size: 16px;
    }
}
/* =========================
   CKEditor 文繞圖（圖片由編輯器插入）
   ========================= */

/* 圖片段落本身 */
.esg-content__float {
  max-width: 420px; /* 控制文繞圖實際寬度 */
}

/* 圖片本體 */
.esg-content__float img {
  width: 100% !important; /* 覆蓋 CKEditor inline style */
  height: auto !important;
  display: block;
  border-radius: 4px;
}

/* 左圖右文 */
.esg-content__float--left {
  float: left;
  margin: 0 32px 16px 0;
}

/* 右圖左文 */
.esg-content__float--right {
  float: right;
  margin: 0 0 16px 32px;
}

/* 清除浮動 */
.esg-content__clearfix {
  clear: both;
}

/* =========================
   RWD：手機版取消文繞
   ========================= */
@media (max-width: 768px) {
  .esg-content__float {
    float: none !important;
    max-width: 100%;
    margin: 0 0 16px 0;
  }
}
