@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --agg-bg: #ececec;
  --agg-surface: #ffffff;
  --agg-ink: #11151d;
  --agg-muted: #5f6672;
  --agg-primary: #113f84;
  --agg-accent: #ECAB61;
  --agg-accent-dark: #ECAB61;
  --agg-line: #d7dce3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: white;
  color: var(--agg-ink);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  line-height: 1.35;
}

a {
  color: inherit;
  text-decoration: none;
}
.agg-widget-list {
    padding: 10px;
}
.agg-container {
  width: min(1160px, calc(100% - 18px));
  margin: 0 auto;
}

.agg-topbar {
  background: var(--agg-accent);
}

.agg-topbar-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.agg-logo-link,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.custom-logo,
.custom-logo-link img,
.agg-logo-img {
  max-height: 34px;
  width: auto;
  display: block;
}

.agg-logo-link {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.agg-main-nav {
  min-width: 0;
}

.agg-main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
}

.agg-main-nav a {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
body .agg-section-button {
    font-size: 15px;
    padding: 5px 32px;
}
.agg-nav-search-toggle {
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.agg-nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  opacity: 0.95;
}

.agg-nav-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}
body.search .agg-section {
    margin-top: 0px;
    padding-top: 0px;
}
.agg-search-form {
  position: absolute;
  right: 6px;
  top: 80px;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #d7dce3;
  padding: 6px 8px;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(17, 21, 29, 0.12);
  z-index: 20;
}

.agg-search-form.is-open {
  display: flex;
}

.agg-search-input {
  border: 1px solid #cfd6df;
  border-radius: 3px;
  padding: 6px 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  min-width: 180px;
}

.agg-search-submit {
  border: 0;
  background: var(--agg-primary);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 3px;
  cursor: pointer;
}

.agg-subnav-wrap {
  background: #fff;
}
nav.agg-subnav {
  padding-left: 170px;
  position: relative;
}

.agg-subnav > ul {
  margin: 0;
  padding: 10px 0;
  list-style: none;
  display: flex;
  gap: 15px;
  white-space: nowrap;
  overflow: visible;
  align-items: center;
}

.agg-subnav a {
  color: #242d3a;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.agg-subnav-more {
  position: relative;
}

.agg-subnav-more.is-hidden {
  display: none;
}

.agg-subnav-toggle {
  appearance: none;
  border: 1px solid #e5e9ef;
  background: #fff;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1;
  color: #5b6575;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.agg-subnav-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 180px;
  background: #fff;
  border: 1px solid #e5e9ef;
  box-shadow: 0 10px 24px rgba(17, 21, 29, 0.12);
  border-radius: 8px;
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 20;
  margin: 0;
  list-style: none;
  max-height: 500px;
  overflow-y: auto;
}

.agg-subnav-more.is-open .agg-subnav-dropdown {
  display: flex;
}

.agg-subnav-dropdown li {
  list-style: none;
}

.agg-subnav-dropdown a {
  display: block;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  color: #2b3442;
}

.agg-subnav-dropdown a:hover {
  background: #f3f5f8;
}

.agg-page {
  padding: 10px 0 26px;
}

.agg-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
  align-items: start;
}

.agg-content,
.agg-sidebar {
  min-width: 0;
}

.agg-sidebar {
  width: 300px;
}

.agg-section,
.agg-focus,
.agg-widget,
.agg-popular {
  margin: 0 0 14px;
}

.agg-section-title {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--agg-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}
body h2.agg-section-title {
    margin-bottom: 20px;
}
.agg-section-title span {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: var(--agg-accent);
}
body .agg-section {
    margin-top: 40px;
    padding-top: 20px;
}
.agg-section {
  padding-top: 6px;
}
body.archive .agg-section {
    margin-top: 0px;
    padding-top: 0px;
}
.agg-focus {
  padding-top: 2px;
}

.agg-focus-grid,
.agg-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 10px;
}

.agg-card,
.agg-list-item,
.agg-list-archive {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.agg-card-link {
  display: grid;
  grid-template-columns: 50% minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.agg-card-media,
.agg-list-media,
.agg-widget-media {
  background: #f5f5f5;
  overflow: hidden;
}

.agg-card-media.is-broken,
.agg-list-media.is-broken,
.agg-widget-media.is-broken {
  background: #f5f5f5;
}

.agg-card-media img,
.agg-list-media img,
.agg-widget-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.agg-card.agg-card-focus .agg-card-media img,
.agg-card.agg-card-feature .agg-card-media img {
  height: 210px;
  object-fit: cover;
}

.agg-card.agg-card-focus .agg-card-media,
.agg-card.agg-card-feature .agg-card-media {
  height: 210px;
}

.agg-card-body {
  padding: 0;
}

.agg-time {
    margin: 0 0 3px;
    color: #9ca2ad;
    font-size: 11px;
    line-height: 1;
    text-transform: lowercase;
    margin-bottom: 10px;
}

.agg-card h3,
.agg-list h3,
.agg-widget h4 {
  margin: 0 0 3px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}
.admin-bar header.agg-header {
    z-index: 9999;
}
.page-template-page-latest section.agg-section {
    padding: 0px;
    margin: 0px;
    margin-top: 20px;
}
body.page-template-page-latest .agg-archive-header {
    padding: 0px;
    margin: 0px;
}
.agg-card h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
}
 .agg-feature-grid {
    margin-bottom: 20px;
}
.agg-widget p {
  margin: 0;
  color: var(--agg-muted);
  font-size: 13px;
  line-height: 1.3;
}

.agg-card-body > p:not(.agg-time) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}

.agg-list {
  margin-top: 8px;
}

 .agg-card h3 {
    line-height: 140%;
}

.agg-list-item:first-child {
  border-top: 0;
}

.agg-list-link {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 7px;
  padding: 6px 0;
}

.agg-list-media {
  height: 150px;
}
.agg-list-body {
    padding: 0px 10px;
}
.agg-list-body h3 {
  font-size: 16px;
  margin-bottom: 2px;
}

.agg-list-body p {
  font-size: 13px;
}
.agg-list-body p.agg-time {
    font-size: 11px;
}
.agg-section-actions {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.agg-section-button {
  min-height: 20px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--agg-accent);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
section.agg-widget.agg-widget-rates {
    border: 0px;
}

table.agg-rates-table tr:first-child td {
    border-top: 0px;
}
.agg-popular {
  border: 1px solid #d9a462;
  background: #dfa158;
  padding: 15px;
}

.agg-popular-title {
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

.agg-popular-title span {
    width: 15px;
    height: 15px;
    background: #113f84;
}
.agg-popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
section.agg-popular {
    margin-top: 50px;
}

.agg-popular-tags a {
    text-transform: uppercase;
}
.agg-popular-tags a {
  min-height: 18px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #f2d6ab;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.agg-widget {
  background: #fff;
  border: 1px solid var(--agg-line);
}

.agg-widget-news {
  position: relative;
}
 header.agg-header {
  z-index: 999999;
 }
.agg-widget-title {
  margin: 0;
  padding: 6px 8px;
  background: #fff;
  color: var(--agg-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.agg-widget-title::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--agg-accent);
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}
aside.agg-sidebar h3 {
    padding-left: 0px;
}
.agg-widget-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--agg-line);
}
section.agg-widget.izdvojene {
    border: 0px;
}
section.agg-widget.izdvojene .agg-widget-list {
    padding: 0px;
}
.agg-widget-tabs span,
.agg-widget-tabs button,
.agg-widget-tabs label {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--agg-line);
  color: #fff;
  background: var(--agg-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0 6px;
  border: 0;
  cursor: pointer;
}

.agg-widget-tabs span,
.agg-widget-tabs label {
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--agg-line);
    color: #fff;
    background: var(--agg-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 10px 0px;
}

.agg-widget-tabs span:last-child,
.agg-widget-tabs button:last-child,
.agg-widget-tabs label:last-child {
  border-right: 0;
}

.agg-widget-tabs .is-active {
  background: var(--agg-accent);
}

.agg-widget-tab {
  appearance: none;
  outline: none;
}

.agg-widget-tab-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.agg-widget-panels {
  padding: 6px 8px;
}

.agg-widget-panel {
  display: none;
}

.agg-widget-panel.is-active {
  display: block;
}

#agg-news-tab-latest:checked ~ .agg-widget-tabs label[for="agg-news-tab-latest"],
#agg-news-tab-politika:checked ~ .agg-widget-tabs label[for="agg-news-tab-politika"],
#agg-news-tab-sport:checked ~ .agg-widget-tabs label[for="agg-news-tab-sport"] {
  background: var(--agg-accent);
}

#agg-news-tab-latest:checked ~ .agg-widget-panels [data-panel="latest"],
#agg-news-tab-politika:checked ~ .agg-widget-panels [data-panel="politika"],
#agg-news-tab-sport:checked ~ .agg-widget-panels [data-panel="sport"] {
  display: block;
}

.agg-widget-list {
  padding: 0;
}

 .agg-widget-body h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
}

.agg-widget-item:last-child {
  border-bottom: 0;
}

.agg-widget-item a {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 7px;
  padding: 6px 0;
}

.agg-widget-media {
  height: 70px;
}

.agg-widget h4 {
  font-size: 10px;
  margin-bottom: 2px;
}

.agg-widget p {
  font-size: 9px;
}

.agg-widget-more {
  padding: 6px 8px;
  text-align: center;
}
 
body .agg-widget-list {
    padding: 10px;
}

.agg-widget-more a {
    color: #d19a52;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.agg-widget-ad {
  border: 0;
  background: transparent;
}

.agg-ad-box {
  min-height: 250px;
  background: #e6e6e6;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
}

.agg-weather-box {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 8px;
}

.agg-widget-weather {
  border: 0;
  background: transparent;
}

.agg-widget-weather .agg-weather-slider {

    background: #f8f8f8;
}

.agg-weather-slider {
  justify-content: space-between;
}

.agg-weather-items {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}

.agg-weather-item {
  display: none;
  width: 100%;
}

.agg-weather-item.is-active {
  display: block;
}
.agg-card-body {
    padding: 0px 10px;
}

.agg-weather-arrow {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--agg-primary);
  color: #fff;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}
.agg-weather-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  line-height: 1;
}

.agg-weather-icon {
  width: 36px;
  height: 36px;
}

.agg-weather-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.agg-weather-main strong {
  display: block;
  color: var(--agg-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 31px;
  font-weight: 800;
}

.agg-weather-main small {
  display: block;
  margin-top: 3px;
  color: #4d5560;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.agg-rates-table {
  width: 100%;
  border-collapse: collapse;
}

.agg-rates-box {
  background: #f5f5f5;
  padding: 6px 8px;
}

.agg-rate-icon {
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
}

.agg-rates-table td {
  padding: 5px 8px;
  border-top: 1px solid var(--agg-line);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.agg-rates-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.agg-page-content {
  padding: 8px 0 20px;
}

.agg-page-content p {
  margin: 0 0 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #1c1f25;
}

.agg-archive-header {
  margin-bottom: 10px;
}

.agg-archive-description {
  margin: 0 0 8px;
  color: var(--agg-muted);
}

.agg-archive-feature-grid {
  margin-bottom: 8px;
}

.agg-feed-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.agg-feed-chip {
  min-height: 22px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #d8bd95;
  background: #fff8ef;
  color: #8a6030;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.agg-pagination {
  margin-top: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.agg-pagination .page-numbers {
  min-width: 28px;
  height: 28px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--agg-line);
  background: #fff;
  color: var(--agg-ink);
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.agg-pagination .current {
  border-color: var(--agg-primary);
  background: var(--agg-primary);
  color: #fff;
}
.admin-bar header.agg-header {
    position: sticky;
    top: 30px;
}


.agg-footer {
  background: var(--agg-accent);
  margin-top: 22px;
  padding-top: 8px;
}

.agg-footer-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.custom-logo, .custom-logo-link img, .agg-logo-img {
    max-height: 54px;
    width: auto;
    display: block;
    margin-bottom: -20px;
}

.agg-footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap:35px;
}
.agg-container.agg-footer-inner {
    padding: 50px 0px;
}
.agg-footer-nav a {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.agg-footer-meta {
    min-height: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 0 8px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    padding-bottom: 20px;
}

.agg-footer-meta a {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 980px) {
  .agg-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .agg-sidebar {
    max-width: 420px;
  }
}

@media (max-width: 800px) {
  .agg-container {
    width: calc(100% - 14px);
  }

  .agg-topbar-inner {
    min-height: 52px;
    gap: 12px;
  }

  .custom-logo,
  .custom-logo-link img,
  .agg-logo-img {
    max-height: 34px;
  }

  .agg-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .agg-main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--agg-accent);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 0;
    display: none;
    z-index: 15;
  }

  .agg-main-nav.is-open {
    display: block;
  }

  .agg-main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 14px;
  }

  .agg-main-nav a {
    font-size: 14px;
  }

  .agg-subnav a {
    font-size: 12px;
  }

  .agg-subnav > ul {
    gap: 13px;
    overflow-x: auto;
  }

  .agg-section-title {
    font-size: 20px;
  }

  .agg-focus-grid,
  .agg-feature-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .agg-card-link {
    grid-template-columns: 40% minmax(0, 1fr);
    min-height: 126px;
  }

  .agg-focus .agg-card-media,
  .agg-feature-grid .agg-card-media {
    height: auto;
    min-height: 126px;
  }

  .agg-card h3,
  .agg-list h3 {
    font-size: 15px;
  }

  .agg-card p,
  .agg-list p {
    font-size: 13px;
  }

  .agg-list-link {
    grid-template-columns: 80px minmax(0, 1fr);
    padding: 8px 0;
  }
    .agg-list-media {
        height: auto;
        height: 80px;
    }
 

  .agg-list-body h3 {
    font-size: 17px;
  }

  .agg-list-body p {
    font-size: 13px;
  }

  .agg-widget-item a {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .agg-widget-media {
    height: 62px;
  }

  .agg-footer-inner {
    min-height: 70px;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
  }
p.agg-time {
    font-size: 10px;
}
  .agg-footer-meta {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
  }

nav.agg-subnav {
    padding-left: 10px;
}
    .custom-logo, .custom-logo-link img, .agg-logo-img {
        max-height: 54px;
    }
 .agg-card.agg-card-focus .agg-card-media img, .agg-card.agg-card-feature .agg-card-media img {
    height: 170px;
    object-fit: cover;
}
.agg-nav-search-toggle {
    appearance: none;
    background: transparent;
    border: 0;
    color: inherit;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}
.agg-subnav ul {
    margin: 0;
    padding: 20px 0;
    list-style: none;
    display: flex;
    gap: 25px;
    white-space: nowrap;
    overflow-x: auto;
}
nav#agg-main-nav li, nav#agg-main-nav li a {
    width: 100%;
}
nav.agg-footer-nav ul {
    text-align: center;
}
nav.agg-footer-nav ul {
    justify-content: center;
    margin-top: 20px;
}

nav.agg-footer-nav {
    padding: 0px 30px;
    text-align: center;
}
    .agg-main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
        padding: 6px 14px;
    }
nav#agg-main-nav li a {
    padding: 14px 20px;
    display: block;
}
.agg-main-nav.is-open {
    margin: 0px -10px;
}
.admin-bar header.agg-header {
    position: sticky;
    top: 0px;
}
    .agg-list-body h3 {
        font-size: 14px;
    }

    .agg-subnav-wrap > div {
    width: 100%;
    padding: 0px 10px;
}
.agg-logo-link, .custom-logo-link {
    position: relative;
    z-index: 888;
}
.agg-main-nav {
    border: 0px;
    padding-top: 30px;
}
    .agg-main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 6px 14px;
    }
    .agg-sidebar {
        max-width: 100%;
        width: 100%;
    }
aside.agg-sidebar {
    margin: auto;
}
    .agg-list-body p {
        font-size: 12px;
            display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    }
}


header.agg-header {
    position: sticky;
    top: 0px;
}
