:root{
  --cmp-blue:#15267e;
  --cmp-blue-2:#2c39a4;
  --cmp-red:#ff0a4a;
  --cmp-text:#5f6b95;
  --cmp-dark:#0f1b4c;
  --cmp-bg:#f6f8ff;
  --cmp-border:rgba(21,38,126,.12);
  --cmp-border-strong:rgba(21,38,126,.18);
  --cmp-soft:rgba(21,38,126,.05);
  --cmp-shadow:0 18px 50px rgba(21,38,126,.10);
  --cmp-danger:#c23c3c;
}

.cmp-editor-shell,
.cmp-portal-shell,
.cmp-home-news{
  font-family:"Segoe UI",Arial,sans-serif;
}

.cmp-editor-shell{
  width:100%;
  max-width:1880px;
  margin:0 auto;
}

.cmp-editor-title{
  color:var(--cmp-blue);
  font-size:28px;
  font-weight:1000;
  margin:0 0 18px;
}

.cmp-editor-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:20px;
}

.cmp-tab-btn{
  border:0;
  border-radius:999px;
  background:var(--cmp-blue);
  color:#fff;
  padding:14px 20px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 14px 28px rgba(21,38,126,.18);
}

.cmp-tab-btn.is-active{
  background:var(--cmp-red);
}

.cmp-tab-panel{
  display:none;
}

.cmp-tab-panel.is-active{
  display:block;
}

.is-hidden{
  display:none !important;
}

.cmp-editor-alert{
  padding:14px 16px;
  border-radius:16px;
  margin:0 0 18px;
  font-weight:800;
}

.cmp-editor-alert--ok{
  background:rgba(16,185,129,.10);
  color:#065f46;
  border:1px solid rgba(16,185,129,.20);
}

.cmp-editor-alert--error{
  background:rgba(239,68,68,.08);
  color:#7f1d1d;
  border:1px solid rgba(239,68,68,.18);
}

.cmp-page-credit{
  margin-top:24px;
  font-size:13px;
  color:var(--cmp-blue);
  text-align:center;
}

.cmp-post-form,
.cmp-editor-manage{
  background:#fff;
  border:1px solid var(--cmp-border);
  border-radius:24px;
  box-shadow:var(--cmp-shadow);
}

.cmp-post-form{
  padding:22px;
}

.cmp-editor-manage{
  display:grid;
  grid-template-columns:480px minmax(0,1fr);
  gap:18px;
  padding:18px;
}

.cmp-editor-manage-list,
.cmp-editor-manage-form{
  border:1px solid var(--cmp-border);
  border-radius:20px;
  background:#fff;
}

.cmp-editor-manage-list{
  padding:14px;
}

.cmp-editor-manage-form{
  padding:18px;
}

.cmp-editor-search{
  display:flex;
  gap:10px;
  margin-bottom:16px;
  flex-wrap:wrap;
}

.cmp-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.cmp-field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:16px;
}

.cmp-field label{
  color:var(--cmp-blue);
  font-weight:900;
}

.cmp-help-text{
  display:block;
  margin-top:-2px;
  color:#6f7ba8;
  font-size:12px;
  line-height:1.45;
}

.cmp-field input[type="text"],
.cmp-field input[type="date"],
.cmp-field input[type="time"],
.cmp-field input[type="url"],
.cmp-field input[type="search"],
.cmp-field select,
.cmp-field textarea,
.cmp-editor-search input{
  width:100%;
  min-height:48px;
  box-sizing:border-box;
  border:1px solid var(--cmp-border);
  border-radius:16px;
  padding:12px 14px;
  background:#fff;
  color:var(--cmp-dark);
  outline:none;
}

.cmp-field input:focus,
.cmp-field textarea:focus,
.cmp-field select:focus,
.cmp-editor-search input:focus{
  border-color:rgba(21,38,126,.34);
  box-shadow:0 0 0 4px rgba(21,38,126,.10);
}

.cmp-inline-check{
  display:flex;
  gap:8px;
  align-items:center;
  color:var(--cmp-blue);
  font-size:13px;
}

.cmp-form-actions{
  margin-top:8px;
}

.cmp-primary-btn,
.cmp-editor-search button{
  border:0;
  border-radius:999px;
  background:var(--cmp-blue);
  color:#fff;
  padding:14px 22px;
  font-weight:1000;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(21,38,126,.18);
}

.cmp-danger-btn{
  border:0;
  border-radius:999px;
  background:rgba(194,60,60,.12);
  color:var(--cmp-danger);
  padding:12px 18px;
  font-weight:1000;
  cursor:pointer;
}

.cmp-delete-form{
  margin-top:16px;
}

.cmp-editor-item{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius:16px;
  border:1px solid transparent;
}

.cmp-editor-item + .cmp-editor-item{
  margin-top:8px;
}

.cmp-editor-item.is-active{
  background:var(--cmp-soft);
  border-color:var(--cmp-border);
}

.cmp-editor-item-title{
  color:var(--cmp-blue);
  font-weight:900;
  line-height:1.3;
}

.cmp-editor-item-meta{
  color:#7b8194;
  font-size:12px;
  margin-top:4px;
}

.cmp-editor-link{
  color:var(--cmp-blue);
  font-weight:900;
  text-decoration:none;
}

.cmp-editor-empty{
  padding:18px;
  border:1px dashed var(--cmp-border-strong);
  border-radius:16px;
  color:var(--cmp-blue);
  background:#fff;
}

.cmp-media-picker{
  border:1px dashed rgba(21,38,126,.28);
  border-radius:20px;
  background:var(--cmp-soft);
  padding:14px;
}

.cmp-media-selected,
.cmp-gallery-selected{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:14px;
  min-height:40px;
}

.cmp-selected-card,
.cmp-gallery-thumb{
  position:relative;
  border:1px solid var(--cmp-border);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
}

.cmp-selected-card{
  width:220px;
}

.cmp-selected-card img{
  width:100%;
  height:150px;
  object-fit:cover;
  display:block;
}

.cmp-selected-file{
  display:block;
  padding:18px 16px;
  color:var(--cmp-blue);
  font-weight:800;
}

.cmp-remove-btn{
  position:absolute;
  top:8px;
  right:8px;
  width:28px;
  height:28px;
  border:0;
  border-radius:999px;
  background:var(--cmp-blue);
  color:#fff;
  font-weight:1000;
  cursor:pointer;
  z-index:2;
}

.cmp-picker-panels{
  display:block;
}

.cmp-picker-block{
  border:1px solid var(--cmp-border);
  border-radius:16px;
  background:#fff;
  padding:12px;
  display:none;
}

.cmp-picker-block.is-active{
  display:block;
}

.cmp-picker-block + .cmp-picker-block{
  margin-top:14px;
}

.cmp-picker-subtitle{
  color:var(--cmp-blue);
  font-weight:900;
  margin-bottom:10px;
}

.cmp-picker-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.cmp-picker-head .cmp-picker-subtitle{
  margin-bottom:0;
}

.cmp-picker-link{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:8px 12px;
  border:1px solid var(--cmp-border);
  border-radius:999px;
  background:#fff;
  color:var(--cmp-blue);
  text-decoration:none;
  font-size:12px;
  font-weight:900;
}

.cmp-picker-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:14px;
}

.cmp-picker-tab{
  border:1px solid var(--cmp-border);
  border-radius:999px;
  background:#fff;
  color:var(--cmp-blue);
  padding:10px 14px;
  font-size:12px;
  font-weight:900;
  cursor:pointer;
}

.cmp-picker-tab.is-active{
  background:rgba(21,38,126,.08);
  border-color:rgba(21,38,126,.24);
}

.cmp-library-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(88px,1fr));
  gap:10px;
  max-height:260px;
  overflow:auto;
}

.cmp-library-item{
  border:1px solid var(--cmp-border);
  background:#fff;
  border-radius:14px;
  padding:0;
  cursor:pointer;
  overflow:hidden;
  min-height:88px;
  color:var(--cmp-blue);
  font-size:12px;
  font-weight:700;
}

.cmp-library-item img{
  width:100%;
  height:88px;
  object-fit:cover;
  display:block;
}

.cmp-library-item span{
  display:block;
  padding:10px;
  text-align:left;
}

.cmp-gallery-thumb{
  width:120px;
  height:120px;
  cursor:grab;
}

.cmp-gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cmp-thumb-index{
  position:absolute;
  left:8px;
  bottom:8px;
  background:rgba(21,38,126,.92);
  color:#fff;
  border-radius:999px;
  padding:4px 8px;
  font-size:11px;
  font-weight:900;
}

.cmp-portal-shell{
  display:grid;
  gap:24px;
  width:100%;
  max-width:1680px;
  margin:0 auto;
}

.cmp-portal-shell.has-left-ads.has-right-ads{
  grid-template-columns:minmax(0,15fr) minmax(0,70fr) minmax(0,15fr);
}

.cmp-portal-shell.has-left-ads:not(.has-right-ads){
  grid-template-columns:minmax(0,15fr) minmax(0,85fr);
}

.cmp-portal-shell.has-right-ads:not(.has-left-ads){
  grid-template-columns:minmax(0,85fr) minmax(0,15fr);
}

.cmp-portal-shell:not(.has-left-ads):not(.has-right-ads){
  grid-template-columns:minmax(0,1fr);
}

.cmp-portal-main{
  min-width:0;
}

.cmp-ad-column{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.cmp-ad-slot{
  min-height:360px;
  border-radius:22px;
  border:0;
  background:transparent;
  overflow:visible;
  box-shadow:none;
}

.cmp-ad-slot.has-ad{
  border:1px solid var(--cmp-border);
  background:#fff;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(21,38,126,.07);
}

.cmp-ad-slot.has-ad a{
  display:block;
  height:100%;
}

.cmp-ad-slot img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  animation:cmpAdFade 10s ease-in-out infinite;
}

@keyframes cmpAdFade{
  0%,100%{opacity:1}
  50%{opacity:.78}
}

.cmp-news-hub-head{
  display:flex;
  gap:28px;
  justify-content:space-between;
  align-items:flex-end;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.cmp-news-hub-copy{
  flex:1 1 560px;
  max-width:760px;
}

.cmp-news-hub-badge{
  display:inline-block;
  background:rgba(21,38,126,.10);
  color:var(--cmp-blue);
  font-weight:900;
  border-radius:999px;
  padding:7px 12px;
  font-size:12px;
}

.cmp-news-hub-copy h2{
  margin:14px 0 8px;
  color:var(--cmp-blue);
  font-weight:1000;
  font-size:42px;
  line-height:1.05;
  letter-spacing:-0.03em;
}

.cmp-news-hub-copy p{
  margin:0;
  color:var(--cmp-text);
  font-size:19px;
  line-height:1.45;
}

.cmp-news-hub-search{
  flex:0 1 420px;
  display:flex;
  flex-direction:column;
  gap:12px;
  width:min(100%,420px);
}

.cmp-news-hub-search input{
  border:1px solid var(--cmp-border);
  border-radius:999px;
  padding:15px 18px;
  width:100%;
  box-sizing:border-box;
}

.cmp-news-hub-search button{
  align-self:flex-start;
  border:0;
  border-radius:999px;
  padding:16px 20px;
  min-width:122px;
  font-weight:900;
  background:var(--cmp-blue);
  color:#fff;
  cursor:pointer;
}

.cmp-news-hub-filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:14px 0 22px;
}

.cmp-news-filter{
  display:inline-flex;
  align-items:center;
  border:1px solid var(--cmp-border);
  border-radius:999px;
  padding:10px 14px;
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  color:var(--cmp-blue);
  background:#fff;
}

.cmp-news-filter.is-active{
  background:rgba(21,38,126,.08);
  border-color:rgba(21,38,126,.24);
}

.cmp-news-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}

.cmp-news-card,
.cmp-home-news-card{
  background:#fff;
  border:1px solid rgba(21,38,126,.10);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(21,38,126,.08);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  min-height:100%;
}

.cmp-news-card:hover,
.cmp-home-news-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 38px rgba(21,38,126,.14);
  border-color:rgba(21,38,126,.18);
}

.cmp-news-linkbox,
.cmp-home-news-linkbox{
  display:flex;
  flex-direction:column;
  height:100%;
  text-decoration:none;
  color:inherit;
}

.cmp-news-media,
.cmp-home-news-media{
  position:relative;
  background:linear-gradient(180deg, rgba(21,38,126,.03), rgba(21,38,126,.01));
}

.cmp-media-flag{
  position:absolute;
  left:16px;
  top:16px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(15,27,76,.88);
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.02em;
  box-shadow:0 12px 24px rgba(15,27,76,.18);
}

.cmp-news-thumb,
.cmp-home-news-thumb{
  width:100%;
  aspect-ratio:16/9;
  display:block;
  object-fit:cover;
}

.cmp-news-thumb--ph,
.cmp-home-news-thumb--ph{
  aspect-ratio:16/9;
  background:linear-gradient(135deg, rgba(21,38,126,.08), rgba(11,127,214,.05));
}

.cmp-news-body,
.cmp-home-news-body{
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:14px;
  flex:1;
  text-align:left;
}

.cmp-news-top,
.cmp-home-news-top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

.cmp-news-tag,
.cmp-home-news-tag{
  font-size:12px;
  font-weight:900;
  color:var(--cmp-blue);
  background:rgba(21,38,126,.08);
  padding:8px 12px;
  border-radius:999px;
}

.cmp-news-date,
.cmp-home-news-date{
  font-size:12px;
  color:#7b8194;
}

.cmp-news-title,
.cmp-home-news-title{
  margin:0;
  font-size:21px;
  line-height:1.18;
  font-weight:900;
  color:var(--cmp-blue);
  text-align:left;
  min-height:3.54em;
}

.cmp-news-excerpt,
.cmp-home-news-excerpt{
  margin:0;
  font-size:14px;
  line-height:1.65;
  color:var(--cmp-text);
  text-align:left;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:4.95em;
}

.cmp-news-btn,
.cmp-home-news-btn{
  margin-top:auto;
  align-self:center;
  width:min(280px,100%);
  text-align:center;
  background:var(--cmp-blue-2);
  color:#fff;
  border-radius:999px;
  padding:18px 22px;
  font-size:15px;
  font-weight:900;
  box-shadow:0 18px 34px rgba(44,57,164,.22);
}

.cmp-home-news-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(280px,1fr));
  gap:26px;
  align-items:stretch;
}

.cmp-news-empty{
  padding:16px;
  border:1px dashed rgba(21,38,126,.25);
  border-radius:14px;
  color:var(--cmp-blue);
  background:#fff;
}

.cmp-news-pager{
  display:flex;
  gap:10px;
  justify-content:center;
  align-items:center;
  margin:24px 0 0;
  flex-wrap:wrap;
}

.cmp-news-page{
  text-decoration:none;
  border:1px solid var(--cmp-border);
  border-radius:999px;
  padding:11px 15px;
  font-weight:900;
  font-size:14px;
  color:var(--cmp-blue);
  background:#fff;
}

.cmp-news-page--info{
  opacity:.9;
}

.cmp-single-news-card{
  background:#fff;
  border:1px solid var(--cmp-border);
  border-radius:28px;
  box-shadow:var(--cmp-shadow);
  padding:28px;
}

.cmp-single-kicker{
  font-size:13px;
  font-weight:900;
  color:#7d87ad;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:10px;
}

.cmp-single-title{
  margin:0 0 10px;
  font-size:58px;
  line-height:1.02;
  font-weight:1000;
  letter-spacing:-0.045em;
  color:var(--cmp-blue);
}

.cmp-single-authorline{
  margin:0 0 12px;
  font-size:16px;
  color:var(--cmp-blue);
  font-weight:800;
}

.cmp-single-meta{
  font-size:15px;
  color:#7d87ad;
  margin-bottom:26px;
}

.cmp-single-carousel{
  position:relative;
  margin-bottom:28px;
}

.cmp-single-video{
  position:relative;
  width:100%;
  margin-bottom:28px;
  border-radius:28px;
  overflow:hidden;
  background:#0b102b;
}

.cmp-single-video iframe{
  display:block;
  width:100%;
  border:0;
}

.cmp-single-video--horizontal iframe{
  aspect-ratio:16/9;
  min-height:420px;
}

.cmp-single-video--vertical{
  max-width:520px;
  margin-left:auto;
  margin-right:auto;
}

.cmp-single-video--vertical iframe{
  aspect-ratio:9/16;
  min-height:620px;
}

.cmp-single-carousel-viewport{
  overflow:hidden;
  border-radius:28px;
  background:var(--cmp-soft);
}

.cmp-single-carousel-track{
  display:flex;
  transition:transform .48s ease;
  will-change:transform;
}

.cmp-single-slide{
  flex:0 0 100%;
}

.cmp-single-slide img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:16/9;
  object-fit:cover;
}

.cmp-single-carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border:0;
  border-radius:999px;
  background:rgba(21,38,126,.92);
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

.cmp-single-carousel-prev{left:16px}
.cmp-single-carousel-next{right:16px}

.cmp-single-content{
  font-size:20px;
  line-height:1.85;
  color:var(--cmp-text);
  text-align:justify;
}

.cmp-single-content p{
  text-align:justify;
}

.cmp-single-content img{
  max-width:100%;
  height:auto;
  border-radius:18px;
}

.cmp-single-content a{
  color:var(--cmp-blue);
  font-weight:800;
}

.cmp-single-content .post-views,
.cmp-single-content .postviews,
.cmp-single-content .wp-postviews{
  display:inline-flex;
  align-items:center;
  min-height:20px;
  font-size:0;
  color:transparent;
}

.cmp-single-content .post-views::before,
.cmp-single-content .postviews::before,
.cmp-single-content .wp-postviews::before{
  content:'\1F441';
  font-size:16px;
  line-height:1;
  color:var(--cmp-blue);
}

.cmp-single-pdf{
  margin-top:24px;
}

.cmp-single-pdf a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:999px;
  background:var(--cmp-blue);
  color:#fff;
  text-decoration:none;
  font-weight:900;
}

.cmp-single-divider{
  height:1px;
  background:var(--cmp-border);
  margin:28px 0 18px;
}

.cmp-single-socialbar{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.cmp-single-mainbtn,
.cmp-single-share-btn{
  border:1px solid var(--cmp-border);
  background:#fff;
  color:var(--cmp-blue);
  border-radius:999px;
  padding:12px 16px;
  cursor:pointer;
  font-weight:900;
}

.cmp-single-mainbtn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.cmp-single-mainbtn:hover,
.cmp-single-share-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(21,38,126,.08);
}

.cmp-like-btn.is-liked{
  background:var(--cmp-blue);
  border-color:var(--cmp-blue);
  color:#fff;
}

.cmp-like-btn.is-liked .cmp-like-text,
.cmp-like-btn.is-liked .cmp-like-count{
  color:#fff;
}

.cmp-like-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  color:currentColor;
}

.cmp-like-icon svg{
  width:100%;
  height:100%;
  display:block;
  fill:currentColor;
}

.cmp-like-btn.is-liked .cmp-like-icon{
  color:var(--cmp-red);
}

.cmp-single-share{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-left:auto;
}

.cmp-single-share-btn{
  width:44px;
  height:44px;
  padding:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
}

.cmp-share-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
}

.cmp-share-icon svg{
  width:100%;
  height:100%;
  display:block;
  fill:currentColor;
}

.cmp-single-author{
  margin-top:24px;
  font-size:15px;
  color:var(--cmp-blue);
  font-weight:700;
}

.cmp-single-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.cmp-single-tag{
  display:inline-flex;
  align-items:center;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(21,38,126,.08);
  color:var(--cmp-blue);
  text-decoration:none;
  font-size:13px;
  font-weight:800;
}

.cmp-single-credit{
  margin-top:24px;
  font-size:13px;
  color:var(--cmp-blue);
  text-align:center;
}

@media (max-width: 1480px){
  .cmp-portal-shell{
    grid-template-columns:150px minmax(0,1fr) 150px;
  }
}

@media (min-width: 1281px){
  .cmp-editor-shell{
    width:min(88vw, 1960px);
    max-width:none;
  }

  .cmp-portal-shell--single,
  .cmp-portal-shell--hub{
    width:calc(100vw - 48px);
    max-width:none;
    position:relative;
    left:50%;
    transform:translateX(-50%);
    box-sizing:border-box;
  }

  .cmp-home-news{
    width:min(70vw, 1680px);
    max-width:none;
  }
}

@media (max-width: 1280px){
  .cmp-editor-manage{
    grid-template-columns:1fr;
  }

  .cmp-portal-shell{
    width:100%;
    max-width:100%;
    left:auto;
    transform:none;
    grid-template-columns:1fr;
    grid-template-areas:
      "main"
      "left"
      "right";
  }

  .cmp-portal-shell.has-left-ads.has-right-ads,
  .cmp-portal-shell.has-left-ads:not(.has-right-ads),
  .cmp-portal-shell.has-right-ads:not(.has-left-ads),
  .cmp-portal-shell:not(.has-left-ads):not(.has-right-ads){
    grid-template-columns:1fr;
  }

  .cmp-portal-main{
    grid-area:main;
  }

  .cmp-ad-column--left{
    grid-area:left;
  }

  .cmp-ad-column--right{
    grid-area:right;
  }

  .cmp-ad-column{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
  }

  .cmp-home-news-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 860px){
  .cmp-form-grid,
  .cmp-picker-panels,
  .cmp-news-grid{
    grid-template-columns:1fr;
  }

  .cmp-single-title{
    font-size:34px;
  }

  .cmp-single-content{
    font-size:16px;
    line-height:1.75;
  }

  .cmp-single-video--horizontal iframe,
  .cmp-single-video--vertical iframe{
    min-height:auto;
  }

  .cmp-news-hub-search{
    width:100%;
    max-width:100%;
  }
}

@media (max-width: 640px){
  .cmp-home-news-grid{
    grid-template-columns:1fr;
  }

  .cmp-ad-column{
    grid-template-columns:1fr;
  }

  .cmp-ad-slot{
    min-height:220px;
  }

  .cmp-post-form,
  .cmp-editor-manage{
    padding:14px;
  }

  .cmp-picker-head{
    align-items:stretch;
  }

  .cmp-picker-link{
    width:100%;
    justify-content:center;
  }

  .cmp-single-news-card{
    padding:18px;
  }

  .cmp-news-body,
  .cmp-home-news-body{
    padding:18px;
  }

  .cmp-news-title,
  .cmp-home-news-title{
    font-size:18px;
    min-height:0;
  }

  .cmp-news-excerpt,
  .cmp-home-news-excerpt{
    min-height:0;
  }
}
