:root {
  --bg: #f8f7f2;
  --panel: #fffdfa;
  --ink: #222927;
  --muted: #6f7774;
  --line: #d9d7ce;
  --soft: #eeece5;
  --green: #17724c;
  --green-2: #248e61;
  --yellow: #f1b43d;
  --red: #cf574d;
  --blue: #71a4c4;
  --shadow: 0 16px 36px rgba(49, 54, 48, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 14% 5%, rgba(233, 224, 203, 0.55), transparent 22rem),
    linear-gradient(180deg, #fbfaf6 0, var(--bg) 27rem);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header,
main,
.site-footer {
  width: min(100% - 80px, 1760px);
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 96px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  line-height: 1;
}

.brand img {
  display: block;
  width: 168px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 58px;
  font-size: 15px;
  font-weight: 650;
}

.nav a {
  position: relative;
  padding-block: 37px;
}

.nav .active {
  color: var(--green);
}

.nav .active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 23px;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 650;
}

.langs {
  display: inline-grid;
  grid-template-columns: 22px 1px 22px 1px 22px;
  align-items: center;
  column-gap: 10px;
  color: #3f4644;
  line-height: 1;
}

.langs a,
.langs .active-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  min-height: 18px;
}

.langs a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.langs .active-lang {
  color: var(--ink);
  font-weight: inherit;
  text-decoration: none;
}

.langs .lang-divider {
  width: 1px;
  height: 13px;
  background: #9d9f9b;
}

.outline-btn {
  border: 1px solid #222927;
  border-radius: 7px;
  padding: 16px 26px;
  background: rgba(255, 255, 255, 0.6);
}

.hero {
  padding: 34px 0 21px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
dl {
  margin-block-start: 0;
}

h1 {
  margin-bottom: 15px;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  margin-bottom: 31px;
  color: #676f6c;
  font-size: 19px;
  line-height: 1.48;
}

.stats {
  display: flex;
  align-items: center;
  margin: 0 0 27px;
}

.stats div {
  min-width: 128px;
  padding-right: 45px;
  margin-right: 45px;
  border-right: 1px solid #c9c8c1;
}

.stats div:last-child {
  border-right: 0;
}

.stats dt {
  margin-bottom: 4px;
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
}

.stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.clock {
  position: relative;
  width: 27px;
  height: 27px;
  border: 2px solid #49514e;
  border-radius: 50%;
}

.clock::before,
.clock::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 2px;
  background: #49514e;
  transform-origin: bottom center;
}

.clock::before {
  height: 8px;
}

.clock::after {
  height: 6px;
  transform: rotate(120deg);
}

.search {
  display: flex;
  align-items: center;
  gap: 17px;
  width: min(760px, 100%);
  height: 54px;
  padding-inline: 21px;
  border: 1px solid #c9c8c1;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.72);
}

.search svg {
  color: #6b7370;
}

.search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(520px, 0.98fr);
  min-height: 638px;
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: visible;
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.projects-page .workspace {
  margin-top: 34px;
}

.map-panel {
  position: relative;
  min-height: 638px;
  background: #dfe8e5;
  overflow: hidden;
}

.osm-map {
  position: absolute;
  inset: 0;
  min-height: inherit;
  background: #dfe8e5;
}

.osm-map .leaflet-control-attribution {
  border-radius: 5px 0 0 0;
  background: rgba(255, 253, 250, 0.9);
  color: #5c6461;
  font-size: 11px;
}

.osm-map .leaflet-popup-content-wrapper,
.osm-map .leaflet-popup-tip {
  border-radius: 7px;
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(39, 46, 43, 0.18);
}

.map-cluster,
.map-pin {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
}

.map-cluster {
  width: 38px;
  height: 38px;
  background: var(--green-2);
  box-shadow: 0 0 0 6px rgba(36, 142, 97, 0.18), 0 0 0 11px rgba(36, 142, 97, 0.08);
  font-size: 13px;
}

.map-pin {
  width: 18px;
  height: 18px;
  border: 4px solid var(--yellow);
  background: #fff;
  box-shadow: 0 5px 12px rgba(39, 46, 43, 0.2);
}

.portugal-map {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(148, 197, 211, 0.42) 0 31%, transparent 31.2%),
    radial-gradient(ellipse at 70% 37%, rgba(238, 231, 219, 0.95) 0 39%, transparent 39.5%),
    radial-gradient(ellipse at 58% 58%, rgba(241, 234, 221, 0.98) 0 26%, transparent 26.5%),
    radial-gradient(ellipse at 52% 77%, rgba(242, 234, 219, 0.98) 0 18%, transparent 18.5%),
    linear-gradient(90deg, #d7e8ec 0 34%, #e5e8db 34% 100%);
}

.portugal-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(23deg, transparent 47%, rgba(199, 190, 173, 0.42) 48%, transparent 49%),
    linear-gradient(155deg, transparent 46%, rgba(199, 190, 173, 0.35) 47%, transparent 48%),
    radial-gradient(circle at 67% 23%, transparent 0 18px, rgba(167, 177, 160, 0.2) 19px 20px, transparent 21px),
    radial-gradient(circle at 60% 70%, transparent 0 30px, rgba(167, 177, 160, 0.2) 31px 32px, transparent 33px);
  background-size: 260px 190px, 320px 240px, 220px 180px, 300px 260px;
  opacity: 0.8;
}

.country {
  position: absolute;
  left: 49%;
  top: 43%;
  color: rgba(33, 40, 38, 0.76);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 9px;
}

.ocean {
  position: absolute;
  left: 20%;
  top: 52%;
  color: #6c9faf;
  font-size: 16px;
  font-style: italic;
  line-height: 1.1;
}

.city {
  position: absolute;
  z-index: 2;
  color: #28302d;
  font-size: 13px;
  font-weight: 700;
}

.porto { left: 55%; top: 16%; }
.braga { left: 56%; top: 7%; }
.aveiro { left: 52%; top: 27%; }
.coimbra { left: 54%; top: 34%; }
.lisboa { left: 39%; top: 61%; }
.evora { left: 64%; top: 65%; }
.setubal { left: 49%; top: 69%; }
.algarve { left: 55%; top: 87%; }

.pin,
.pin-dot {
  width: 19px;
  height: 19px;
  border: 4px solid var(--yellow);
  border-radius: 50% 50% 50% 0;
  background: #fff;
  transform: rotate(-45deg);
}

.pin {
  position: absolute;
  z-index: 3;
}

.pin::after,
.pin-dot::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--yellow);
}

.p1 { left: 55%; top: 9%; }
.p2 { left: 70%; top: 19%; }
.p3 { left: 51%; top: 30%; }
.p4 { left: 48%; top: 40%; }
.p5 { left: 42%; top: 56%; }
.p6 { left: 43%; top: 58%; }
.p7 { left: 63%; top: 57%; }
.p8 { left: 59%; top: 67%; }
.p9 { left: 67%; top: 82%; }

.cluster,
.cluster-dot {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-2);
  color: #fff;
}

.cluster {
  position: absolute;
  z-index: 4;
  width: 35px;
  height: 35px;
  box-shadow: 0 0 0 6px rgba(36, 142, 97, 0.18), 0 0 0 11px rgba(36, 142, 97, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.c1 { left: 54%; top: 16%; }
.c2 { left: 42%; top: 61%; }
.c3 { left: 58%; top: 86%; }

.map-controls {
  position: absolute;
  z-index: 8;
  left: 26px;
  top: 30px;
  display: grid;
  gap: 14px;
}

.map-controls button {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border: 1px solid #cfd0c8;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  color: #26302d;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(39, 46, 43, 0.08);
}

.legend {
  position: absolute;
  z-index: 8;
  left: 26px;
  bottom: 25px;
  display: grid;
  gap: 10px;
  width: 207px;
  padding: 16px 18px;
  border: 1px solid #d7d5ca;
  border-radius: 7px;
  background: rgba(255, 253, 250, 0.95);
  color: #707875;
  font-size: 13px;
}

.legend span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.pin-dot {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  border-width: 3px;
}

.pin-dot::after {
  left: 3px;
  top: 3px;
  width: 3px;
  height: 3px;
}

.cluster-dot {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.filters {
  padding: 26px 22px 20px 38px;
  background: rgba(255, 253, 250, 0.87);
}

.filters-head,
.card-title {
  display: flex;
  align-items: center;
}

.filters-head {
  justify-content: space-between;
  margin-bottom: 25px;
}

.filters h2,
.radar h2,
.overview h2,
.developers h2 {
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1.1;
}

.filters-head h2 {
  margin: 0;
}

.filters-head button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 27px 38px;
}

.select-field,
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 14px;
  font-weight: 800;
}

select {
  width: 100%;
  height: 48px;
  margin-top: 10px;
  padding: 0 14px;
  border: 1px solid #cfcfc8;
  border-radius: 6px;
  background: #fffefa;
  color: #727976;
  outline: 0;
}

.region-filter {
  position: relative;
  min-width: 0;
  z-index: 20;
}

.region-filter.is-open {
  z-index: 60;
}

.select-label {
  display: block;
  color: #69716e;
  font-size: 12px;
  font-weight: 800;
}

.region-trigger {
  position: relative;
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  border: 1px solid #cfcfc8;
  border-radius: 6px;
  padding: 0 42px 0 14px;
  background: #fffefa;
  color: #333c38;
  font: inherit;
  font-weight: 750;
  text-align: left;
}

.region-trigger::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #3f4844;
  border-bottom: 2px solid #3f4844;
  transform: translateY(-65%) rotate(45deg);
}

.region-filter.is-open .region-trigger {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 114, 76, 0.1);
}

.region-filter.is-open .region-trigger::after {
  transform: translateY(-35%) rotate(225deg);
}

.region-popover {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  width: min(calc(200% + 38px), calc(100vw - 48px));
  max-height: min(620px, calc(100vh - 160px));
  overflow: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 253, 250, 0.98);
  box-shadow: 0 24px 70px rgba(36, 43, 40, 0.18);
}

.region-popover h3 {
  margin: 18px 0 12px;
  font-size: 15px;
}

.geo-locations-picker details div {
  align-items: center;
  gap: 6px;
  padding-left: 16px;
}

.geo-locations-picker a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 4px 8px;
  color: #3e4844;
  text-decoration: none;
  white-space: nowrap;
}

.geo-locations-picker a:hover {
  border-color: #d7d5ca;
  background: rgba(255, 255, 255, 0.78);
}

.geo-locations-picker a.active {
  border-color: var(--green);
  background: rgba(23, 114, 76, 0.1);
  color: var(--green);
  font-weight: 850;
}

.geo-locations-picker a.is-hidden,
.geo-locations-picker details.is-hidden {
  display: none;
}

legend {
  margin-bottom: 12px;
  font-weight: 800;
}

fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 14px 10px 0;
  color: #68706d;
  font-size: 13px;
  font-weight: 600;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--green);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: #777d7a;
  font-size: 13px;
  font-weight: 650;
}

.range {
  width: 100%;
  accent-color: var(--green-2);
}

.source-row {
  padding-top: 14px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  padding-top: 16px;
  margin-top: 7px;
  border-top: 1px solid var(--line);
}

.chips-label {
  flex-basis: 100%;
  font-size: 14px;
  font-weight: 800;
}

.chips span,
.chips button {
  min-width: 105px;
  height: 31px;
  border: 0;
  border-radius: 999px;
  padding-inline: 18px;
  background: linear-gradient(180deg, #259061, #166d49);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  line-height: 31px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.chips button {
  min-width: 82px;
  border: 1px solid #cfd0c8;
  background: #fffdf9;
  color: #555e5a;
  box-shadow: none;
}

.quick-filters {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-block: 22px 30px;
}

.quick-filters button,
.more-btn,
.all-news {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.82);
  color: #38413e;
  font-weight: 750;
}

.quick-filters > button {
  min-width: 210px;
  padding-inline: 26px;
}

.quick-filters svg {
  width: 21px;
  height: 21px;
  color: #57706a;
}

.view-switch {
  display: flex;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 253, 250, 0.8);
}

.view-switch button {
  min-width: 111px;
  height: 52px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  font-size: 14px;
}

.view-switch button:last-child {
  border-right: 0;
}

.view-switch .active {
  background: #f0eee6;
}

.projects {
  margin-top: 34px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.projects::after {
  content: "";
  position: absolute;
  right: -29px;
  top: 50%;
  width: 17px;
  height: 17px;
  border-top: 3px solid #3d4642;
  border-right: 3px solid #3d4642;
  transform: rotate(45deg) translateY(-50%);
}

.project-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 19px;
  min-height: 232px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 253, 250, 0.84);
}

.thumb {
  min-width: 0;
  min-height: 126px;
  border-radius: 7px;
  background-color: #f0eee8;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 82%;
}

.building-one {
  background-image:
    linear-gradient(30deg, transparent 43%, rgba(34, 96, 74, 0.18) 44% 46%, transparent 47%),
    linear-gradient(90deg, rgba(39, 122, 88, 0.16), rgba(39, 122, 88, 0.07)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='125' viewBox='0 0 170 125'%3E%3Cg fill='none' stroke='%235d8276' stroke-width='3'%3E%3Cpath fill='%23eef1ec' d='M25 99V41l42-16 57 22v52Z'/%3E%3Cpath fill='%23dfe7e1' d='M67 99V25l57 22v52Z'/%3E%3Cpath d='M39 54h13v12H39zM39 76h13v12H39zM76 45h13v13H76zM101 55h13v13h-13zM76 72h13v13H76zM101 80h13v13h-13zM23 99h111'/%3E%3C/g%3E%3C/svg%3E");
}

.building-two {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='125' viewBox='0 0 170 125'%3E%3Cg fill='none' stroke='%23859d96' stroke-width='3'%3E%3Cpath d='M13 94h145M24 82l48-36 73 18v30'/%3E%3Cpath fill='%23e8ece7' d='M72 46v48h73V64Z'/%3E%3Cpath d='M83 61h15M105 66h15M128 71h13M83 78h15M105 82h15M31 82v12'/%3E%3C/g%3E%3C/svg%3E");
}

.building-three {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='125' viewBox='0 0 170 125'%3E%3Cg fill='none' stroke='%237b9b8d' stroke-width='3'%3E%3Cpath fill='%23eef1ec' d='M20 91 69 31l80 20v40Z'/%3E%3Cpath d='m31 81 39-25 62 12M43 70l29-20 53 11M56 59l18-15 44 10M31 96h123M78 68v26M112 72v22'/%3E%3C/g%3E%3C/svg%3E");
}

.project-main {
  min-width: 0;
}

.card-title {
  gap: 12px;
  margin-bottom: 10px;
}

.card-title h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.1;
}

.card-title button,
.news-list button,
.featured-news footer button {
  width: 18px;
  height: 24px;
  margin-left: auto;
  border: 1.8px solid #39433f;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  background: transparent;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 72%, 0 100%);
}

.badge,
.news-list span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  height: 22px;
  border-radius: 6px;
  padding-inline: 10px;
  background: #cfead9;
  color: #17724c;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.badge.yellow,
.news-list .yellow {
  background: #f7e6ba;
  color: #9f6914;
}

.news-list .red {
  background: #f5d1cd;
  color: #a84239;
}

.news-list .blue {
  background: #d7e9f2;
  color: #367295;
}

.project-card p {
  margin-bottom: 11px;
  color: #616a66;
  font-size: 14px;
  line-height: 1.25;
}

.project-card .strong {
  color: #202826;
  font-weight: 750;
}

.project-card .strong span {
  margin-left: 17px;
  color: #59625f;
}

.project-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 26px 0 0;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.project-card dt,
.project-card dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
}

.project-card dt {
  color: #777d7a;
}

.project-card dd {
  margin-top: 6px;
  color: #303835;
  font-weight: 650;
}

.more-btn,
.all-news {
  display: flex;
  width: 380px;
  max-width: 100%;
  height: 42px;
  margin: 20px auto 15px;
  border-radius: 7px;
}

.more-btn span,
.all-news span {
  width: 11px;
  height: 11px;
  border-right: 2px solid #34403b;
  border-bottom: 2px solid #34403b;
  transform: rotate(45deg) translateY(-3px);
}

.radar {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.radar h2 {
  font-size: 31px;
}

.radar-grid {
  display: grid;
  grid-template-columns: minmax(460px, 0.95fr) minmax(560px, 1fr);
  gap: 28px;
}

.featured-news {
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 30px;
  min-height: 288px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 253, 250, 0.75);
}

.news-art {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #efede7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'%3E%3Cg fill='none' stroke='%233a4541' stroke-width='4'%3E%3Cpath d='M43 112V43l39-23 38 23v69M24 112h105M59 50h18M59 69h18M59 88h18M94 58h16M94 78h16M94 98h16'/%3E%3Cpath d='M82 112V21'/%3E%3C/g%3E%3C/svg%3E") center/72% no-repeat;
}

.news-art img,
.news-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.red-label {
  margin: 12px 0 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-news h3 {
  margin-bottom: 17px;
  font-size: 23px;
  line-height: 1.18;
}

.featured-news h3 a,
.news-list h3 a {
  color: inherit;
  text-decoration: none;
}

.featured-news h3 a:hover,
.news-list h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tag-row {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.tag-row span:nth-child(2) {
  background: #d7e9f2;
  color: #367295;
}

.featured-news p:not(.red-label) {
  color: #69716e;
  font-size: 15px;
  line-height: 1.45;
}

.featured-news footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 50px;
  color: #68706d;
  font-size: 13px;
  font-weight: 650;
}

.news-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.news-list article {
  display: grid;
  grid-template-columns: 39px 1fr auto;
  align-items: center;
  gap: 21px;
  min-height: 56px;
  padding-block: 11px;
  border-bottom: 1px solid var(--line);
}

.news-list i,
.news-thumb,
.info-band i {
  width: 35px;
  height: 35px;
  border: 1px solid #c8c7be;
  border-radius: 5px;
  background: #f2f0ea;
}

.news-thumb {
  display: block;
  overflow: hidden;
}

.news-list i::before,
.info-band i::before {
  content: "";
  display: block;
  width: 17px;
  height: 20px;
  margin: 7px auto;
  border: 2px solid #6d7772;
  border-top: 0;
}

.news-list h3 {
  margin: 0 0 5px;
  font-size: 15px;
  line-height: 1.2;
}

.news-list p {
  margin: 0;
  color: #747b78;
  font-size: 12px;
}

.all-news span {
  transform: rotate(-45deg);
}

.overview,
.developers {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.region-grid,
.dev-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px;
}

.region-grid a,
.dev-grid a {
  display: flex;
  align-items: center;
  min-height: 73px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 253, 250, 0.76);
}

.region-grid a {
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 70px;
}

.region-grid a::before {
  content: "";
  position: absolute;
  left: 22px;
  width: 28px;
  height: 32px;
  border: 2px solid #5b6560;
  border-top: 0;
  box-shadow: inset 8px 0 0 transparent, inset -8px 0 0 transparent;
}

.region-grid a:nth-child(4)::before {
  border-radius: 50% 50% 10% 10%;
}

.region-grid b {
  font-size: 14px;
}

.region-grid span {
  margin-top: 4px;
  color: #68716d;
  font-size: 12px;
}

.geo-filter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.geo-map-card,
.geo-panel {
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 253, 250, 0.78);
}

.geo-map-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.geo-map-copy {
  position: relative;
  z-index: 4;
  max-width: 250px;
}

.geo-map-copy p,
.geo-panel-head p,
.geo-summary span {
  margin: 0 0 8px;
  color: #6a736f;
  font-size: 13px;
  font-weight: 700;
}

.geo-map-copy h2,
.geo-panel h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.geo-map-copy span {
  display: block;
  margin-top: 16px;
  color: #6b7470;
  font-size: 14px;
  line-height: 1.45;
}

.geo-map-visual {
  position: absolute;
  inset: 0;
}

.geo-map-visual .portugal-map {
  background:
    radial-gradient(ellipse at 68% 39%, rgba(240, 233, 220, 0.95) 0 38%, transparent 38.6%),
    radial-gradient(ellipse at 57% 58%, rgba(242, 235, 222, 0.96) 0 26%, transparent 26.6%),
    radial-gradient(ellipse at 52% 77%, rgba(242, 235, 222, 0.96) 0 18%, transparent 18.6%),
    linear-gradient(90deg, #edf4f1 0 36%, #f5f1e8 36% 100%);
}

.geo-zone {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 48% 52% 45% 55%;
  background: rgba(31, 121, 78, 0.18);
  filter: blur(0.2px);
  opacity: 0.42;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.zone-lisboa {
  left: 35%;
  top: 55%;
  width: 145px;
  height: 118px;
  background: rgba(31, 121, 78, 0.25);
}

.zone-porto {
  left: 48%;
  top: 11%;
  width: 112px;
  height: 90px;
}

.zone-setubal {
  left: 43%;
  top: 66%;
  width: 142px;
  height: 75px;
  background: rgba(31, 121, 78, 0.17);
}

.zone-centro {
  left: 45%;
  top: 31%;
  width: 130px;
  height: 120px;
  background: rgba(104, 143, 119, 0.14);
}

.zone-norte {
  left: 50%;
  top: 5%;
  width: 138px;
  height: 176px;
  background: rgba(104, 143, 119, 0.12);
}

.zone-algarve {
  left: 49%;
  top: 81%;
  width: 122px;
  height: 54px;
  background: rgba(31, 121, 78, 0.14);
}

.zone-madeira {
  left: 17%;
  top: 82%;
  width: 70px;
  height: 48px;
  border-radius: 50%;
  background: rgba(31, 121, 78, 0.13);
}

.geo-cluster {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 0 0 7px rgba(31, 121, 78, 0.14);
  opacity: 0.72;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cluster-lisboa { left: 42%; top: 62%; }
.cluster-porto { left: 56%; top: 17%; }
.cluster-setubal { left: 49%; top: 70%; }
.cluster-centro { left: 55%; top: 39%; }
.cluster-norte { left: 64%; top: 9%; }
.cluster-algarve { left: 59%; top: 84%; }
.cluster-madeira { left: 22%; top: 84%; }

.geo-filter[data-active-region="lisboa"] .zone-lisboa,
.geo-filter[data-active-region="porto"] .zone-porto,
.geo-filter[data-active-region="setubal"] .zone-setubal,
.geo-filter[data-active-region="centro"] .zone-centro,
.geo-filter[data-active-region="norte"] .zone-norte,
.geo-filter[data-active-region="algarve"] .zone-algarve,
.geo-filter[data-active-region="madeira"] .zone-madeira {
  opacity: 1;
  transform: scale(1.04);
}

.geo-filter[data-active-region="lisboa"] .cluster-lisboa,
.geo-filter[data-active-region="porto"] .cluster-porto,
.geo-filter[data-active-region="setubal"] .cluster-setubal,
.geo-filter[data-active-region="centro"] .cluster-centro,
.geo-filter[data-active-region="norte"] .cluster-norte,
.geo-filter[data-active-region="algarve"] .cluster-algarve,
.geo-filter[data-active-region="madeira"] .cluster-madeira {
  opacity: 1;
  transform: scale(1.12);
  box-shadow: 0 0 0 8px rgba(31, 121, 78, 0.18), 0 0 0 16px rgba(31, 121, 78, 0.08);
}

.geo-summary {
  position: absolute;
  z-index: 6;
  right: 28px;
  bottom: 28px;
  width: 190px;
  padding: 20px;
  border: 1px solid #dedbd0;
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.92);
  box-shadow: 0 16px 36px rgba(38, 45, 42, 0.08);
}

.geo-summary strong,
.geo-summary b,
.geo-summary a {
  display: block;
}

.geo-summary strong {
  margin-bottom: 18px;
  font-size: 18px;
}

.geo-summary b {
  color: var(--green);
  font-size: 35px;
  line-height: 1;
}

.geo-summary p {
  margin: 4px 0 24px;
  color: #6b7470;
  font-size: 13px;
}

.geo-summary a {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.geo-panel {
  padding: 24px;
}

.geo-panel-head {
  margin-bottom: 18px;
}

.geo-search {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  margin-bottom: 22px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.78);
}

.geo-search svg {
  width: 20px;
  height: 20px;
  stroke: #6d7672;
  stroke-width: 2;
  fill: none;
}

.geo-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.geo-search input::placeholder {
  color: #98a09c;
}

.geo-panel h3 {
  margin: 20px 0 12px;
  font-size: 15px;
}

.market-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.market-chips button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-weight: 700;
}

.market-chips button.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.market-chips b,
.geo-locations b {
  color: var(--green);
  font-weight: 850;
}

.market-chips button.active b {
  color: #fff;
}

.geo-locations {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.geo-locations details {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.geo-locations details:last-child {
  border-bottom: 0;
}

.geo-locations summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  list-style: none;
}

.geo-locations summary::-webkit-details-marker {
  display: none;
}

.geo-locations summary::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-right: 1.7px solid #34403b;
  border-bottom: 1.7px solid #34403b;
  transform: rotate(-45deg);
}

.geo-locations details[open] summary::before {
  transform: rotate(45deg);
}

.geo-locations summary b {
  margin-left: auto;
}

.geo-locations details div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 0 18px 16px 43px;
  color: #3e4844;
  font-size: 13px;
}

.geo-locations span {
  white-space: nowrap;
}

.geo-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
}

.geo-actions a {
  display: inline-flex;
  justify-content: center;
  min-width: 230px;
  padding: 17px 22px;
  border-radius: 7px;
  background: var(--green);
  color: #fff;
  font-weight: 850;
}

.geo-actions button {
  color: var(--green);
  font-weight: 850;
}

.dev-grid a {
  justify-content: center;
  padding: 0 14px;
  font-size: 28px;
  font-weight: 750;
  letter-spacing: 8px;
  text-align: center;
}

.dev-grid a:nth-child(2),
.dev-grid a:nth-child(5),
.dev-grid a:last-child {
  font-size: 14px;
  letter-spacing: 3px;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 33px;
  padding: 28px 0 30px;
  border-top: 1px solid var(--line);
}

.info-band article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 24px;
  padding-right: 34px;
  border-right: 1px solid var(--line);
}

.info-band article:last-child {
  border-right: 0;
}

.info-band h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.info-band p {
  margin-bottom: 9px;
  color: #59625f;
  font-size: 13px;
  line-height: 1.45;
}

.info-band a {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: #69716e;
  font-size: 12px;
}

.article-page {
  padding: 42px 0 56px;
}

.developers-page,
.developer-page {
  padding: 42px 0 62px;
}

.blog-page {
  padding: 42px 0 62px;
}

.blog-hero {
  max-width: 920px;
  padding-bottom: 32px;
}

.blog-hero h1 {
  margin-bottom: 15px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
}

.blog-hero p:last-child {
  color: #58615d;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.blog-featured {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.blog-featured-card img,
.blog-card img {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft);
}

.blog-featured-card img {
  aspect-ratio: 16 / 9;
}

.blog-featured-card span,
.blog-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.blog-featured-card h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1;
}

.blog-featured-card p {
  color: #56605c;
  font-size: 20px;
  line-height: 1.45;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 34px;
}

.blog-card {
  display: grid;
  align-content: start;
  gap: 13px;
}

.blog-card img {
  aspect-ratio: 4 / 3;
}

.blog-card span {
  margin: 4px 0 0;
}

.blog-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
}

.blog-card p {
  margin: 0;
  color: #66706c;
  font-size: 15px;
  line-height: 1.45;
}

.article-hero {
  width: min(980px, 100%);
  padding: 35px 0 28px;
}

.article-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.article-lead {
  max-width: 900px;
  margin-bottom: 24px;
  border-left: 4px solid var(--green);
  padding: 15px 0 16px 22px;
  background: linear-gradient(90deg, rgba(23, 114, 76, 0.08), rgba(255, 253, 250, 0));
  color: #35403c;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 650;
  line-height: 1.48;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  color: #68706d;
  font-size: 14px;
  font-weight: 700;
}

.article-meta a,
.article-media a,
.source-link {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-media {
  margin: 0;
  padding: 0 0 28px;
}

.article-media img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 690px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft);
}

.article-photo-placeholder {
  display: grid;
  place-items: center;
  min-height: clamp(300px, 45vw, 620px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 114, 76, 0.12), rgba(238, 185, 68, 0.14)),
    linear-gradient(180deg, #f1efe8, #e3e8df);
  color: rgba(34, 41, 39, 0.72);
  font-size: clamp(34px, 6vw, 74px);
  font-weight: 850;
  text-align: center;
}

.article-media figcaption {
  margin-top: 11px;
  color: #6d7471;
  font-size: 13px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
  padding-top: 8px;
}

.article-main {
  min-width: 0;
}

.article-body {
  color: #26302d;
  font-size: 19px;
  line-height: 1.72;
}

.article-body p {
  margin-bottom: 24px;
}

.article-sidebar {
  position: sticky;
  top: 24px;
  border-top: 3px solid var(--green);
  border-bottom: 1px solid var(--line);
  padding: 20px 0 22px;
}

.article-sidebar h2 {
  margin-bottom: 17px;
  font-size: 22px;
}

.latest-news-list {
  display: grid;
  margin-bottom: 22px;
}

.latest-news-list a {
  display: grid;
  gap: 7px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.32;
}

.latest-news-list span {
  color: #6d7471;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.source-link {
  font-size: 14px;
  font-weight: 850;
}

.developer-list {
  max-width: 860px;
  border-top: 1px solid var(--line);
}

.developer-list ul,
.developer-projects ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.developer-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  color: #69716e;
  font-size: 18px;
  font-weight: 750;
}

.developer-list a {
  color: var(--ink);
  font-size: 24px;
}

.developer-profile {
  max-width: 980px;
}

.developer-profile-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 18px 0 42px;
  border-bottom: 1px solid var(--line);
}

.developer-logo {
  display: grid;
  place-items: center;
  width: 180px;
  min-height: 126px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.82);
  color: var(--green);
  font-size: 48px;
  font-weight: 850;
}

.developer-logo img {
  display: block;
  max-width: 140px;
  max-height: 92px;
  object-fit: contain;
}

.developer-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 126px;
}

.developer-description {
  color: #424c48;
  font-size: 19px;
  line-height: 1.58;
}

.developer-projects {
  padding-top: 34px;
}

.developer-projects h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.developer-projects li {
  min-height: 50px;
  border-top: 1px solid var(--line);
  font-size: 18px;
  font-weight: 750;
}

.developer-projects li:last-child {
  border-bottom: 1px solid var(--line);
}

.developer-projects a,
.developer-projects span {
  display: flex;
  align-items: center;
  min-height: 50px;
}

.footer-top,
.footer-bottom {
  display: grid;
  align-items: center;
  gap: 24px;
}

.footer-top {
  grid-template-columns: auto 1fr auto auto;
  min-height: 65px;
}

.brand.small {
  color: var(--ink);
}

.brand.small img {
  width: 112px;
}

.footer-top p,
.footer-bottom span {
  margin: 0;
}

.footer-top nav {
  display: flex;
  gap: 54px;
  color: #424b47;
}

.footer-bottom {
  grid-template-columns: 1fr auto auto;
  min-height: 44px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1300px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 36px, 1120px);
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 22px;
    height: auto;
    padding-block: 22px;
  }

  .nav,
  .header-actions {
    justify-content: flex-start;
  }

  .workspace,
  .radar-grid {
    grid-template-columns: 1fr;
  }

  .projects {
    grid-template-columns: 1fr;
  }

  .project-card {
    grid-template-columns: 190px 1fr;
  }

  .region-grid,
  .dev-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .blog-featured-card {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-sidebar {
    position: static;
  }

  .quick-filters {
    flex-wrap: wrap;
  }

  .view-switch {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 24px, 680px);
  }

  .brand img {
    width: 145px;
  }

  .nav,
  .header-actions {
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav a {
    padding-block: 6px;
  }

  .nav .active::after {
    bottom: 0;
  }

  .outline-btn {
    padding: 12px 17px;
  }

  .lead {
    font-size: 16px;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .stats div {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .workspace {
    min-height: 0;
  }

  .geo-filter {
    grid-template-columns: 1fr;
  }

  .map-panel {
    min-height: 430px;
  }

  .filters {
    padding: 22px 16px;
  }

  .region-popover {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 90px;
    width: auto;
    max-height: calc(100vh - 118px);
  }

  .geo-map-card,
  .geo-panel {
    min-height: 0;
  }

  .geo-map-card {
    min-height: 520px;
    padding: 22px;
  }

  .geo-summary {
    left: 22px;
    right: auto;
    bottom: 22px;
  }

  .geo-panel {
    padding: 18px;
  }

  .filter-grid,
  .info-band,
  .featured-news,
  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .quick-filters > button,
  .view-switch,
  .view-switch button {
    width: 100%;
  }

  .view-switch {
    display: grid;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .thumb {
    min-height: 160px;
  }

  .project-card dl {
    grid-template-columns: 1fr;
  }

  .developer-profile-grid {
    grid-template-columns: 1fr;
  }

  .developer-logo {
    width: 100%;
  }

  .developer-list li {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 12px 0;
  }

  .news-list article {
    grid-template-columns: 34px 1fr;
  }

  .news-list span,
  .news-list button {
    margin-left: 55px;
  }

  .region-grid,
  .dev-grid {
    grid-template-columns: 1fr;
  }

  .market-chips {
    display: grid;
  }

  .market-chips button,
  .geo-actions,
  .geo-actions a {
    width: 100%;
  }

  .geo-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .info-band article {
    padding-right: 0;
    border-right: 0;
  }

  .article-page {
    padding-top: 28px;
  }

  .article-hero h1 {
    font-size: 38px;
    line-height: 1.05;
  }

  .article-body {
    font-size: 17px;
  }

  .blog-page {
    padding-top: 28px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-top nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}

.footer-single {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  color: #69716e;
  font-size: 12px;
}

.footer-single .brand {
  justify-self: start;
}

.footer-single span {
  justify-self: center;
  text-align: center;
}

.footer-single .footer-links {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.footer-single .footer-links a {
  color: #69716e;
  font-weight: 700;
}

@media (max-width: 760px) {
  .footer-single {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    padding: 20px 0;
  }

  .footer-single span,
  .footer-single .footer-links {
    justify-self: start;
    text-align: left;
  }
}

