.application-main {
  padding-top: 0;
  background: #eef1f7;
}

.application-main.app-main-list .application-article-inline {
  display: none;
}

.application-main.app-main-article .application-filters {
  display: none;
}

.application-hero {
  min-height: 560px;
  height: 560px;
}

.application-hero-overlay {
  position: absolute;
  left: 0;
  bottom: 74px;
  color: #fff;
  z-index: 2;
}

.application-hero-overlay h1 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
}

.application-hero-overlay p {
  margin: 8px 0 0;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.application-filters {
  padding: 30px 0 40px;
}

.application-pathbar {
  background: #fff;
  border-top: 1px solid #e2e6ee;
  border-bottom: 1px solid #e2e6ee;
  height: 50px;
  min-height: 50px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.application-pathbar .container {
  height: 100%;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
}

.application-path {
  height: 38px;
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  font-size: 13px;
  color: #5d6679;
  margin: 0;
  padding: 0;
}

.application-path a:hover {
  color: var(--brand);
}

.application-filter-card {
  background: #fff;
  border: 1px solid #e1e6ef;
  padding: 26px 40px 22px;
}

.application-filter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.application-field {
  display: grid;
  gap: 8px;
  position: relative;
}

.application-field span {
  font-size: 14px;
  color: #2c3549;
}

.application-select-wrap {
  position: relative;
  display: block;
}

.application-select-wrap::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 100%;
  background: #1f3d9a;
  pointer-events: none;
  z-index: 1;
}

.application-select-wrap::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 50%;
  width: 16px;
  height: 10px;
  margin-top: -5px;
  background: url("../images/icon-select-arrow.png") no-repeat center / contain;
  pointer-events: none;
  z-index: 2;
}

.application-field .application-select {
  height: 40px;
  border: 1px solid #e1e6ef;
  border-radius: 0;
  background-color: #fff;
  color: #444f66;
  padding: 0 56px 0 14px;
  font-size: 14px;
  line-height: 1.2;
  width: 100%;
  min-width: 0;
  cursor: pointer;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.application-field .application-select:focus {
  outline: none;
  border-color: #1f3d9a;
  box-shadow: 0 0 0 1px rgba(31, 61, 154, 0.2);
}

.application-field .application-select::-ms-expand {
  display: none;
}

.application-field [data-filter-trigger] {
  position: relative;
  height: 40px;
  border: 1px solid #e1e6ef;
  background: #fff;
  color: #444f66;
  text-align: left;
  padding: 0 56px 0 14px;
  font-size: 14px;
  cursor: pointer;
}

.application-field [data-filter-trigger]::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 100%;
  background: #1f3d9a;
}

.application-field [data-filter-trigger]::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 50%;
  width: 16px;
  height: 10px;
  margin-top: -5px;
  background: url("../images/icon-select-arrow.png") no-repeat center / contain;
  pointer-events: none;
}

.application-dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 2px);
  background: #fff;
  border: 1px solid #dbe2ef;
  box-shadow: 0 8px 18px rgba(22, 37, 76, 0.12);
  z-index: 10;
}

.application-field.is-open .application-dropdown-menu {
  display: grid;
}

.application-dropdown-menu button {
  width: 100%;
  height: 36px;
  border: none;
  background: #fff;
  text-align: left;
  padding: 0 12px;
  font-size: 13px;
  color: #3a4358;
  cursor: pointer;
}

.application-dropdown-menu button:hover {
  background: #f1f4fa;
  color: var(--brand);
}

.application-search-row {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
  align-items: stretch;
}

.application-search-row input {
  height: 40px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e1e6ef;
  border-radius: 0;
  padding: 0 12px;
  font-size: 14px;
  color: #2c3549;
  background: #fff;
}

.application-search-row input::placeholder {
  color: #9aa3b5;
}

.application-search-row input:focus {
  outline: none;
  border-color: #1f3d9a;
  box-shadow: 0 0 0 1px rgba(31, 61, 154, 0.15);
}

.application-search-row button {
  height: 40px;
  min-width: 0;
  border: none;
  border-radius: 0;
  background: #1f3d9a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.application-search-row button:hover {
  background: #1a3688;
}

.application-search-row button img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.application-result-list {
  margin-top: 22px;
  padding-top: 6px;
  border-top: 1px solid #edf1f6;
}

.application-article-inline {
  padding: 18px 0 0;
}

.application-article-card {
  background: #fff;
  border: 1px solid #e1e6ef;
  padding: 26px 30px 30px;
}

.application-article-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 14px;
}

.article-toolbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-toolbar-btn {
  min-width: 96px;
  height: 40px;
  border: 1px solid #cfd4df;
  color: #7a8193;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  text-decoration: none;
  box-sizing: border-box;
}

.article-toolbar-btn:hover {
  border-color: #b9c0ce;
  color: #556079;
}

.article-toolbar-btn.is-muted {
  opacity: 0.45;
}

.article-toolbar-back {
  min-width: 132px;
  justify-content: flex-start;
  position: relative;
  padding-left: 42px;
}

.article-toolbar-back::before {
  content: "↩";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../images/icon-back-list.png") no-repeat center / contain;
  font-size: 0;
  line-height: 0;
}

.application-article-card h1 {
  margin: 0;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.35;
  color: #242d3f;
}

.application-article-meta {
  margin: 16px 0 0;
  padding-top: 10px;
  border-top: 1px solid #edf1f6;
  color: #6d7689;
  font-size: 14px;
  line-height: 1.8;
}

.application-article-content {
  margin-top: 12px;
  color: #394156;
  font-size: 16px;
  line-height: 1.9;
}

.application-article-content p {
  margin: 0 0 12px;
}

.application-article-content p:last-child {
  margin-bottom: 0;
}

.application-article-image {
  margin-top: 18px;
  width: 100%;
  border: 1px solid #e1e6ef;
  display: block;
}

.application-result-empty {
  margin: 12px 0 0;
  padding: 18px 0;
  font-size: 14px;
  color: #6b7385;
}

.application-result-item {
  display: grid;
  grid-template-columns: 168px 1fr 56px;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #edf1f6;
}

.application-result-item:last-child {
  border-bottom: none;
}

.application-result-thumb {
  width: 168px;
  height: 106px;
  object-fit: cover;
  border: 1px solid #e3e8f0;
  display: block;
}

.application-result-body h3 {
  margin: 0;
  font-size: 16px;
  color: #202938;
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.application-result-body h3 a {
  color: inherit;
}

.application-result-body h3 a:hover {
  color: var(--brand);
}

.application-result-body p {
  margin: 8px 0 0;
  color: #778095;
  font-size: 13px;
  line-height: 1.7;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.application-result-more {
  width: 44px;
  height: 44px;
  border: none;
  background: #d6d8de;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.application-result-more:hover {
  background: #1f3d9a;
  color: #fff;
}

.application-result-pagination {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.application-page-btn {
  min-width: 36px;
  height: 34px;
  border: none;
  background: transparent;
  color: #2e3648;
  font-size: 13px;
  padding: 0 6px;
  cursor: pointer;
}

a.application-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-decoration: none;
}

a.application-page-btn:hover:not(.active) {
  color: #1f3d9a;
}

.application-page-btn.active {
  background: #1f3d9a;
  color: #fff;
}

.application-page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.application-result-pagination > span.application-page-btn {
  cursor: default;
  opacity: 0.55;
  pointer-events: none;
}

@media (max-width: 768px) {
  .application-filter-card {
    padding: 18px 16px 16px;
  }

  .application-filter-grid {
    grid-template-columns: 1fr;
  }

  .application-search-row {
    grid-template-columns: 1fr;
  }

  .application-result-item {
    grid-template-columns: 120px 1fr 40px;
    gap: 12px;
  }

  .application-result-thumb {
    width: 120px;
    height: 76px;
  }

  .application-result-body h3 {
    white-space: normal;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
