/* scorecard : used in coutry page banner */
.scorecard-section ul li {
  padding: 0;
  min-height: auto;
}

.score-item-link {
  min-height: var(--min-height);
  padding: var(--li-py) var(--li-px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 35px;
}

/* classfication */
.tag-name-field {
  display: block;
}

.tags-item-field:last-child .tag-name-field {
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
}

.tags-item-field {
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.tags-item-field:last-child {
  padding-right: 0;
  border: none;
}

.tags-item-field-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--sp3);
}

.tags-items-wrapper .tags-item-field:first-child {
  padding-left: 0;
}

.tags-item-field:nth-child(3n) {
  padding-right: 0;
  border-right: none;
}

.tags-item-field:nth-child(2) {
  max-width: 100px;
}

/* country info */
.country-info-box {
  --padding-x: var(--sp5);
  display: flex;
  flex-wrap: wrap;
}

.country-info-item:nth-child(odd) {
  padding-right: var(--padding-x);
  border-right: 1px solid var(--border-color);
}

.country-info-item:nth-child(even) {
  padding-left: var(--padding-x);
  flex: 1;
}

.country-info-item:first-child:has(+ .type-link),
.country-info-item:first-child:last-child {
  max-width: none;
  width: 100%;
  padding: 0;
  text-align: center;
}

.country-info-item:has(+ .type-link) {
  border: none;
}

.country-info-box .type-link {
  padding: var(--padding-x) 0 0 0;
  width: 100%;
  display: flex;
  justify-content: center;
  border: none;
  flex: unset;
  max-width: none;
}

.country-info-item .info-label {
  margin-bottom: var(--sp-xs);
}

.country-year-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* project info */
.project-info-subitems {
  --padding-x: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp5) 0;
}

.project-info-subitem {
  width: 50%;
}

.project-info-subitem:nth-child(odd) {
  padding-right: var(--padding-x);
  border-right: 1px solid var(--border-color);
  text-align: right;
}

.project-info-subitem:nth-child(even) {
  padding-left: var(--padding-x);
}

.project-info-subitem:first-child:last-child {
  width: 100%;
  border: none;
  text-align: center;
  padding-right: 0;
}

.project-info-subitem .info-sub-label {
  margin-bottom: var(--sp-xs);
}

/* additional-projects */
.additional-projects {
  display: none;
  border-top: 1px solid var(--border-color, var(--border-default));
}

.additional-info-link {
  display: flex;
  justify-content: center;
}

.additional-projects .project-info-box {
  border-bottom: 1px solid var(--border-color, var(--border-default));
}

.additional-projects .project-info-box:last-child {
  border: none;
}

.additional-projects .project-info-box:last-child {
  padding-bottom: var(--sp1);
}

/* lang */

html[lang='fr'] .country-year-info {
  width: 50%;
}

html[lang='fr'] .tags-item-field:nth-child(2) {
  max-width: 115px;
}

html[lang="es"] .tags-item-field:nth-child(2) {
  max-width: 120px;
}

/* trim text */

@media only screen and (min-width: 1201px) {
  .country-year-info>.info-label {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
