body {
  background-image: url(https://cdn.samco.in/images/samco3.0/bg-img.webp) !important;
   background-position: top left;
   background-repeat: no-repeat;
   padding: 160px 0px 0px 0px;
  font-family: Product Sans, Arial, sans-serif !important;
   line-height: 1.5;
     background-color: #eeeeee;
}
section.banner {
   padding-bottom: 30px;
}
.container {
       max-width: 1340px;
   }
   ul.breadcrm {
   padding: 0px !important;
   list-style: none !important;
   margin-bottom: 20px !important;
   margin: auto;
   display: block;
   text-align: center;
}
ul.breadcrm li {
   display: inline;
   font-size: 14px !important;
   border: 0px !important;
   padding: 0px !important;
   color: #fff !important;
}
section.banner h1 {
   font-size: 42px;
   font-weight: 400;
   text-transform: uppercase;
   line-height: 50px;
   letter-spacing: 0em;
   text-align: left;
   color: #fff;
   margin: 0;
   padding-bottom: 16px;
   text-align: center;
}
.pr-container {
   /* box-shadow: 14px 22px 52px 0px #00000040; */
   background-color: #ffffff;
   max-width: 1340px;
   margin: 0px auto 80px;
   padding: 34px;
   border-radius: 30px;
}

  .samco-pr { 
    font-family: "Product Sans", Arial, Helvetica, sans-serif; 
    color: #383838;
  }

  .samco-pr__container{
    width:100%;
    margin: 0px auto 20px;
  }
  .samco-pr__wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .samco-pr__heading{
    margin: 0 0 6px 0;
    font-size: 22px;
    font-weight: 600;
    color: #383838;
  }
  .samco-pr__desc{
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #555F75;
  }

  .samco-pr__cta{
    --btn-bg: #2250BC;
    --btn-bg-hover: #1a3f96;
    --btn-text: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--btn-bg);
    color: var(--btn-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
  }
  .samco-pr__cta svg{
    width: 20px;
    height: 20px;
    display: block;
    transition: transform .2s ease;
  }
  .samco-pr__cta:hover{
    background: var(--btn-bg-hover);
    box-shadow: 0 4px 12px rgba(34, 80, 188, 0.3);
  }
  .samco-pr__cta:hover svg{
    transform: translateX(2px);
  }

  .samco-pr__line {
    border: none;
    border-top: 1px solid #E4E4E4;
    width: 100%;
    margin: 20px 0 40px;
  }
  

  /* -------- Responsive -------- */
  @media (max-width: 900px){
    .samco-pr__wrap{
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: center;
    }
    .samco-pr__left{ flex: 1 1 100%; }
  }

  @media (max-width: 768px){
    .pr-container{padding:20px;}
    .samco-pr__container{margin:20px auto 0px;}
    .samco-pr__line{margin:20px 0 30px;}
    body{padding: 100px 0px 0px 0px;}
    section.banner {
      padding: 0px 0px 35px 0px;}
      section.banner h1 {
        font-size: 24px !important;
        padding-bottom: 0px;
        line-height: 34px;}
    .samco-pr__cta{ display: none; }
  }

  /* Cards code */
  .samco-pr__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  /* desktop 4 across */
    gap: 25px;
  }

  .samco-pr__card {
    background:#fff;
    border:1px solid #E9ECF2;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    box-shadow:0 1px 0 rgba(0,0,0,.02);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    cursor:pointer;
  }
  .samco-pr__card:hover{ transform: translateY(-2px); box-shadow:0 10px 24px rgba(21,35,66,.10); border-color:#D9E2F1; }
  .samco-pr__card:focus-visible{ outline:3px solid rgba(34,80,188,.3); outline-offset:3px; }

  .samco-pr__imgwrap{ position:relative; overflow:hidden; }
  .samco-pr__imgwrap img{ display:block; width:100%; height:160px; object-fit:cover; transition: transform .25s ease; }
  .samco-pr__card:hover .samco-pr__imgwrap img{ transform:scale(1.03); }

  /* author pill on image */
  .samco-pr__author{
    position:absolute; right:10px; bottom:10px;
    background:#EEF3FF; color:#3A4A6B; font-size:12px; font-weight:600; line-height:1;
    padding:6px 10px; border-radius:12px; text-decoration:none; border:1px solid #DBE6FF;
  }
  .samco-pr__author:hover{ background:#E5EEFF; }

  .samco-pr__body{ padding:12px 14px 14px; }
  .samco-pr__title{ margin:0 0 15px 0; font-size:16px; font-weight:600; line-height:1.4; color:#2C2C2C; }

  .samco-pr__meta{ display:flex; align-items:center; justify-content:space-between; color:#7A859B; font-size:15px; }

  /* ============ Explore Now CTA ============ */
  .samco-pr__explore {
    --btn-bg:#2250BC; --btn-bg-hover:#1a3f96; --btn-text:#fff;
    display:inline-flex; align-items:center; gap:10px;
    padding:12px 20px; border-radius:999px; background:var(--btn-bg); color:var(--btn-text);
    text-decoration:none; font-size:14px; font-weight:700; line-height:1; white-space:nowrap;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
  }
  .samco-pr__explore svg{ width:20px; height:20px; display:block; transition: transform .2s ease; }
  .samco-pr__explore:hover{ background:var(--btn-bg-hover); box-shadow:0 8px 20px rgba(34,80,188,.28); }
  .samco-pr__explore:hover svg{ transform: translateX(2px); }
  .samco-pr__explore:active{ transform: translateY(1px); }

  /* Desktop-placement: span full grid width & center the CTA (AFTER 8 cards) */
  .samco-pr__explore-row {
    grid-column: 1 / -1; display:flex; justify-content:center; padding:4px 0 8px;
  }

  /* ============ Pagination (numeric, mobile only visible) ============ */
  .samco-pr__pagination{ display:none; margin-top:16px; gap:8px; display: flex; flex-wrap:wrap; justify-content:center; align-items:center; }
  #pageNumbers {
    display: flex;
    gap: 8px;
    justify-content: center;
  }
  .samco-pr__explore-mobile {
    display: none;
    margin-top: 10px;
    text-align: center;
  }
  .samco-pr__pagebtn, .samco-pr__pagenum{
    appearance:none; border:1px solid #D9E2F1; background:#fff; padding:8px 12px; border-radius:10px;
    font-size:14px; font-weight:600; color:#2250BC; cursor:pointer; transition: background .15s, box-shadow .15s, transform .15s;
  }
  .samco-pr__pagebtn[disabled]{ opacity:.45; cursor:not-allowed; }
  .samco-pr__pagebtn:hover:not([disabled]), .samco-pr__pagenum:hover{ background:#F3F6FF; box-shadow:0 4px 12px rgba(34,80,188,.15); }
  .samco-pr__pagenum--active{ background:#2250BC; color:#fff; border-color:#2250BC; }

  /* Mobile Explore CTA (AFTER pagination) */
  .samco-pr__explore-mobile { display:none; margin-top:16px; text-align:center; }

  /* ============ Responsive ============ */
  @media (max-width:1200px){ .samco-pr__grid{ grid-template-columns: repeat(3,1fr); } }
  @media (max-width:900px){ .samco-pr__grid{ grid-template-columns: repeat(2,1fr); } }
  @media (max-width:768px){
    .samco-pr__grid{ grid-template-columns: 1fr; }
    .samco-pr__pagination{ display:flex; margin-top:25px; margin-bottom: 10px; }
    .samco-pr__explore-row{ display:none; }
    .samco-pr__explore-mobile{ display:block; }
    .samco-pr__explore-mobile { display: block; }
    .samco-pr__wrap{
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0px;
    }
  }


/* Samco kc promo */
.samco-pr__promo-wrap { 
  width: 100%;
  margin: 25px 0 35px;
}

/* Card */
.samco-pr__promo {
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  background:
    linear-gradient(180deg, #e3ebf5 0%, #FFFFFF 100%);
  border: 1px solid #E4EAF6;
  border-radius: 30px;
  padding: 18px 26px;
  box-shadow: 0 10px 26px rgba(34, 80, 188, 0.08);
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.samco-pr__promo:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(34, 80, 188, 0.12);
}

.samco-pr__promo::before,
.samco-pr__promo::after{
  content:"";
  position:absolute;
  pointer-events:none;
  right: -80px;
  border-radius: 50%;
  filter: blur(0.2px);
}

.samco-pr__promo::before{
  top: -40px;
  width: 260px; height: 260px;
  background: radial-gradient(closest-side, rgba(34,80,188,0.12), rgba(34,80,188,0.06) 55%, transparent 70%);
}

.samco-pr__promo::after{
  bottom: -60px;
  width: 200px; height: 400px;
  background: radial-gradient(closest-side, rgba(0,142,255,0.12), rgba(0,142,255,0.06) 55%, transparent 70%);
}


.samco-pr__promo-icon{
  width: 84px; height: 84px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(120% 120% at 30% 30%, #EAF2FF 0%, #DCE9FF 55%, #CFE2FF 100%);
  border: 1px solid #D7E5FF;
  box-shadow: inset 0 1px 0 #fff, 0 6px 14px rgba(41, 86, 178, 0.12);
  flex: 0 0 auto;
}
.samco-pr__promo-icon svg{
  width: 36px; height: 36px;
  display: block;
}

.samco-pr__promo-title {
  margin: 0 0 6px 0;
  color: #1F2A44;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}
.samco-pr__promo-desc {
  margin: 0;
  color: #51607A;
  font-size: 16px;
  line-height: 1.55;
}

.samco-pr__promo-cta { display: flex; align-items: center; justify-content: flex-end; }
.samco-pr__promo-btn {
  --btn: #2250BC;
  --btn-hover: #1A3F96;

  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: var(--btn);
  color: #fff;
  text-decoration: none;
  font-size: 15px; font-weight: 700; line-height: 1;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 20px rgba(34, 80, 188, 0.22);
  transition: transform .18s ease, box-shadow .2s ease, background .18s ease, filter .2s ease;
}
.samco-pr__promo-btn svg { transition: transform .18s ease; }
.samco-pr__promo-btn:hover {
  background: var(--btn-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(34, 80, 188, 0.30);
  filter: saturate(1.05);
}
.samco-pr__promo-btn:hover svg { transform: translateX(2px); }
.samco-pr__promo-btn:active { transform: translateY(0); }
.samco-pr__promo-btn:focus-visible { outline: 3px solid rgba(34,80,188,.35); outline-offset: 2px; }

/* Responsive */
@media (max-width: 1024px) {
  .samco-pr__promo { gap: 18px; padding: 20px 22px; }
  .samco-pr__promo-title { font-size: 19px; margin:12px 0; }
}
@media (max-width: 768px) {
  .samco-pr__promo-wrap{margin:40px 0px;}
  .samco-pr__promo-desc{margin-bottom: 10px;}
  .samco-pr__promo {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 14px;
    padding: 30px 20px;
    min-height: auto;
  }
  .samco-pr__promo-icon {
    width: 72px; height: 72px;
    margin-top: 2px;
  }
  .samco-pr__promo-cta { justify-content: center; }
  .samco-pr__promo-btn { width: 100%; justify-content: center; }
  /* shift patches slightly so they remain visible on small screens */
  .samco-pr__promo::before{ right: -110px; }
  .samco-pr__promo::after{  right: -120px; }
}

/* research insight section */
.samco-pr-research{margin-bottom:25px;}
.samco-pr-research__wrap{
  width:100%;
  padding: 0px;
  margin: 25px 0; 
}

/* Header (optional) */
.samco-pr-research__head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap: 12px; margin-bottom: 12px;
}
.samco-pr-research__title{
  margin:0; font-size:22px; font-weight:700; color:#383838;
}
.samco-pr-research__sub{
  margin:0; font-size:14px; color:#6B7486;
}

.samco-pr-research__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.samco-pr-research__card{
  background:#fff;
  border:1px solid #D8E6FB;
  border-radius:20px;
  padding:20px 16px;
  display:flex;
  flex-direction:column;
  gap:15px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  cursor:pointer;
}
.samco-pr-research__card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(28, 55, 112, .12);
  border-color:#C9DCF9;           /* subtle hover tint */
}
.samco-pr-research__card:focus-visible{
  outline: 3px solid rgba(34,80,188,.35);
  outline-offset: 2px;
}

.samco-pr-research__logo-wrap {
  display: flex;
  justify-content: flex-start;
}

.samco-pr-research__logo{
  height: 28px;
  width: auto;
  display:block;
  object-fit: contain;
}

.samco-pr-research__news-title{
  margin:0;
  font-size:16px;
  font-weight:600;
  line-height:1.45;
  color:#2C2C2C;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.45em * 3);
}

/* date row */
.samco-pr-research__date{
  margin-top:auto;
  font-size:15px;
  color:#7C879C;
}

/* ================= Pagination (mobile dots) ================= */
.samco-pr-research__pagination{
  display:none;
  margin-top:16px;
  text-align:center;
}
.samco-pr-research__dots{
  display:inline-flex;
  gap:8px;
  align-items:center;
  justify-content:center;
}
.samco-pr-research__dot{
  width:10px; height:10px; border-radius:50%;
  border:1px solid #D8E6FB;
  background:#DCE9FC;
  padding:0px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.samco-pr-research__dot:hover{ transform: scale(1.08); }
.samco-pr-research__dot--active{
  background:#2250BC;
  border-color:#2250BC;
}

.samco-pr__btn{text-align: center;}

@media (max-width: 1200px){
  .samco-pr-research__grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px){
  .samco-pr-research__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px){
  .samco-pr-research{margin:0px 0px 40px;}
  .samco-pr-research__grid{ grid-template-columns: 1fr; } /* one per row */
  .samco-pr-research__pagination{ display:block; }
}


/* Samco Interviews YT Videos */
.samco_pr_interviews__wrap{ width:100%; padding:0px; margin:25px 0; }
  .samco_pr_interviews__inner{ max-width:1340px; margin:0 auto; }

  .samco_pr_interviews__head{
    display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:12px;
  }
  .samco_pr_interviews__title{ margin:0; font-size:22px; font-weight:700; color:#383838; }
  .samco_pr_interviews__sub{ margin:0; font-size:14px; color:#6B7486; }

  .samco_pr_interviews__row{ position:relative; }

  .samco_pr_interviews__carousel{ width:100%; }
  .samco_pr_interviews__viewport{
    overflow:hidden;
    padding-bottom:30px;
    touch-action: pan-y;
    padding-right: 0.5px;
  }
  .samco_pr_interviews__track{
    display:flex; gap:25px;
    transition: transform .35s ease;
    will-change: transform;
    list-style:none; margin:0; padding:0;
  }

  .samco_pr_interviews__card{
    border:1px solid #D8E6FB; border-radius:20px; overflow:hidden; background:#fff;
    box-shadow:0 1px 0 rgba(0,0,0,.02);
    transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
    cursor:pointer;
  }
  .samco_pr_interviews__card:hover{
    transform: translateY(-2px);
    border-color:#C9DCF9;
    box-shadow:0 10px 24px rgba(14,40,90,.10);
  }

  .samco_pr_interviews__thumb{ position:relative; aspect-ratio: 16 / 9; background:#EEF3FF; overflow:hidden; }
  .samco_pr_interviews__thumb img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .25s ease; }
  .samco_pr_interviews__card:hover .samco_pr_interviews__thumb img{ transform: scale(1.03); }

  .samco_pr_interviews__play{ position:absolute; inset:0; display:grid; place-items:center; }
  .samco_pr_interviews__play-btn{
    display:inline-grid; place-items:center; width:64px; height:64px; border-radius:999px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(240,244,255,.95));
    border:1px solid #D8E6FB; box-shadow:0 10px 24px rgba(22,48,110,.18), inset 0 1px 0 #fff;
    transition: transform .18s ease, box-shadow .18s ease;
    pointer-events:none;
  }
  .samco_pr_interviews__card:hover .samco_pr_interviews__play-btn{ transform: scale(1.04); box-shadow:0 14px 30px rgba(22,48,110,.24); }

  .samco_pr_interviews__body{ padding:12px 14px 14px; }
  .samco_pr_interviews__name{
    margin:0 0 15px 0; font-size:16px; font-weight:600; color:#2C2C2C; line-height:1.45;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; text-overflow:ellipsis; max-height: calc(1.45em * 2);
  }
  .samco_pr_interviews__date{ font-size:15px; color:#7A859B; }

  .samco_pr_interviews__arrow{
    position:absolute; top:50%; transform: translateY(-50%);
    width:40px; height:40px; border-radius:999px;
    border:1px solid #D8E6FB; background:#fff;
    display:grid; place-items:center; cursor:pointer;
    box-shadow:0 6px 18px rgba(18,40,96,.10);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    z-index:5;
  }
  .samco_pr_interviews__arrow:hover{ transform: translateY(-50%) scale(1.04); box-shadow:0 10px 24px rgba(18,40,96,.15); }
  .samco_pr_interviews__arrow[disabled]{ opacity:.45; pointer-events:none; }
  .samco_pr_interviews__arrow--prev{ left:6px; }
  .samco_pr_interviews__arrow--next{ right:6px; }

  .samco_pr_interviews__dots{
    margin-top:0px; display:flex; gap:8px; justify-content:center; align-items:center;
  }
  .samco_pr_interviews__dot{
    width:10px; height:10px; border-radius:50%;
    border:1px solid #D9E2F1; background:#DCE3EE; padding:0; cursor:pointer;
    transition: box-shadow .2s ease, transform .2s ease, background-color .2s ease, border-color .2s ease;
  }
  .samco_pr_interviews__dot[aria-current="true"]{
    background:#2250BC; border:1px solid #2250BC;
  }
  .samco_pr_interviews__dot:hover{ transform: scale(1.05); }

  .samco_pr_interviews__modal { position: fixed; inset: 0; z-index: 1000; display: none; }
  .samco_pr_interviews__modal.is-open { display: block; }
  .samco_pr_interviews__backdrop { position: absolute; inset: 0; background: rgba(12,22,46,.55); backdrop-filter: blur(2px); }
  
  .samco_pr_interviews__dialog{
    position: relative;
    width: min(920px, 92vw);
    aspect-ratio: 16 / 9;
    margin: max(6vh, 24px) auto 0 auto;
    border-radius: 16px;
    background: transparent;
    box-shadow: 0 20px 48px rgba(0,0,0,.35);
    overflow: visible;
  }
  
  .samco_pr_interviews__player{
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
  }
  
  .samco_pr_interviews__close{
    position: absolute;
    top: -18px;
    right: -18px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #fff;
    color: #0F1F46;
    border: 1px solid #D8E6FB;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .samco_pr_interviews__close:hover{
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0,0,0,.22);
  }

  @media (max-width: 1024px){
    .samco_pr_interviews__arrow--prev{ left:-4px; }
    .samco_pr_interviews__arrow--next{ right:-4px; }
  }
  @media (max-width: 768px){
    .samco_pr_interviews__arrow{ display:none; } /* mobile: swipe + dots */
    .samco_pr_interviews__dialog{
      width: min(750px, 94vw);
      margin-top: max(8vh, 20px);
    }
    .samco_pr_interviews__player{
      border-radius: 12px;
    }
    .samco_pr_interviews__close{
      top: -12px;
      right: -12px;
      width: 36px;
      height: 36px;
    }
  }

  /* Pagination css */
  .samco-pr__pagination {
    width: 100%;
    margin: 40px 0 20px;
    font-family: "Product Sans", Arial, Helvetica, sans-serif;
  }
  
  .samco-pr__pages {
    --sp-gap: 8px;
    --sp-size: 36px;
    --sp-radius: 999px;
    --sp-color: #1e2a44;
    --sp-muted: #7a859b;
    --sp-border: #D8E6FB;
    --sp-active-bg: #2250BC;
    --sp-active-color: #fff;
    --sp-hover-shadow: 0 8px 18px rgba(34,80,188,.20);
  
    list-style: none;
    margin: 0;
    padding: 0;
  
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-gap);
    flex-wrap: wrap;
  }
  
  .samco-pr__item { display: inline-flex; }
  
  .samco-pr__link,
  .samco-pr__link:visited {
    min-width: var(--sp-size);
    height: var(--sp-size);
    padding: 0 12px;
    border-radius: var(--sp-radius);
    border: 1px solid var(--sp-border);
    background: #fff;
    color: var(--sp-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 14px;
    font-weight: 600;
    transition: box-shadow .18s ease, transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
  }
  
  .samco-pr__link:hover {
    transform: translateY(-1px);
    box-shadow: var(--sp-hover-shadow);
  }
  
  .samco-pr__link:focus-visible {
    outline: 3px solid rgba(34,80,188,.35);
    outline-offset: 2px;
  }
  
  /* Active */
  .samco-pr__link--active,
  .samco-pr__link[aria-current="page"] {
    background: var(--sp-active-bg);
    color: var(--sp-active-color);
    border-color: var(--sp-active-bg);
    box-shadow: 0 8px 18px rgba(34,80,188,.25);
  }
  
  /* Prev/Next edges */
  .samco-pr__link--edge {
    gap: 8px;
    padding: 0 14px;
  }
  .samco-pr__link--edge svg { width: 18px; height: 18px; }
  .samco-pr__edge-text { display: inline-block; }
  
  /* Disabled */
  .samco-pr__link--disabled,
  .samco-pr__link--disabled:hover {
    cursor: not-allowed;
    color: var(--sp-muted);
    background: #f6f8fc;
    border-color: #E6EEF9;
    box-shadow: none;
    transform: none;
  }
  
  /* Ellipsis */
  .samco-pr__ellipsis {
    display: inline-flex; align-items: center; justify-content: center;
    width: var(--sp-size); height: var(--sp-size);
    color: var(--sp-muted); border-radius: var(--sp-radius);
    user-select: none;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .samco-pr__pages { gap: 6px;}
    .samco-pr__link, .samco-pr__link:visited {
      --sp-size: 34px;
      min-width: var(--sp-size);
      height: var(--sp-size);
      padding: 0 10px;
      font-size: 13px;
    }
    /* Hide text labels on small screens; keep arrows */
    .samco-pr__edge-text { display: none; }
  }
  
  @media (max-width: 420px) {
    /* If needed, becomes horizontally scrollable */
    .samco-pr__pages {
      justify-content: flex-start;
      overflow-x: auto;
      padding-bottom: 15px;
      scroll-snap-type: x mandatory;
    }
    .samco-pr__item { scroll-snap-align: center; }
  }


  /* ================== Isolated Styles: .samco-article ================== */
.samco-article__wrap { width: 100%; }
.samco-article__inner { max-width: 1340px; margin: 0 auto; }

.samco-article__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}

.samco-article__card{
  position: relative;
  border: 1px solid #D8E6FB;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.samco-article__card:hover{
  transform: translateY(-2px);
  border-color: #C9DCF9;
  box-shadow: 0 12px 26px rgba(22,48,110,.12);
}

.samco-article__card a { text-decoration: none; color: inherit; }

.samco-article__imgwrap{
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.samco-article__imgwrap img{
  display: block; width: 100%; height: auto;
  aspect-ratio: 16 / 9; object-fit: cover;
  transition: transform .25s ease;
}
.samco-article__card:hover .samco-article__imgwrap img{ transform: scale(1.03); }

/* .samco-article__imgwrap::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0; height:36%;
  background: linear-gradient(0deg, rgba(0,0,0,.38), rgba(0,0,0,0));
  pointer-events:none;
  z-index:2;
} */

.samco-article__author{
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: #EEF3FF;
  color: #3A4A6B;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid #DBE6FF;
}

/* Image-only overlay link */
.samco-article__imglink{
  position:absolute; inset:0; z-index:2; cursor:pointer;
}

/* Body */
.samco-article__body{ padding:12px 14px 14px; }
.samco-article__title{
  margin:0 0 15px; font-size:16px; font-weight:600; color:#2C2C2C; line-height:1.45;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; text-overflow:ellipsis;
}
.samco-article__meta{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  color:#7A859B; font-size:15px;
}

/* Full-card overlay link (kept behind author/img overlay) */
.samco-article__cardhit{
  position:absolute; inset:0; z-index:1; cursor:pointer;
}

/* Responsive */
@media (max-width: 1024px){
  .samco-article__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px){
  .samco-article__grid{ grid-template-columns: 1fr; }
  .samco-article__title{ font-size:15px; }
}

.ri-pr{
  text-decoration:none;color:inherit;display:block;
}

/* ================= Author Page ================= */
.pr-author {
  /* box-shadow: 14px 22px 52px 0px #00000040; */
  background-color: #ffffff;
  max-width: 1340px;
  margin: 0px auto 80px;
  padding: 34px;
  border-radius: 30px;
}

.samco-author-hero {
  position: relative;
  z-index: 2;
  padding: 0px;
  overflow: visible;
}

.samco-author-hero__brand{
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  transform: translate(18%, -22%);
  opacity: 0.17;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.10));
}

.samco-author-hero__brand svg{
  display: block;
  width: 90px;
  height: auto;
}

.samco-author-hero__card{
  width: min(1200px, calc(100% - 24px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background:
  radial-gradient(520px 140px at 86% 22%, rgba(34, 80, 188, 0.16), transparent 62%),
  radial-gradient(420px 130px at 12% 85%, rgba(73, 140, 255, 0.14), transparent 64%),
  linear-gradient(135deg, #E3EDFF 0%, #E6F1FF 55%, #E9F3FF 100%);
border: 1px solid #C6D8FA;
box-shadow:
  0 34px 64px rgba(34, 80, 188, 0.12),
  0 12px 28px rgba(26, 62, 150, 0.10),
  0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  padding:30px;
  position:relative;
  overflow: hidden;
}

.samco-author-hero__photo,
.samco-author-hero__info{
  position: relative;
  z-index: 1;
}

.samco-author-hero__photo{
  width: 180px; height: 180px;
  border-radius: 50%; overflow: hidden; flex: 0 0 auto;
  border: 2px solid #E6EEF9;
  box-shadow: 0 10px 24px rgba(34,80,188,0.15);
}
.samco-author-hero__photo img{ width: 100%; height: 100%; object-fit: cover; display:block; }

.samco-author-hero__info{ min-width: 0; }
.samco-author-hero__name{
  margin: 0 0 6px; font-size: 28px; font-weight: 600; color: #18213B; line-height: 1.2;
  letter-spacing: .2px;
}
.samco-author-hero__role{
  margin: 0 0 6px; font-size: 16px; font-weight: 700; color: #2C58BE;
}
.samco-author-hero__bio{
  margin: 0; font-size: 16px; line-height: 1.65; color: #4b5873;
}

.samco-author {
  position: relative;
  z-index: 1;
  margin-top: -100px;
}

.samco-author__container{
  background-color: #ffffff;
  max-width: 1340px;
  margin: 0px auto 80px;
  padding: 140px 34px 34px 34px;
  border-radius: 30px;
}

.samco-author__articles-head{
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin: 6px 0 20px;
}
.samco-author__section-title{ margin: 0; font-size: 18px; font-weight: 600; color: #222C45; }
.samco-author__count{ font-size: 13px; color: #6b7895; font-weight: 700; }

.samco-author__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}

.samco-author__card{
  display: block; text-decoration: none; color: inherit;
  border: 1px solid #D8E6FB; border-radius: 20px; background: #fff; overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.samco-author__card:hover{
  transform: translateY(-2px);
  border-color: #C9DCF9;
  box-shadow: 0 12px 26px rgba(22,48,110,.12);
}
.samco-author__media img{
  width: 100%; height: auto; display: block; aspect-ratio: 16 / 9; object-fit: cover;
  transition: transform .25s ease;
}
.samco-author__card:hover .samco-author__media img{ transform: scale(1.03); }
.samco-author__body{ padding: 12px 14px 14px; }
.samco-author__title{
  margin: 0 0 15px; font-size: 16px; font-weight: 600; color: #2C2C2C; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis;
}
.samco-author__meta{
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  color: #7A859B; font-size: 15px;
}

/* Responsive */
@media (max-width: 1100px){
  .samco-author-hero__card{ grid-template-columns: 1fr; text-align: left; }
  .samco-author-hero__photo{ width: 96px; height: 96px; }
  .samco-author-hero__name{ font-size: 24px; }
}
@media (max-width: 1024px){
  .samco-author__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .samco-author__container{padding:140px 20px 20px 20px;}
  .samco-author__grid{ grid-template-columns: 1fr; }
  .samco-author__title{ font-size: 15px; }
  .samco-author-hero__brand{
    width: 90px;
    transform: translate(20%, -12%);
    opacity: 0.12;
  }
}


/* ================= Samco Bulletin Page ================= */
.samco-bulletin__container{
  margin-bottom: 30px;
}

.samco-bulletin__header{
  display:flex; align-items:center; justify-content:space-between; margin-bottom:10px;
}
.samco-bulletin__title{
  margin:0; font-size:20px; font-weight:700; color:#1E2A44;
}

.samco-bulletin__viewport{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.samco-bulletin__track{
  display: flex;
  gap: 25px;
  will-change: transform;
  transition: transform .35s ease;
  padding: 0px 0 30px;
  list-style: none;
  margin: 0;
}

.samco-bulletin__card{
  flex: 0 0 auto;
  border: 1px solid #D8E6FB;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.samco-bulletin__card:hover{
  transform: translateY(-2px);
  border-color: #C9DCF9;
  box-shadow: 0 12px 26px rgba(22,48,110,.12);
}

.samco-bulletin__link{ display:block; color:inherit; text-decoration:none; }

.samco-bulletin__media img{
  display:block; width:100%; height:auto; aspect-ratio: 16 / 9; object-fit:cover;
  transition: transform .25s ease;
}
.samco-bulletin__card:hover .samco-bulletin__media img{ transform: scale(1.03); }

.samco-bulletin__body{ padding:12px 14px 14px; }
.samco-bulletin__meta{ display:flex; align-items:center; justify-content:flex-start; gap:10px; margin-bottom:6px; }
.samco-bulletin__date{ font-size:15px; color:#6F7C96; font-weight:400; }
.samco-bulletin__name{
  margin:0; font-size:16px; color:#2C2C2C; font-weight:600; line-height:1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis;
  margin-bottom:15px;
}

.samco-bulletin__nav{
  position:absolute; top:50%; transform: translateY(-50%);
    width:40px; height:40px; border-radius:999px;
    border:1px solid #D8E6FB; background:#fff;
    display:grid; place-items:center; cursor:pointer;
    box-shadow:0 6px 18px rgba(18,40,96,.10);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    z-index:5;
}
.samco-bulletin__nav:hover{ transform: translateY(-50%) scale(1.04); box-shadow: 0 14px 28px rgba(34,80,188,.16); }
.samco-bulletin__nav:active{ transform: translateY(-50%) scale(0.98); }
.samco-bulletin__nav:disabled{ opacity:.45; cursor:not-allowed; filter:grayscale(.2); }

.samco-bulletin__nav--prev{ left: 6px; }
.samco-bulletin__nav--next{ right: 6px; }

.samco-bulletin__dots{
  display:flex; gap:8px; justify-content:center;
}
.samco-bulletin__dot{
  appearance:none; border:1px solid #D9E2F1;
  width:10px; height:10px; border-radius:50%;
  background:#DCE3EE; cursor:pointer; padding:0;
  transition: width .25s ease, background-color .25s ease, opacity .25s ease, transform .25s ease, border-color .25s ease;
}
.samco-bulletin__dot[aria-current="true"]{
  border-color:#2250BC; background:#2250BC;
}


@media (max-width: 1024px){
  .samco-bulletin__nav--prev{ left: 4px; }
  .samco-bulletin__nav--next{ right: 4px; }
}
@media (max-width: 768px){
  .samco-bulletin__title{ font-size:18px; }
  .samco-bulletin__nav{ width: 36px; height: 36px; display:none; }
}



.loading-aof{position:fixed;z-index:999;height:2em;text-align:center;width:2em;overflow:show;margin:auto;top:0;left:0;bottom:0;right:0;-webkit-animation:linear infinite rotate}.loading-aof:before{content:'';display:block;position:fixed;top:0;left:0;width:100%;height:100%;background:radial-gradient(rgba(20,20,20,.8),rgba(0,0,0,.8));background:-webkit-radial-gradient(rgba(20,20,20,.8),rgba(0,0,0,.8))}.loading-aof:not(:required){font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.loading-aof:not(:required):after{content:'';display:block;font-size:10px;width:1em;height:1em;margin-top:-.5em;-webkit-animation:150ms linear infinite spinner;-moz-animation:150ms linear infinite spinner;-ms-animation:spinner 150ms infinite linear;-o-animation:150ms linear infinite spinner;animation:150ms linear infinite spinner;border-radius:.5em;-webkit-box-shadow:rgba(255,255,255,.75) 1.5em 0 0 0,rgba(255,255,255,.75) 1.1em 1.1em 0 0,rgba(255,255,255,.75) 0 1.5em 0 0,rgba(255,255,255,.75) -1.1em 1.1em 0 0,rgba(255,255,255,.75) -1.5em 0 0 0,rgba(255,255,255,.75) -1.1em -1.1em 0 0,rgba(255,255,255,.75) 0 -1.5em 0 0,rgba(255,255,255,.75) 1.1em -1.1em 0 0;box-shadow:rgba(255,255,255,.75) 1.5em 0 0 0,rgba(255,255,255,.75) 1.1em 1.1em 0 0,rgba(255,255,255,.75) 0 1.5em 0 0,rgba(255,255,255,.75) -1.1em 1.1em 0 0,rgba(255,255,255,.75) -1.5em 0 0 0,rgba(255,255,255,.75) -1.1em -1.1em 0 0,rgba(255,255,255,.75) 0 -1.5em 0 0,rgba(255,255,255,.75) 1.1em -1.1em 0 0}@-webkit-keyframes spinner{0%{-webkit-transform:rotate(0);-moz-transform:rotate(0);-ms-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes spinner{0%{-webkit-transform:rotate(0);-moz-transform:rotate(0);-ms-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-o-keyframes spinner{0%{-webkit-transform:rotate(0);-moz-transform:rotate(0);-ms-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner{0%{-webkit-transform:rotate(0);-moz-transform:rotate(0);-ms-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{-webkit-appearance:none!important;margin:0}input[type=number]{-moz-appearance:textfield!important}