/*
Theme Name: Municipiul Ploiesti
Version: 1.0
Tags: css3, development, html5
Description: Municipiul Ploiesti wordpress theme
Author: Municipiul Ploiesti
*/
:root {
  --wp--preset--font-size--small: 12px;
}

body.open-menu {
  overflow: hidden;
}

.beta-banner ~ .header {
  position: relative;
}

.beta-banner {
  background-color: #FDD14B;
  width: 100%;
  padding: 12px 0;
  position: relative;
  z-index: 99;
  display: block;
}
.beta-banner__container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 15px;
}
.beta-banner__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #1b1e2a;
  text-align: center;
  flex: 1;
}
.beta-banner__text a {
  color: #1b1e2a;
  text-decoration: underline;
}
.beta-banner__text a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .beta-banner {
    padding: 10px 0;
  }
  .beta-banner__container {
    padding: 0 40px 0 15px;
  }
  .beta-banner__text {
    font-size: 13px;
    text-align: left;
  }
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.header {
  padding-top: 17px;
}
.header__container {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .header__container {
    align-items: center;
  }
}
.header__logo {
  margin-top: 3px;
}
.header__logo img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 992px) {
  .header__logo {
    width: 150px;
  }
}
.header__right-block {
  width: 75%;
  max-width: 740px;
}
@media (max-width: 992px) {
  .header__right-block {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: 100%;
    padding-right: 15%;
    box-sizing: border-box;
    z-index: 100;
    top: 0;
    left: -1000vw;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.3s;
    border-top: 1px solid #999;
    max-width: 100%;
  }
  .header__right-block.open {
    left: 0;
  }
  .header__right-block::before {
    content: "";
    display: block;
    width: 85%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.header__top-menu {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .header__top-menu {
    order: 2;
    justify-content: flex-start;
    flex-direction: column;
    padding: 10px 15px;
  }
}
.header__top-menu .menu-item a {
  font-size: 14px;
  line-height: 18px;
  color: #1b1e2a;
  text-decoration: none;
}
.header__top-menu .menu-item a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .header__top-menu .menu-item {
    margin-bottom: 10px;
  }
}
.header__top-menu-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0 48px;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .header__top-menu-list {
    gap: 0 10px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.header__nav {
  border-top: 1px solid rgba(27, 30, 42, 0.5);
  padding: 23px 8px 0;
  margin-top: 19px;
}
@media (max-width: 992px) {
  .header__nav {
    padding: 10px 8px 10px;
    margin-top: 10px;
    padding: 10px 15px 10px;
    border-top: 0;
    border-bottom: 1px solid rgba(27, 30, 42, 0.5);
  }
}
.header__nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .header__nav-list {
    gap: 0;
    flex-direction: column;
  }
}
.header__nav-list .nav-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  color: #1b1e2a;
  display: flex;
  align-items: center;
  padding: 14px 33px 13px 28px;
  color: #333;
  text-decoration: none;
  position: relative;
}
@media (max-width: 992px) {
  .header__nav-list .nav-link {
    font-size: 16px;
  }
}
.header__nav-list .nav-link:after {
  position: absolute;
  right: 7px;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(/wp-content/themes/ploiesti/img/chevron-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: -1px;
}
@media (max-width: 991px) {
  .header__nav-list .nav-link:after {
    display: none !important;
  }
}
.header__nav-list .sub-menu {
  display: none;
  position: absolute;
  list-style: none;
  background-color: white;
  box-shadow: 0 2px 4px #b8b8b8;
  padding: 10px 20px;
  width: 100%;
  z-index: 3;
  top: 100%;
}
@media (max-width: 992px) {
  .header__nav-list .sub-menu {
    display: none;
    position: static;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    margin-left: 20px;
    margin-top: 10px;
  }
}
.header__nav-list > li {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .header__nav-list > li {
    flex-wrap: wrap;
    padding-bottom: 0;
  }
}
.header__nav-list > li:hover {
  background: #103156;
}
.header__nav-list > li:hover > a {
  color: white !important;
  position: relative;
}
.header__nav-list > li:hover > a:after, .header__nav-list > li:hover > a:before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7499%) hue-rotate(281deg) brightness(100%) contrast(100%);
}
.header__nav-list > li:hover .sub-menu {
  display: block;
}
.header__nav-list > li a:before {
  position: absolute;
  left: 8px;
  margin-top: -1px;
}
.header__nav-list > li.menu-item-home > a:before {
  content: "";
  display: block;
  width: 16px;
  height: 17px;
  background-image: url(/wp-content/themes/ploiesti/img/icon-menu-home.svg);
  margin-right: 4px;
}
.header__nav-list > li.menu-item-pentru-cetateni > a:before {
  content: "";
  display: block;
  width: 16px;
  height: 17px;
  background-image: url(/wp-content/themes/ploiesti/img/icon-menu-user.svg);
  margin-right: 2px;
}
.header__nav-list > li.menu-item-pentru-afaceri > a:before {
  content: "";
  display: block;
  width: 16px;
  height: 17px;
  background-image: url(/wp-content/themes/ploiesti/img/icon-menu-afaceri.svg);
  margin-right: 2px;
}
.header__nav-list > li.menu-item-primaria-ploiesti > a:before {
  content: "";
  display: block;
  width: 16px;
  height: 17px;
  background-image: url(/wp-content/themes/ploiesti/img/icon-menu-primaria.svg);
  margin-right: 2px;
}
.header__nav-list .submenu-toggle {
  font-size: 0;
  pointer-events: none;
}
.header__nav-list .submenu-toggle:before {
  content: "";
  background-image: url(/wp-content/themes/ploiesti/img/chevron-down.svg);
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  right: 0px;
}
.header__nav-list .menu-item:hover .dropdown-menu {
  display: block;
  animation: fadeInDown 0.3s ease-out;
}
.header__nav-list .menu-item .dropdown-menu {
  position: absolute;
  top: 129px;
  left: 0;
  display: none;
  background: #103156;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  padding: 0;
  width: 100%;
  z-index: 100;
  overflow: hidden;
  box-sizing: border-box;
  padding: 28px 32px 48px 32px;
}
@media (max-width: 991px) {
  .header__nav-list .menu-item .dropdown-menu {
    display: none !important;
  }
}
.header__nav-list .menu-item .dropdown-menu .dropdown-header .dropdown-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: white;
  margin-bottom: 16px;
}
.header__nav-list .menu-item .dropdown-menu .dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 64px;
  padding: 0;
  row-gap: 16px;
}
.header__nav-list .menu-item .dropdown-menu .dropdown-card {
  display: flex;
  align-items: center;
  padding: 16px;
  background: white;
  border-radius: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.header__nav-list .menu-item .dropdown-menu .dropdown-card:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.header__nav-list .menu-item .dropdown-menu .dropdown-card .card-icon {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #F1F2F2;
  border-radius: 8px;
  background-size: 16px;
}
.header__nav-list .menu-item .dropdown-menu .dropdown-card .card-icon.icon-default {
  background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.9999 10.5579C12.9705 11.0455 13.8026 11.828 14.4101 12.8064C14.5303 13.0002 14.5905 13.0971 14.6113 13.2312C14.6535 13.5038 14.4671 13.839 14.2132 13.9469C14.0882 14 13.9477 14 13.6666 14M10.6666 7.68816C11.6544 7.19726 12.3332 6.17791 12.3332 5C12.3332 3.82209 11.6544 2.80274 10.6666 2.31184M9.33322 5C9.33322 6.65685 7.99008 8 6.33322 8C4.67637 8 3.33322 6.65685 3.33322 5C3.33322 3.34315 4.67637 2 6.33322 2C7.99008 2 9.33322 3.34315 9.33322 5ZM1.70604 12.6256C2.76892 11.0297 4.44614 10 6.33322 10C8.22031 10 9.89753 11.0297 10.9604 12.6256C11.1932 12.9752 11.3097 13.15 11.2963 13.3733C11.2858 13.5471 11.1719 13.76 11.0329 13.8651C10.8545 14 10.6091 14 10.1183 14H2.54813C2.05734 14 1.81194 14 1.63352 13.8651C1.49459 13.76 1.38062 13.5471 1.37018 13.3733C1.35678 13.15 1.4732 12.9752 1.70604 12.6256Z" stroke="%231B1E2A" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.header__nav-list .menu-item .dropdown-menu .dropdown-card .card-icon.icon-users {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm4 18v-6h2.5l-2.54-7.63A1.5 1.5 0 0 0 18.54 7H17c-.8 0-1.54.37-2.01.99L14 9h-2v10h4zM12.5 11.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5S11 9.17 11 10s.67 1.5 1.5 1.5zM5.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm2 16v-7H9l-1.17-3.5A1.5 1.5 0 0 0 6.33 9H5.5c-.8 0-1.54.37-2.01.99L2 11v10h5.5z"/></svg>');
}
.header__nav-list .menu-item .dropdown-menu .dropdown-card .card-icon.icon-document {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20Z"/></svg>');
}
.header__nav-list .menu-item .dropdown-menu .dropdown-card .card-content {
  flex: 1;
}
.header__nav-list .menu-item .dropdown-menu .dropdown-card .card-content .card-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
.header__nav-list .menu-item .dropdown-menu .dropdown-card .card-content .card-subtitle {
  font-weight: 400;
  line-height: 18px;
  font-size: 14px;
  margin: 4px 0 0 0;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-menu {
  display: none;
  cursor: pointer;
  position: absolute;
  z-index: 101;
  right: 15px;
  align-items: center;
  height: 30px;
}
.btn-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #000;
  position: relative;
}
.btn-menu span:before, .btn-menu span:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  position: absolute;
  transition: all 0.3s;
}
.btn-menu span:before {
  top: -6px;
}
.btn-menu span:after {
  top: 6px;
}
.btn-menu.open span {
  background-color: transparent;
}
.btn-menu.open span::before {
  top: 0;
  transform: rotate(45deg);
}
.btn-menu.open span::after {
  top: 0;
  transform: rotate(-45deg);
}
@media (max-width: 992px) {
  .btn-menu {
    display: flex;
  }
}

.search-hero {
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  height: 565px;
}
.search-hero:before {
  content: "";
  background: rgba(27, 30, 42, 0.5019607843);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.search-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
}
.search-hero .container {
  z-index: 2;
  position: relative;
}
.search-hero__title {
  color: #f4c134;
  font-weight: 700;
  font-size: 75px;
  line-height: 79px;
  text-align: center;
  margin: 10% 0 30px;
}
@media (max-width: 992px) {
  .search-hero__title {
    font-size: 62px;
    line-height: 64px;
  }
}
@media (max-width: 500px) {
  .search-hero__title {
    font-size: 46px;
    line-height: 48px;
  }
}

.important-services {
  background: #f1f2f2;
  padding: 1px 0;
}
.important-services__container {
  background-color: white;
  max-width: 1227px;
  padding: 32px 92px 56px;
  margin: -183px auto 40px;
  z-index: 1;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .important-services__container {
    padding: 32px 30px 56px;
  }
}
@media (max-width: 768px) {
  .important-services__container {
    padding: 32px 15px;
  }
}
.important-services__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
  margin-top: 0;
}
@media (max-width: 768px) {
  .important-services__title {
    font-size: 36px;
    line-height: 40px;
  }
}
.important-services__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
}
@media (max-width: 500px) {
  .important-services__list {
    grid-template-columns: 1fr;
  }
}
.important-services__list ul {
  padding-left: 0;
}
.important-services__list li {
  list-style: none;
  margin-bottom: 4px;
}
.important-services__list li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #344054;
  padding: 10px 14px;
  display: block;
  text-decoration: none;
  border-radius: 6px;
}
.important-services__list li a:hover {
  background: #f1f2f2;
}
@media (max-width: 768px) {
  .important-services__list li a {
    padding: 5px 14px;
  }
}
.important-services__list .hide-link-menu {
  padding-top: 86px;
  background-repeat: no-repeat;
}
@media (max-width: 500px) {
  .important-services__list .hide-link-menu {
    padding-top: 75px;
  }
}
.important-services__list .help-col-1 {
  background-image: url(/wp-content/themes/ploiesti/img/important-services-2.svg);
}
.important-services__list .help-col-2 {
  background-image: url(/wp-content/themes/ploiesti/img/important-services-2.svg);
}
.important-services__list .help-col-3 {
  background-image: url(/wp-content/themes/ploiesti/img/important-services-3.svg);
}

.hide-link-menu > a {
  display: none !important;
}

ul,
body {
  margin: 0;
  font-weight: 400;
  font-family: "Source Sans 3", sans-serif;
}

.breadcrumbs {
  font-size: 16px;
  line-height: 20px;
  padding: 24px 0;
}
@media (max-width: 992px) {
  .breadcrumbs {
    font-size: 14px;
    line-height: 18px;
  }
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  font-weight: 500;
  align-items: center;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
}
.breadcrumbs__item::after {
  content: "";
  background-image: url(/wp-content/themes/ploiesti/img/slash-divider.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  display: inline-block;
}
.breadcrumbs__item:last-child::after {
  content: none;
}
.breadcrumbs__link {
  color: inherit;
  text-decoration: none;
}
.breadcrumbs__link:hover {
  text-decoration: underline;
}
.breadcrumbs__item--current {
  color: #DB2E2E;
}

.page .have-aside-docs {
  display: grid;
  grid-template-columns: auto 320px;
  gap: 40px;
}
@media (max-width: 992px) {
  .page .have-aside-docs {
    display: block;
  }
}
@media (max-width: 992px) {
  .page .page__description .has-medium-font-size {
    font-size: 17px !important;
  }
}
.page__heading {
  margin: 0;
  font-weight: 700;
  font-size: 55px;
  line-height: 59px;
}
@media (max-width: 992px) {
  .page__heading {
    font-size: 32px;
    line-height: 36px;
  }
}
.page__body {
  padding-bottom: 40px;
}
.page__body .have-aside-docs {
  display: grid;
  grid-template-columns: auto 320px;
  gap: 40px;
}
@media (max-width: 992px) {
  .page__body .have-aside-docs {
    display: block;
  }
}
.page__body .have-aside-img {
  display: grid;
  grid-template-columns: auto 400px;
  gap: 62px;
}
@media (max-width: 992px) {
  .page__body .have-aside-img {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .page__body .have-aside-img .aside {
    order: -1;
    max-width: 350px;
  }
}
.page__body .have-aside-img .aside__photo img {
  width: 100%;
  aspect-ratio: 1/1.21;
  object-fit: cover;
  height: initial;
}
.page__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 64px;
  margin-bottom: 20px;
}
.page__tags-item {
  padding: 10px 14px;
  background: #F1F2F2;
  color: #103156;
  border-radius: 32px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
.page__date {
  margin-top: 24px;
}
.page__date .page__location {
  font-weight: 500;
}
.page__date .page__location,
.page__date .page__date,
.page__date .page__time {
  align-items: center;
  display: flex;
  gap: 7px;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0px;
  margin-top: 0px;
}
.page__date .page__location img,
.page__date .page__date img,
.page__date .page__time img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%);
}
.page__date .page__date,
.page__date .page__time {
  font-size: 14px;
  line-height: 18px;
}

.socials {
  border-top: 64px solid #f1f2f2;
  border-bottom: 24px solid #f1f2f2;
}
@media (max-width: 768px) {
  .socials {
    border-top: 24px solid #f1f2f2;
  }
}
.socials .socials__container {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
@media (max-width: 768px) {
  .socials .socials__container {
    flex-direction: column;
    text-align: center;
  }
}
.socials__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
}
@media (max-width: 992px) {
  .socials__title {
    font-size: 32px;
    line-height: 34px;
  }
}

.socials-title {
  font-weight: 900;
  font-size: 32px;
  line-height: 20px;
}

.socials__nav {
  display: flex;
  gap: 16px;
}
.socials-icon {
  width: 32px;
  height: 32px;
  display: block;
}
.socials__list {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  gap: 16px;
}
.socials__item {
  font-size: 0;
}

.subscribe {
  background: #1b1e2a;
  color: white;
}
.subscribe__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 42px;
  padding-bottom: 42px;
  min-height: 262px;
}
@media (max-width: 992px) {
  .subscribe__container {
    flex-wrap: wrap;
  }
}
.subscribe__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .subscribe__title {
    font-size: 36px;
    line-height: 40px;
  }
}
.subscribe__subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.subscribe .subscribe__form {
  width: 39%;
}
@media (max-width: 992px) {
  .subscribe .subscribe__form {
    width: 100%;
  }
}
.subscribe #mailpoet_form_1 form.mailpoet_form {
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 500px) {
  .subscribe #mailpoet_form_1 form.mailpoet_form {
    justify-content: center;
  }
}
.subscribe #mailpoet_form_1 form.mailpoet_form .mailpoet_paragraph {
  margin: 0;
}
.subscribe #mailpoet_form_1 form.mailpoet_form .mailpoet_paragraph:nth-child(7) {
  width: calc(100% - 155px);
  margin-right: 15px;
}
@media (max-width: 500px) {
  .subscribe #mailpoet_form_1 form.mailpoet_form .mailpoet_paragraph:nth-child(7) {
    width: 100%;
    margin: 10px 0 15px 0;
  }
}
.subscribe #mailpoet_form_1 form.mailpoet_form .mailpoet_paragraph .mailpoet_text {
  border: 0;
  padding: 14px !important;
  border-radius: 8px;
}
.subscribe #mailpoet_form_1 form.mailpoet_form .mailpoet_paragraph .mailpoet_submit {
  background: #db2e2e;
  padding: 16px 30px !important;
  display: inline-block;
  color: white;
  text-decoration: none;
  border: none;
  font-size: 14px;
}
@media (max-width: 768px) {
  .subscribe #mailpoet_form_1 form.mailpoet_form .mailpoet_paragraph .mailpoet_submit {
    margin-bottom: 10px !important;
  }
}
.subscribe #mailpoet_form_1 form.mailpoet_form .mailpoet_form_paragraph {
  font-size: 14px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 500px) {
  .subscribe #mailpoet_form_1 form.mailpoet_form .mailpoet_form_paragraph {
    width: 100%;
    text-align: center !important;
  }
}

.discover-block {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-top: 64px solid #f1f2f2;
  border-bottom: 64px solid #f1f2f2;
}
@media (max-width: 768px) {
  .discover-block {
    border-top: 0;
    border-bottom: 0;
    min-height: initial;
  }
}
.discover-block__container {
  width: 100%;
}
@media (max-width: 768px) {
  .discover-block__container {
    width: 100%;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
    border-radius: 15px;
    padding: 35px;
    box-sizing: border-box;
    border-radius: 0;
  }
}
.discover-block__content {
  width: 58%;
  max-width: 890px;
  padding: 20px 0;
}
@media (max-width: 992px) {
  .discover-block__content {
    width: 49%;
  }
}
@media (max-width: 768px) {
  .discover-block__content {
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .discover-block__content {
    border-radius: 0px;
  }
}
.discover-block__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  margin: 0 0 15px 0;
  color: #101828;
}
@media (max-width: 768px) {
  .discover-block__title {
    font-size: 36px;
    line-height: 40px;
  }
}
.discover-block__text {
  font-size: 20px;
  line-height: 28px;
  color: #475467;
  margin-top: 0;
}
@media (max-width: 768px) {
  .discover-block__text {
    font-size: 18px;
    line-height: 24px;
    color: black;
  }
}
.discover-block__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38%;
  z-index: -1;
  overflow: hidden;
  max-width: 547px;
}
@media (max-width: 992px) {
  .discover-block__image {
    width: 49%;
  }
}
@media (max-width: 768px) {
  .discover-block__image {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
}
.discover-block__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 768px) {
  .discover-block__image img {
    object-position: top;
  }
}
.discover-block .btn-red {
  margin-top: 10px;
}

.institutii {
  background-color: #1b1e2a;
  color: white;
}
.institutii .container {
  background-image: url(/wp-content/themes/ploiesti/img/institutii-bg.png);
  background-position: right 30px top;
  background-repeat: no-repeat;
  min-height: 582px;
  padding: 20px 15px;
}
.institutii a {
  color: inherit;
  display: inline-block;
  padding: 9px 10px;
  text-decoration: none;
  border-radius: 6px;
}
.institutii a:hover {
  background: #db2e2e;
}
.institutii li {
  list-style: none;
}
.institutii ul {
  padding: 0;
}
.institutii__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  .institutii__title {
    font-size: 36px;
    line-height: 40px;
  }
}
.institutii__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .institutii__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.institutii .menu__item {
  margin-bottom: 12px;
}

.poll {
  background: #f4c134;
  padding: 31px 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  bottom: -54px;
  max-width: 1090px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .poll {
    padding: 30px;
  }
}
@media (max-width: 500px) {
  .poll {
    padding: 20px 15px;
    gap: 15px;
    flex-direction: column;
  }
}
.poll__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 36px;
}
@media (max-width: 768px) {
  .poll__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.poll__question {
  font-weight: 400;
  font-size: 14px;
  color: #1b1e2a;
  line-height: 18px;
  margin-left: auto;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .poll__question {
    margin: auto 0;
  }
}

.footer {
  background: #1b1e2a;
  padding: 120px 0 40px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: white;
}
@media (max-width: 992px) {
  .footer {
    padding: 90px 0px 20px;
  }
}
.footer .footer__col-title span,
.footer .footer__col-title a {
  font-weight: 500;
  font-size: 32px;
  line-height: 36px;
}
@media (max-width: 1400px) {
  .footer .footer__col-title span,
  .footer .footer__col-title a {
    font-size: 20px;
    line-height: 24px;
  }
}
.footer a {
  color: white;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer__row {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 992px) {
  .footer__row {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .footer__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer .btn-red {
  padding: 16px 30px;
}
.footer .menu-item:not(.footer__col-title) a {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 8px;
  display: block;
}
.footer__contact {
  margin-bottom: 22px;
  line-height: 1.12;
  min-width: 190px;
}
.footer__contact strong {
  display: block;
  font-weight: 300;
}
.footer__contact a {
  font-size: 14px;
  font-weight: 300;
}
.footer__logo-image {
  margin-bottom: 5px;
}
.footer__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  padding: 0;
  list-style: none;
  gap: 40px;
}
@media (max-width: 992px) {
  .footer__list {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .footer__list {
    grid-template-columns: 1fr;
  }
  .footer__list > li:nth-child(2),
  .footer__list > li:nth-child(3) {
    display: none;
  }
}
.footer__list ul {
  padding: 0;
  list-style: none;
  margin-top: 8px;
}
.footer__col-big {
  grid-column: 2/5;
}
@media (max-width: 992px) {
  .footer__col-big {
    margin-top: 20px;
  }
}
@media (max-width: 992px) {
  .footer .report-problem {
    display: none;
  }
}

.btn-blue {
  background: #103156;
  color: white;
  padding: 12px 40px;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-danger {
  background: #db2e2e;
  color: white;
  padding: 12px 40px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.load-more-wrapper {
  margin-bottom: 40px;
  margin-top: 65px;
}

.category-events__btn {
  margin-bottom: 25px;
}

.category-posts {
  margin-bottom: 25px;
  gap: 8px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-dark {
  background: #103156;
  color: white;
}
.btn-dark:hover {
  background: #0c2643;
}

.btn-yellow {
  background: #F4C134;
  color: #1B1E2A;
}
.btn-yellow:hover {
  background: #d7a627;
}

.btn-dark,
.btn-yellow {
  padding: 15px 40px;
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-dark:active,
.btn-yellow:active {
  transition: 0s;
  transform: scale(0.98);
}

.btn-red {
  padding: 17px 41px;
  display: inline-block;
  color: white;
  font-weight: 500;
  text-decoration: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  background: #db2e2e;
}
.btn-red:hover {
  background: #bd2828;
}
.btn-red:active {
  transition: 0s;
  transform: scale(0.98);
}

.content {
  margin-top: 35px;
}
.content + .aside {
  margin-top: 35px;
}

.single .page__heading {
  border-bottom: 1px solid #1B1E2A;
  padding-bottom: 22px;
}
.single.single-conducere .sidebar-section {
  margin-top: 65px !important;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .single.single-conducere .sidebar-section {
    margin-top: 25px !important;
  }
}
.single.single-conducere .content h5 {
  margin-bottom: 0;
}
.single.single-conducere .content table {
  border-collapse: collapse;
  width: 100%;
  border: none;
  margin-top: 9px;
  margin-bottom: 9px;
}
.single.single-conducere .content table td, .single.single-conducere .content table th {
  border: none;
  border-bottom: 1px solid #E1E6E6;
  padding: 14px 0;
  vertical-align: top;
}
.single.single-conducere .content table td:first-child, .single.single-conducere .content table th:first-child {
  font-weight: 600;
  width: 220px;
}
@media (max-width: 768px) {
  .single.single-conducere .content table td:first-child, .single.single-conducere .content table th:first-child {
    width: 110px;
  }
}
.single.single-conducere .content table tr:last-child td {
  border-bottom: none;
}
.single.single-conducere .page__heading {
  padding-bottom: 0;
  border-bottom: 0;
}
.single.single-conducere .page__position {
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .single.single-conducere .page__position {
    font-size: 20px;
    line-height: 24px;
  }
}
.single.single-conducere .page__position p {
  margin: 0;
}
.single.single-hotarari .page__heading {
  padding-bottom: 8px;
  border-bottom: 0;
  font-style: Bold;
  font-size: 40px;
  line-height: 44px;
}
.single.single-hotarari .page__date {
  margin-top: 0;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid white;
  padding-top: 32px;
  margin-top: 8px;
}
@media (max-width: 992px) {
  .footer__bottom {
    flex-direction: column;
    gap: 10px;
  }
}
.footer__bottom .footer__bottom-list {
  display: flex;
  list-style: none;
  gap: 5px 18px;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .footer__bottom .footer__bottom-list {
    flex-wrap: wrap;
  }
  .footer__bottom .footer__bottom-list li {
    font-size: 12px;
  }
}

.lang {
  margin-left: 50px;
  padding-left: 49px;
  border-left: 1px solid black;
  position: relative;
  padding-right: 24px;
  margin-top: 3px;
}
@media (max-width: 992px) {
  .lang {
    margin-left: 30px;
    padding-left: 30px;
    border: 0;
    margin: 20px 0 0 0;
    padding: 0;
  }
}
.lang:hover .lang__lang-switcher {
  display: block;
}
.lang:before {
  content: "";
  background-image: url(/wp-content/themes/ploiesti/img/chevron-down.svg);
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  right: 0px;
}
.lang__current-lang {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 18px;
  gap: 5px;
  color: #1B1E2A;
  cursor: pointer;
}
html[lang=ro-RO] .lang__current-lang::before, html[lang=en-GB] .lang__current-lang::before {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
}
html[lang=ro-RO] .lang__current-lang::before {
  background-image: url(/wp-content/themes/ploiesti/img/icon-ro.svg);
}
html[lang=en-GB] .lang__current-lang::before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAMAAABBPP0LAAAAt1BMVEWSmb66z+18msdig8La3u+tYX9IaLc7W7BagbmcUW+kqMr/q6n+//+hsNv/lIr/jIGMnNLJyOP9/fyQttT/wb3/////aWn+YWF5kNT0oqz0i4ueqtIZNJjhvt/8gn//WVr/6+rN1+o9RKZwgcMPJpX/VFT9UEn+RUX8Ozv2Ly+FGzdYZrfU1e/8LS/lQkG/mbVUX60AE231hHtcdMb0mp3qYFTFwNu3w9prcqSURGNDaaIUMX5FNW5wYt7AAAAAjklEQVR4AR3HNUJEMQCGwf+L8RR36ajR+1+CEuvRdd8kK9MNAiRQNgJmVDAt1yM6kSzYVJUsPNssAk5N7ZFKjVNFAY4co6TAOI+kyQm+LFUEBEKKzuWUNB7rSH/rSnvOulOGk+QlXTBqMIrfYX4tSe2nP3iRa/KNK7uTmWJ5a9+erZ3d+18od4ytiZdvZyuKWy8o3UpTVAAAAABJRU5ErkJggg==);
}
.lang__lang-switcher {
  width: 100%;
  margin: 0;
  padding: 10px;
  list-style: none;
  display: none;
  position: absolute;
  background-color: white;
  z-index: 1;
}
.lang__lang-switcher .lang-item {
  margin-bottom: 5px;
}
.lang__lang-switcher a {
  font-size: 14px;
  line-height: 18px;
  color: #1b1e2a;
  text-decoration: none;
}

.search-form {
  width: 80%;
  max-width: 1036px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .search-form {
    width: 100%;
  }
}

.search__group {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  border: 1px solid #e0e0e0;
  padding: 12px 16px 12px 105px;
  box-shadow: 0 0 0 1px transparent;
  transition: box-shadow 0.2s ease-in-out;
  background-image: url(/wp-content/themes/ploiesti/img/search.svg);
  background-position: center left 80px;
  background-repeat: no-repeat;
  height: 50px;
}
@media (max-width: 1024px) {
  .search__group {
    padding: 12px 16px 12px 50px;
    background-position: center left 25px;
  }
}
@media (max-width: 500px) {
  .search__group {
    padding: 7px 15px;
    background-image: none;
    height: 25px;
  }
}
.search__group .btn-red-round {
  padding: 14px 34px;
  font-size: 14px;
  font-weight: 300;
}
@media (max-width: 500px) {
  .search__group .btn-red-round {
    font-size: 0 !important;
    padding: 20px;
    background-image: url(/wp-content/themes/ploiesti/img/search.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent !important;
    background-size: 24px;
  }
}

.search__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: #0b2846;
}
.search__input::placeholder {
  color: #0b2846;
  opacity: 0.8;
}

.btn-red-round {
  background-color: #d62f2f;
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.btn-red-round:hover {
  background-color: #b92424;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section__header {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section__header-txt {
  font-size: 39px;
  font-weight: bold;
  color: #1b1e2a;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 27px;
}
.section__header-nav {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
}
.section__header-link {
  text-decoration: none;
  cursor: pointer;
  border: solid rgba(27, 30, 42, 0.3019607843);
  border-width: 1px;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 8px;
  padding: 10px 26px;
}
.section__header-link.disabled {
  opacity: 0.4;
}
.section__header-link:first-child {
  border-right: 0;
  border-radius: 8px 0 0 8px;
}
.section__header-link:last-child {
  border-left: 0;
  border-radius: 0 8px 8px 0;
}
.section__header-link--active:first-child {
  background: #db2e2e;
  color: white;
}
.section__header-link--active:first-child path {
  stroke: white;
}
.section__header-link--active:last-child {
  background: #f4c134;
}
.section__header-separator {
  color: #999;
}
.section__footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  flex-wrap: wrap;
  font-size: 24px;
  font-weight: 900;
}
.section__footer-url {
  background-color: #d9d9d9;
  border: 2px solid #d9d9d9;
  color: #333;
  padding: 5px 15px;
  text-decoration: none;
  transition: all 0.3s;
}
.section__footer-url:hover {
  background-color: transparent;
}

.section__header + .article-grid {
  margin-top: 55px;
}

@media (min-width: 992px) {
  .home .article-grid .article:first-child {
    grid-column: 1/span 3;
    min-height: 470px;
  }
  .home .article-grid .article:nth-child(2) {
    grid-column: 4/span 3;
    min-height: 470px;
  }
  .home .article-grid .article:nth-child(3) {
    grid-column: 1/span 2;
  }
  .home .article-grid .article:nth-child(4) {
    grid-column: 3/span 2;
  }
  .home .article-grid .article:nth-child(5) {
    grid-column: 5/span 2;
  }
  .home .article-grid .article:nth-child(2) .article__content, .home .article-grid .article:first-child .article__content {
    border-top: 1px solid white;
    max-width: calc(100% - 42px);
    margin-left: 9px;
    min-height: initial;
    padding-left: 0;
    padding-top: 15px;
  }
  .home .article-grid .article:nth-child(2) .article__date, .home .article-grid .article:first-child .article__date {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
  }
  .home .article-grid .article:nth-child(2) .article__title, .home .article-grid .article:first-child .article__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    margin-top: 17px;
    background-position: right 8px top 10px;
    height: initial;
    height: 117px;
    -webkit-line-clamp: 3;
  }
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px 32px;
  margin-bottom: 30px;
  transition: 0.5s;
}
.article-grid.loading {
  opacity: 0.2;
}
.article-grid .article:before {
  content: "";
  background: rgba(27, 30, 42, 0.5019607843);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.article {
  display: flex;
  flex-direction: column;
  padding: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  min-height: 320px;
  justify-content: flex-end;
  align-items: flex-start;
  color: white;
  text-decoration: none;
}
@media (max-width: 768px) {
  .article {
    min-height: initial;
  }
}
.article:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.article__img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}
.article__header {
  display: inline-flex;
  margin-bottom: auto;
  z-index: 1;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  padding: 16px 40px;
  background: #db2e2e;
}
@media (max-width: 768px) {
  .article__header {
    padding: 10px 20px;
    font-size: 14px;
    line-height: 18px;
  }
}
.article--event .article__content {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.article--event .article__header {
  background: #f4c134;
  color: #1b1e2a;
}
.article__content {
  width: 100%;
  min-height: 150px;
  padding-top: 17px;
  z-index: 1;
  padding-left: 8px;
  max-width: 350px;
}
@media (max-width: 992px) {
  .article__content {
    height: initial;
    min-height: initial;
    padding-left: 0;
    padding-top: 0;
    margin-top: 40px;
  }
}
.article__location, .article__date {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 15px;
}
.article__location {
  margin-bottom: 0;
}
.article__dates {
  font-size: 12px;
  margin-bottom: 5px;
}
.article__dates.article__dates {
  margin-bottom: 15px;
}
.article .article__time,
.article .article__date {
  font-size: 14px;
}
.article .article__title img,
.article .article__time img,
.article .article__location img,
.article .article__date img {
  position: relative;
  top: 3px;
  margin-right: 2px;
}
.article .article__location {
  order: 1;
}
.article .article__date {
  margin-bottom: 0;
}
.article__title {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='12' fill='none'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1.333 11 10-10m0 0h-10m10 0v10'/%3E%3C/svg%3E");
  margin-bottom: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 26px;
  margin-top: 7px;
  height: 153px;
  width: 100%;
  padding-right: 40px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: right top 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 992px) {
  .article__title {
    font-size: 20px;
    line-height: 24px;
    height: initial;
  }
}
.article__title--sidebar {
  font-size: 16px;
}
.article.article--event .article__time,
.article.article--event .article__date,
.article.article--event .article__location {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .article-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .section__header-txt {
    font-size: 36px;
  }
  .section__header-nav {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .section__header-nav {
    font-size: 16px;
  }
}
.load {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
  visibility: hidden;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.section__header-nav.loading + .load {
  visibility: visible;
}

.nav-cards-section {
  background: #f1f2f2;
  padding-top: 64px;
  padding-bottom: 64px;
}

.nav-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1245px;
}
@media (max-width: 768px) {
  .nav-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.nav-cards__card {
  background-image: url(/wp-content/themes/ploiesti/img/nav-cards.webp);
  background-color: #1b1e2a;
  background-repeat: no-repeat;
  position: relative;
  padding: 40px 20px;
  overflow: hidden;
  min-height: 425px;
  background-size: contain;
  background-position: center;
  color: white;
}
@media (max-width: 768px) {
  .nav-cards__card {
    min-height: auto;
  }
}
.nav-cards__card ul {
  margin-left: 6px;
}
.nav-cards__card--primaria {
  border-left: 12px solid #f4c134;
}
.nav-cards__card--consiliul-local {
  border-left: 12px solid #db2e2e;
}
.nav-cards__card--transparenta-implicare {
  border-left: 12px solid #103156;
}
.nav-cards__header {
  margin-bottom: 16px;
}
.nav-cards__icon {
  width: 72px;
  height: 75px;
  display: inline-flex;
}
.nav-cards__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  margin: 60px 16px 17px 16px;
}
@media (max-width: 992px) {
  .nav-cards__title {
    font-size: 24px;
    line-height: 26px;
  }
}
@media (max-width: 768px) {
  .nav-cards__title {
    margin: 16px;
  }
}
.nav-cards__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-cards__list li {
  margin: 8px 0 12px;
}
.nav-cards__list a {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  display: block;
  padding: 6px 10px;
  text-decoration: none;
  border-radius: 6px;
  color: inherit;
}
.nav-cards__list a:hover {
  background: rgb(219, 46, 46);
}

.section__header + .announcements-list {
  margin-top: 32px;
}

.announcements-list {
  display: grid;
  grid-template-columns: 1fr 38%;
  gap: 1%;
  align-items: flex-start;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .announcements-list {
    grid-template-columns: 1fr;
    position: relative;
  }
}
.announcements-list .sidebar-section {
  position: sticky;
  top: 30px;
}
.announcements-list .announcements {
  display: grid;
  grid-template-columns: 114px 1fr;
  gap: 25px;
  margin-bottom: 31px;
  text-decoration: none;
  color: #1b1e2a;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .announcements-list .announcements {
    grid-template-columns: 100px 1fr;
    gap: 10px;
    margin-bottom: 25px;
  }
  .announcements-list .announcements img {
    width: 100%;
    height: initial;
  }
}
.announcements-list .announcements .article__title {
  height: initial;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 7px;
}
@media (max-width: 768px) {
  .announcements-list .announcements .article__title {
    font-size: 16px;
    line-height: 20px;
    padding-right: 0;
    margin-top: 0px;
    margin-bottom: 0;
  }
}
.announcements-list .announcements .article__text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  margin: 0 0 13px;
}
@media (max-width: 768px) {
  .announcements-list .announcements .article__text {
    margin: 0;
  }
}
.announcements-list .announcements .article__category {
  color: #db2e2e;
  margin-top: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .announcements-list .announcements .article__category {
    font-size: 16px;
    line-height: 20px;
  }
}
.announcements-list .announcements .article__category--consultare {
  color: #f4c134;
}
.announcements-list > img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .announcements-list > img {
    display: none;
  }
}
.announcements-list .announcements__pic img {
  object-fit: cover;
}

.report-problem__title {
  margin-top: 15px;
  margin-bottom: 17px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  display: block;
}

.category-page__heading {
  font-size: 55px;
  font-weight: 700;
  line-height: 59px;
  margin-bottom: 40px;
  margin-top: 0;
}
@media (max-width: 992px) {
  .category-page__heading {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
.category-page .article-grid {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .category-page .article-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 992px) {
  .category-page .article-grid .article .article__content {
    min-height: 150px;
  }
}
.category-page .category-first .article-grid {
  grid-template-columns: 1fr;
}
@media (max-width: 992px) {
  .category-page .category-first .article-grid {
    margin-bottom: 35px;
  }
}
.category-page .category-first .article-grid .article {
  min-height: 468px;
}
@media (max-width: 992px) {
  .category-page .category-first .article-grid .article {
    min-height: initial;
    aspect-ratio: initial;
  }
}
.category-page .category-first .article-grid .article .article__content {
  border-top: 1px solid white;
  max-width: 571px;
  min-height: initial;
  margin-left: 9px;
  padding-top: 16px;
  padding-left: 0;
}
@media (max-width: 992px) {
  .category-page .category-first .article-grid .article .article__content {
    max-width: 100%;
    min-height: initial;
    margin-left: 0;
  }
  .category-page .category-first .article-grid .article .article__content .article__title {
    height: initial;
    min-height: initial;
  }
}
.category-page .category-first .article-grid .article .article__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 36px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  height: initial;
  min-height: 110px;
  margin-top: 16px;
  background-position: right 4px top 10px;
}
@media (max-width: 992px) {
  .category-page .category-first .article-grid .article .article__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.category-page .category-first .article-grid .article__date {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.filters {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.filters--stiri {
  justify-content: flex-end;
}
.filters--stiri .filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filters--stiri .filter-group label {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filters--stiri select {
  appearance: none;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  background-size: 12px 8px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 40px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  min-width: 140px;
  transition: all 0.2s ease;
}
.filters--stiri select:hover {
  border-color: #db2e2e;
}
.filters--stiri select:focus {
  outline: none;
  border-color: #db2e2e;
  box-shadow: 0 0 0 2px rgba(219, 46, 46, 0.1);
}
.filters--stiri select option {
  padding: 8px;
  font-size: 14px;
}
.filters--stiri button[type=submit] {
  background: #db2e2e;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.filters--stiri button[type=submit]:hover {
  background: #b82525;
}
.filters--events {
  flex-wrap: wrap;
  gap: 12px;
  background-color: transparent;
}
.filters--events .filters--events__tabs {
  display: flex;
  border-radius: 8px;
  border: 1px solid rgba(27, 30, 42, 0.3019607843);
}
.filters--events .filters--events__tabs a {
  padding: 8px 16px;
  text-decoration: none;
  color: #1B1E2A;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.filters--events .filters--events__tabs a:hover {
  background: #f4c134;
}
.filters--events .filters--events__tabs a.is-active {
  background: #f4c134;
}
.filters--events .filters--events__tabs a:first-child {
  border-radius: 6px 0px 0px 6px;
}
.filters--events .filters--events__tabs a:last-child {
  border-radius: 0px 6px 6px 0px;
}
.filters--events input[type=date],
.filters--events input[type=text] {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  min-width: 120px;
}
.filters--events input[type=date]:focus,
.filters--events input[type=text]:focus {
  outline: none;
  border-color: #db2e2e;
  box-shadow: 0 0 0 2px rgba(219, 46, 46, 0.1);
}
.filters--events button[type=submit] {
  background: #db2e2e;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.filters--events button[type=submit]:hover {
  background: #b82525;
}

@media (max-width: 768px) {
  .filters--stiri select {
    width: 100%;
    min-width: auto;
  }
  .filters--stiri button[type=submit] {
    width: 100%;
  }
  .filters--events .filters--events__tabs {
    justify-content: center;
  }
  .filters--events input[type=date],
  .filters--events input[type=text] {
    width: 100%;
  }
}
.category-page--events .category-first .article__title {
  min-height: initial !important;
}
.category-page--events .article-grid .article--event .article__content {
  display: grid;
  min-height: initial;
  border: 0;
}
.category-page--events .article-grid .article--event .article__content .article__title {
  order: -1;
  height: initial;
  margin-bottom: 10px;
  background-position: right top 10px;
}

.services-search-container {
  background: #F1F2F2;
  padding: 14px 0;
}

.services-search {
  margin: 2px 0;
  text-align: center;
}
.services-search .search-form {
  margin: 0;
  width: 100%;
  max-width: 1061px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 24px;
  column-gap: 32px;
  margin: 64px 0 0px 0;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.service-card {
  position: relative;
  border-radius: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  border-radius: 12px;
}
.service-card--no-image .service-card__content {
  background: #F1F2F2;
  color: #1D2939;
}

.service-card__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.service-card__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__placeholder {
  width: 100%;
  height: 100%;
}

.service-card__content {
  position: relative;
  background: rgba(0, 0, 0, 0.4901960784);
  padding: 32px 69px;
  height: 100%;
  color: white;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .service-card__content {
    padding: 25px;
  }
}

.service-card__icon {
  margin-bottom: 34px;
}
.service-card__title {
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-card__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  max-width: 350px;
}
@media (max-width: 768px) {
  .service-card__text {
    max-width: 100%;
  }
}
.service-card__text p {
  margin-bottom: 0;
  height: 106px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
}

.no-results-message {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px;
  color: #666;
  font-size: 18px;
}
.no-results-message p {
  margin: 0;
}

/* Organization Section Styles */
.organization-title {
  margin-top: 42px;
  font-size: 55px;
  line-height: 59px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .organization-title {
    font-size: 28px;
    line-height: 32px;
  }
}

.organization-section {
  margin-bottom: 64px;
}
.organization-section + .aside {
  margin-top: 140px;
}
@media (max-width: 992px) {
  .organization-section + .aside {
    margin-top: 0;
  }
}

.organization-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hotarari-card,
.organization-card {
  background: #F1F2F2;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  gap: 32px;
}
.hotarari-card:hover,
.organization-card:hover {
  transform: translateY(-2px);
}

.hotarari-card__content,
.organization-card__content {
  flex: 1;
}

.hotarari-card__title,
.organization-card__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin: 0;
}
@media (max-width: 768px) {
  .hotarari-card__title,
  .organization-card__title {
    font-size: 16px;
    line-height: 20px;
  }
}

.hotarari-card__description,
.organization-card__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  margin: 8px 0px 0 0;
}
.hotarari-card__arrow,
.organization-card__arrow {
  flex-shrink: 0;
  margin-left: 20px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .hotarari-card__arrow,
  .organization-card__arrow {
    display: none;
    margin-left: 15px;
  }
  .hotarari-card__arrow img,
  .organization-card__arrow img {
    width: 36px;
    height: 36px;
  }
}
.hotarari-card__arrow img,
.organization-card__arrow img {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.error-404-page {
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.error-404-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .error-404-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.error-404-text .error-404-label {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 12px;
  display: block;
}
.error-404-text .error-404-title {
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  margin: 0;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .error-404-text .error-404-title {
    font-size: 32px;
    line-height: 36px;
  }
}
.error-404-text .error-404-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin: 0;
  margin-bottom: 48px;
  color: #475467;
}
@media (max-width: 768px) {
  .error-404-text .error-404-description {
    font-size: 16px;
    line-height: 22px;
  }
}

.error-404-search .search-form {
  max-width: 100%;
  margin: 0;
  width: 100%;
}
.error-404-search .search-input-wrapper {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .error-404-search .search-input-wrapper {
    max-width: 100%;
    flex-direction: column;
  }
}
.error-404-search .search-field {
  flex: 1;
  padding: 16px 20px 16px 40px;
  border: 1px solid #E1E6E6;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  background-image: url(/wp-content/themes/ploiesti/img/search.svg);
  background-repeat: no-repeat;
  background-position: left 13px center;
}
.error-404-search .search-field:focus {
  border-color: #DB2E2E;
}
.error-404-search .search-submit {
  background: #DB2E2E;
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.error-404-search .search-submit:hover {
  background: #B82525;
}

.error-404-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}
.error-404-graphic img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .error-404-graphic img {
    max-height: 250px;
  }
}

.services-search-container + .page .page__header {
  margin-top: 40px;
  margin-bottom: 40px;
}
.services-search-container + .page .page__header .page__heading {
  font-weight: 700;
  font-size: 75px;
  line-height: 79px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .services-search-container + .page .page__header .page__heading {
    font-size: 40px;
    line-height: 44px;
  }
}
.services-search-container + .page .page__header .page__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}

.lead-archive {
  background: #F1F2F2;
}

.lead-section {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 462px 1fr;
  padding-bottom: 60px;
  border-top: 1px solid #000000;
  margin-top: 63px;
  padding-top: 24px;
  padding-bottom: 60px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .lead-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.lead-section:nth-child(1) {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.lead-section__title {
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 40px;
  line-height: 44px;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .lead-section__title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 0;
  }
}

.lead-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  padding-top: 36px;
  max-width: 660px;
}
@media (max-width: 1200px) {
  .lead-list {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .lead-list {
    padding-top: 0px;
  }
}
@media (max-width: 768px) {
  .lead-list {
    gap: 10px;
  }
}

.lead-item {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.lead-item__inner {
  position: relative;
  display: flex;
  aspect-ratio: 1/1.21;
  width: 100%;
  flex-direction: column;
}
.lead-item__image {
  background: #F1F2F2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.lead-item__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.lead-item__overlay {
  padding: 42px 27px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .lead-item__overlay {
    padding: 10px;
  }
}
.lead-item__name {
  font-weight: 700;
  font-size: 40px;
  margin: 0 0 6px 0px;
  font-size: 21px;
  line-height: 24px;
}
@media (max-width: 992px) {
  .lead-item__name {
    font-size: 24px;
    margin: 0;
    line-height: 28px;
  }
}
@media (max-width: 768px) {
  .lead-item__name {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
  }
}
.lead-item__position {
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  margin: 0;
}

.monitorul-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .monitorul-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.monitorul-card {
  padding: 24px;
  text-decoration: none;
  color: white;
  position: relative;
  transition: all 0.3s ease;
  min-height: 350px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .monitorul-card {
    min-height: initial;
  }
}
.monitorul-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7215686275);
}
.monitorul-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.monitorul-card:hover .monitorul-card__icon {
  transform: translate(5px, -5px);
}
.monitorul-card__content {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='12' fill='none'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1.333 11 10-10m0 0h-10m10 0v10'/%3E%3C/svg%3E");
  position: relative;
  z-index: 2;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 350px;
  background-position: top 10px right;
}
.monitorul-card__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  margin: 0;
}
.monitorul-card__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  height: 90px;
  margin-top: 7px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  .monitorul-card__description {
    height: initial;
    -webkit-line-clamp: initial;
    line-clamp: initial;
  }
}

/* Document Card Styles */
.documents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.document-card {
  background: #F1F2F2;
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.document-card:before {
  background-image: url(/wp-content/themes/ploiesti/img/download.svg);
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  right: 40px;
  top: 50%;
  margin-top: -12px;
}
.document-card:hover {
  transform: translateY(-2px);
}
.document-card__date {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
.document-card__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin: 0;
}
.document-card__excerpt {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}

.organization-grid,
.hotarari-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-section {
  background: #f1f2f2;
  margin-bottom: 38px;
  border-radius: 8px;
  padding: 24px;
}
@media (max-width: 992px) {
  .sidebar-section {
    width: 100%;
    box-sizing: border-box;
    display: block;
  }
}
@media (max-width: 768px) {
  .sidebar-section {
    padding: 20px;
  }
}
.sidebar-section__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  margin-top: 0;
}
.sidebar-section__subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px 0;
}
.sidebar-section__list {
  padding: 0;
  list-style: none;
}
.sidebar-section__list li:last-child a {
  border-bottom: none;
}
.sidebar-section__item a {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #1b1e2a;
  text-decoration: none;
  position: relative;
  display: block;
  padding: 25px 32px 25px 32px;
  border-bottom: 1px solid #103156;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sidebar-section__item a:before {
  background-image: url(/wp-content/themes/ploiesti/img/download.svg);
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  right: 0px;
  margin-top: -2px;
}
.sidebar-section__item a:after {
  top: 0;
  content: "";
  background-image: url(/wp-content/themes/ploiesti/img/file-attachment.svg);
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  left: 0;
  top: 23px;
}
.sidebar-section__item a:hover {
  text-decoration: underline;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-item:last-child {
  margin-bottom: 0;
}
.contact-item__icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
}
.contact-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact-item__icon:empty {
  display: none;
}
.contact-item__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-item__label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
.contact-item__value {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}
.contact-item__value.program {
  font-weight: 500;
}

.contact-divider {
  height: 1px;
  background: #ddd;
  margin: 16px 0;
}

.departament-lead-section {
  margin: 0 0 60px 0;
  grid-template-columns: 1fr;
}
.departament-lead-section__title {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 59px;
}
@media (max-width: 768px) {
  .departament-lead-section__title {
    font-size: 32px;
    margin-bottom: 0px;
  }
}
.departament-lead-section .lead-list {
  gap: 32px;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .departament-lead-section .lead-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .departament-lead-section .lead-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.departament-lead-section .lead-item {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
  min-width: 300px;
  flex: 1;
  text-decoration: none;
}
@media (max-width: 768px) {
  .departament-lead-section .lead-item {
    min-width: auto;
    width: 100%;
  }
}
.departament-lead-section .lead-item__inner {
  aspect-ratio: unset;
  position: relative;
  align-items: flex-start;
  flex-direction: row;
}
.departament-lead-section .lead-item__image {
  width: 176px;
  height: 214px;
  margin-right: 15px;
  overflow: hidden;
  min-width: 176px;
}
@media (max-width: 768px) {
  .departament-lead-section .lead-item__image {
    width: 100px;
    height: 100px;
    min-width: initial;
  }
}
.departament-lead-section .lead-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.departament-lead-section .lead-item__overlay {
  position: static;
  background: transparent;
  padding: 0;
  margin: 0;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.departament-lead-section .lead-item__name {
  font-size: 21px;
  font-weight: 700;
  color: #212529;
  margin: 41px 0 6px 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .departament-lead-section .lead-item__name {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 6px;
  }
}
.departament-lead-section .lead-item__position {
  font-size: 12px;
  color: #212529;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .departament-lead-section .lead-item__position {
    font-size: 16px;
  }
}

.no-results-message {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}
.no-results-message p {
  font-size: 16px;
  margin: 0;
}

.sidebar-list {
  padding: 0;
  list-style: none;
  margin: 0;
}
.sidebar-list__item {
  cursor: pointer;
  border-bottom: 1px solid #103156;
}
.sidebar-list__item:last-child {
  border-bottom: none;
}
.sidebar-list__link {
  display: flex;
  align-items: center;
  padding: 16px 0;
  text-decoration: none;
  color: #1b1e2a;
  transition: all 0.3s ease;
}
.sidebar-list__link:hover {
  color: #0073aa;
  text-decoration: none;
}
.sidebar-list__icon {
  margin-right: 12px;
  flex-shrink: 0;
}
.sidebar-list__icon img {
  width: 24px;
  height: 24px;
  display: block;
}
.sidebar-list__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
.sidebar-list__count {
  margin-left: auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: right;
  transition: opacity 0.2s ease;
  position: relative;
}
.sidebar-list__count.loading {
  font-size: 0;
}
.sidebar-list__count.loading::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border: 2px solid #ddd;
  border-top: 2px solid #0073aa;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.sidebar-list__count.loading {
  color: transparent;
}
.sidebar-list__link--active {
  background: #103156;
  color: #ffffff !important;
  margin: -1px -23px;
  padding: 17px 23px;
}
@media (max-width: 768px) {
  .sidebar-list__link--active {
    margin: -1px -21px;
    padding: 17px 21px;
  }
}
.sidebar-list__link--active .sidebar-list__text,
.sidebar-list__link--active .sidebar-list__count {
  color: #ffffff;
}
.sidebar-list__link--active .sidebar-list__icon img {
  filter: brightness(0) invert(1);
}

@keyframes spin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}
.active-filters {
  margin-bottom: 24px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  display: none;
}
@media (max-width: 767px) {
  .active-filters {
    display: block;
  }
}
.active-filters__title {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 12px;
}
.active-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.active-filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #0073aa;
  color: white;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  gap: 6px;
}
.active-filter-chip__category {
  opacity: 0.8;
  font-size: 12px;
}
.active-filter-chip__label {
  font-weight: 600;
}
.active-filter-chip__remove {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}
.active-filter-chip__remove:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.document-card--downloadable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.document-card--no-file {
  cursor: not-allowed;
  opacity: 0.7;
}
.document-card--no-file:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.document-card__no-file {
  color: #666;
  font-style: italic;
  font-size: 14px;
  margin-top: 8px;
}

.hotarari-dates .hotarari-date-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #103156;
}
.hotarari-dates .hotarari-date-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.hotarari-dates .hotarari-date-label {
  font-size: 14px;
  font-weight: 600;
  color: #103156;
  margin-bottom: 4px;
}
.hotarari-dates .hotarari-date-value {
  font-size: 16px;
  font-weight: 400;
  color: #1b1e2a;
  line-height: 1.4;
}

.hotarari-grid .loading {
  text-align: center;
  padding: 40px 20px;
  font-size: 16px;
  color: #666;
}

.pagination {
  margin-top: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}
.pagination .page-numbers li {
  border: 1px solid #F1F2F2;
  margin-right: -1px;
  overflow: hidden;
}
.pagination .page-numbers li:first-child {
  border-radius: 8px 0 0 8px;
}
.pagination .page-numbers li .prev {
  padding-right: 14px;
  padding-left: 43px;
  position: relative;
}
@media (max-width: 768px) {
  .pagination .page-numbers li .prev {
    display: none;
  }
}
.pagination .page-numbers li .prev::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.16797 10.0003H15.8346M15.8346 10.0003L10.0013 4.16699M15.8346 10.0003L10.0013 15.8337' stroke='%231B1E2A' stroke-width='1.67' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 15px;
  top: 0;
  transform: translateY(-50%);
  rotate: 180deg;
}
@media (max-width: 768px) {
  .pagination .page-numbers li .prev::before {
    display: none;
  }
}
.pagination .page-numbers li:last-child {
  border-radius: 0 8px 8px 0;
  margin: 0;
}
.pagination .page-numbers li .next {
  padding-right: 43px;
  padding-left: 14px;
  position: relative;
}
@media (max-width: 768px) {
  .pagination .page-numbers li .next {
    padding-right: 14px;
    display: none;
  }
}
.pagination .page-numbers li .next::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.16797 10.0003H15.8346M15.8346 10.0003L10.0013 4.16699M15.8346 10.0003L10.0013 15.8337' stroke='%231B1E2A' stroke-width='1.67' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .pagination .page-numbers li .next::before {
    display: none;
  }
}
.pagination .page-numbers .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border-right: 1px solid #F1F2F2;
  min-width: 40px;
  height: 40px;
  color: #1B1E2A;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
.pagination .page-numbers .page-numbers:last-child {
  border-right: none;
}
.pagination .page-numbers .page-numbers:hover {
  background-color: #103156;
  color: #ffffff;
  text-decoration: none;
}
.pagination .page-numbers .page-numbers:hover::before {
  filter: brightness(0) invert(1);
}
.pagination .page-numbers .page-numbers.current {
  background-color: #103156;
  color: #ffffff;
  text-decoration: none;
}
.pagination .page-numbers .page-numbers.dots {
  color: #999;
  cursor: default;
}
.pagination .page-numbers .page-numbers.dots:hover {
  background: transparent;
  color: #999;
}
@media (max-width: 768px) {
  .pagination {
    margin-top: 30px;
  }
  .pagination .page-numbers .page-numbers {
    font-size: 13px;
    min-width: 35px;
    height: 35px;
  }
}

.docs-categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .docs-categories-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.docs-categories-card {
  padding: 64px 70px;
  text-decoration: none;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  min-height: 320px;
  display: flex;
  align-items: end;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .docs-categories-card {
    padding: 30px 20px;
    min-height: 230px;
  }
}
.docs-categories-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.55);
}
.docs-categories-card:hover {
  transform: translateY(-5px);
}
.docs-categories-card__content {
  position: relative;
  z-index: 2;
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.docs-categories-card__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  margin-top: 0;
}
.docs-categories-card__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 0px;
  max-width: 350px;
  margin-top: 16px;
}

.body-docs .sidebar-section {
  padding: 0;
  background-color: transparent;
}
.body-docs .sidebar-section__title {
  display: none;
}
.body-docs .sidebar-section__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.body-docs .sidebar-section__item {
  border-radius: 16px;
  background: #F1F2F2;
}
.body-docs .sidebar-section__item a {
  border: 0;
  padding: 32px 32px 32px 64px !important;
  transition: all 0.3s ease;
}
.body-docs .sidebar-section__item a:hover {
  transform: translateY(-3px);
}
.body-docs .sidebar-section__item a:after {
  left: 32px;
  top: 31px;
}
.body-docs .sidebar-section__item a:before {
  right: 32px;
  margin-top: -1px;
}

.search-no-results .page__heading,
.search-results .page__heading,
.tax-document_category .page__heading,
.page-template-page-hotarari-consiliul-local .page__heading,
.page-template-page-departament .page__heading,
.page-template-page-servicii .page__heading {
  margin: 40px 0px 40px 0;
  font-weight: 700;
  font-size: 75px;
  line-height: 79px;
}
@media (max-width: 992px) {
  .search-no-results .page__heading,
  .search-results .page__heading,
  .tax-document_category .page__heading,
  .page-template-page-hotarari-consiliul-local .page__heading,
  .page-template-page-departament .page__heading,
  .page-template-page-servicii .page__heading {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (max-width: 768px) {
  .search-no-results .page__heading,
  .search-results .page__heading,
  .tax-document_category .page__heading,
  .page-template-page-hotarari-consiliul-local .page__heading,
  .page-template-page-departament .page__heading,
  .page-template-page-servicii .page__heading {
    font-size: 40px;
    line-height: 44px;
  }
}
.search-no-results .services-search-container,
.search-results .services-search-container,
.tax-document_category .services-search-container,
.page-template-page-hotarari-consiliul-local .services-search-container,
.page-template-page-departament .services-search-container,
.page-template-page-servicii .services-search-container {
  margin-bottom: 38px;
}
.search-no-results .page__body,
.search-results .page__body,
.tax-document_category .page__body,
.page-template-page-hotarari-consiliul-local .page__body,
.page-template-page-departament .page__body,
.page-template-page-servicii .page__body {
  padding-bottom: 0;
}

.page-template-page-servicii .page {
  padding-bottom: 40px;
}

.search-page .hotarari-grid {
  grid-template-columns: 1fr;
}
.search-page .announcements-list {
  grid-template-columns: 1fr;
  gap: 0;
}
.search-page .announcements-list .announcements:last-child {
  margin-bottom: 0;
}
.search-page .monitorul-grid {
  margin-top: 0;
}
.search-page .lead-list {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 0;
}
.search-page .article-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 0;
}
.search-page .page__body {
  margin-top: 40px;
}
.search-page .search-page__section {
  margin-top: 30px;
  margin-bottom: 50px;
}

.search-page__subtitle {
  font-size: 39px;
  font-weight: bold;
  color: #1b1e2a;
  width: 100%;
  margin-top: 0;
  margin-bottom: 27px;
}

.search-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-results-list li {
  margin-bottom: 20px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.search-results-list li:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.ep-search-modal__content {
  width: 100%;
  bottom: 0;
  top: 0;
  max-width: 100%;
  background-color: #103156;
  color: white;
}
.ep-search-modal__content .ep-search-sidebar {
  display: none;
}
.ep-search-modal__content mark {
  background-color: #f4c134;
}
.ep-search-modal__content .ep-search-page__body {
  padding: 0;
  max-width: calc(100% - 50px);
  margin: 0 auto;
}
.ep-search-modal__content .ep-search-toolbar,
.ep-search-modal__content .ep-search-results__header,
.ep-search-modal__content .ep-search-result__footer,
.ep-search-modal__content .ep-search-result__thumbnail {
  display: none;
}
.ep-search-modal__content .ep-search-results {
  gap: 0;
  padding: 10px 10px;
  height: calc(100% - 30px);
}
@media (max-width: 768px) {
  .ep-search-modal__content .ep-search-results {
    padding: 0;
  }
}
.ep-search-modal__content .ep-search-results::-webkit-scrollbar {
  width: 8px;
}
.ep-search-modal__content .ep-search-results::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 9px;
}
.ep-search-modal__content .ep-search-results::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 9px;
}
.ep-search-modal__content .ep-search-result--has-thumbnail {
  grid-template-areas: " header" " description" " footer";
}
.ep-search-modal__content .ep-search-result {
  grid-template-columns: auto;
  gap: 0;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
}
@media (max-width: 768px) {
  .ep-search-modal__content .ep-search-result {
    padding: 10px 0px;
  }
}
.ep-search-modal__content .ep-search-pagination-button {
  padding: 17px 41px;
  display: inline-block;
  color: white;
  font-weight: 500;
  text-decoration: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  background: #db2e2e;
}
@media (max-width: 768px) {
  .ep-search-modal__content .ep-search-pagination-button {
    padding: 10px 25px;
  }
}
.ep-search-modal__content .ep-search-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
}
.ep-search-modal__content .ep-search-result__header,
.ep-search-modal__content .ep-search-result--has-thumbnail > .ep-search-result__header {
  display: block;
}
.ep-search-modal__content .ep-search-result__type {
  display: inline;
  font-size: 1.25em;
  background-color: transparent;
  padding: 0;
  font-weight: bold;
  line-height: initial;
  vertical-align: bottom;
  padding-right: 10px;
}
.ep-search-modal__content .ep-search-result__type:after {
  content: "-";
  margin-left: 7px;
}
.ep-search-modal__content .ep-search-result__title {
  display: inline;
}
.ep-search-modal__content .ep-search-result__title a {
  text-decoration: underline;
  color: #ffffff;
  font-weight: 400;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
.ep-search-modal__content .ep-search-result__title a:hover {
  text-decoration: none;
}
.ep-search-modal__content .ep-search-page {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .ep-search-modal__content .ep-search-page {
    padding: 0;
  }
}
.ep-search-modal__content .ep-search-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' class='w-4 h-4 mt-%5B11px%5D text-slate-400' focusable='false' viewBox='0 0 24 24'%3E%3Cpath d='M18.932 16.845a10.206 10.206 0 0 0 2.087-6.261A10.5 10.5 0 0 0 10.584 0a10.584 10.584 0 0 0 0 21.168 9.9 9.9 0 0 0 6.261-2.087l4.472 4.472a1.441 1.441 0 0 0 2.087 0 1.441 1.441 0 0 0 0-2.087zm-8.348 1.193a7.508 7.508 0 0 1-7.6-7.453 7.6 7.6 0 0 1 15.2 0 7.508 7.508 0 0 1-7.6 7.452z' fill='%2394a3b8'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  padding: 0 12px 0 40px;
  height: 40px;
  border: 1px solid transparent;
  background-size: 16px;
  background-position: 10px;
  border-radius: 20px;
  outline: 0;
}
.ep-search-modal__content .ep-search-modal__close {
  padding: 0;
  font-size: 0 !important;
  width: 70px !important;
  height: 70px !important;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  outline: none !important;
  box-shadow: none !important;
}
.ep-search-modal__content .ep-search-modal__close svg {
  font-size: 60px;
}

/*# sourceMappingURL=style.css.map */
