/* ===== News Page Styles ===== */
.news-shell {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border: var(--border-glass);
  border-radius: var(--panel-radius);
  overflow: hidden;
}

.embed-crop {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
}

.embed-crop__frame {
  position: absolute;
  top: calc(var(--cut) * -1);
  left: 0;
  width: 100%;
  height: calc(100% + var(--cut));
  border: 0;
  background: #fff;
}

@media (min-width: 769px) {
  .embed-crop { --cut: var(--cut-desktop); }
}

@media (max-width: 768px) {
  .embed-crop { --cut: var(--cut-mobile); }
}

@media (max-width: 980px) {
  .news-shell {
    width: 100% !important;
    height: 600px !important;
    min-height: 600px !important;
    margin-bottom: 20px;
  }
}
