/* Wrapper */
.ar-prog{
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 0;
}

/* Intro */
.ar-prog__intro{
  text-align: center;
  margin-bottom: 22px;
}
.ar-prog__text{
  margin: 0 auto;
  max-width: 780px;
  opacity: .85;
  line-height: 1.6;
}

/* Tabs */
.ar-prog__tabs{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0 22px;
}
.ar-prog__tab{
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .08s ease, border-color .15s ease, background .15s ease;
}
.ar-prog__tab:hover{ transform: translateY(-1px); }
.ar-prog__tab-dot{
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--axeColor, #2b6cb0);
  display: inline-block;
}
.ar-prog__tab.is-active{
  border-color: var(--axeColor, #2b6cb0);
  background: rgba(0,0,0,.02);
}
.ar-prog__tab-label{
  font-weight: 800;
}

/* Panel */
.ar-prog__loading{
  text-align: center;
  padding: 18px 0;
  font-weight: 700;
}

/* Cards grid */
.ar-prog__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 820px){
  .ar-prog__grid{ grid-template-columns: 1fr; }
}

/* Card */
.ar-card{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  padding: 14px 14px 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ar-card__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ar-card__badge{
  width: 44px;
  height: 6px;
  border-radius: 99px;
  background: var(--axeColor, #2b6cb0);
  display: inline-block;
}
.ar-card__theme{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  opacity: .9;
}
.ar-card__theme i{
  color: var(--axeColor, #2b6cb0);
}
.ar-card__title{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

/* ✅ Full content sections */
.ar-card--full{
  gap: 12px;
}
.ar-card__section{
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 10px;
}
.ar-card__section-title{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 6px;
}
.ar-card__rich{
  line-height: 1.6;
  opacity: .92;
}
.ar-card__rich p{
  margin: 0 0 8px;
}
.ar-card__rich p:last-child{
  margin-bottom: 0;
}
.ar-card__video iframe{
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.ar-card__video-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--axeColor, #2b6cb0);
  text-decoration: none;
}
.ar-card__video-link:hover{
  text-decoration: underline;
}

/* Pagination */
.ar-prog__pagination{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 18px 0 0;
}
.ar-prog__page{
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}
.ar-prog__page.is-current{
  border-color: var(--axeColor, #2b6cb0);
  color: #fff;
  background: var(--axeColor, #2b6cb0);
}
.ar-prog__page.is-disabled{
  opacity: .4;
  cursor: not-allowed;
}
.ar-prog__dots{
  opacity: .6;
  font-weight: 900;
}

/* Latest */
.ar-latest{
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 0 30px;
}
.ar-latest__title{
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 12px;
  text-align: left;
}
.ar-latest__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
@media (max-width: 980px){
  .ar-latest__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .ar-latest__grid{ grid-template-columns: 1fr; }
}
.ar-latest__empty{ margin: 0; opacity: .75; }
