 .team a {
     display: flex;
     align-items: center;
     gap: 12px;
     color: #8f1d32;
     text-decoration: none
 }

 .team a:hover {
     text-decoration: underline
 }

 .team-institution-logo {
     display: block;
     width: 72px;
     height: 30px;
     object-fit: contain;
     flex: 0 0 72px
 }

 .brand-group {
     display: flex;
     align-items: center;
     gap: 10px;
     min-width: 0
 }

 .institution-logo {
     display: flex;
     align-items: center;
     height: 52px
 }

 .institution-logo img {
     display: block;
     width: auto;
     height: 100%;
     object-fit: contain
 }

 .hrzz-logo {
     width: 116px;
     margin-right: 12px
 }

 .pbf-logo {
     width: 178px;
     margin-right: -5px
 }

 .brand {
     white-space: nowrap
 }

 @media(max-width:1000px) {
     nav {
         align-items: flex-start;
         flex-direction: column
     }

     .brand-group {
         width: 100%
     }
 }

 @media(max-width:500px) {
     .brand-group {
         gap: 8px
     }

     .institution-logo {
         height: 38px
     }

     .hrzz-logo {
         width: 82px;
         margin-right: 8px
     }

     .pbf-logo {
         width: 132px;
         margin-right: -3px
     }

     .brand {
         font-size: 1rem
     }
 }

 * {
     box-sizing: border-box
 }

 body {
     margin: 0;
     font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
     color: #3b1f25;
     background: #fffaf8;
     line-height: 1.7
 }

 nav {
     position: sticky;
     top: 0;
     z-index: 10;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 18px 6vw;
     background: rgba(255, 250, 248, .96);
     border-bottom: 1px solid #ead5d8
 }

 .brand {
     font-weight: 800;
     font-size: 1.25rem;
     color: #8f1d32;
     text-decoration: none
 }

 .navlinks {
     display: flex;
     gap: 20px;
     align-items: center;
     flex-wrap: wrap
 }

 .navlinks a {
     color: #6f4a52;
     text-decoration: none
 }

 .navlinks a.active {
     color: #8f1d32;
     font-weight: 700
 }

 .lang {
     padding: 4px 9px;
     border: 1px solid #8f1d32;
     border-radius: 999px;
     font-weight: 700
 }

 .hero {
     min-height: 72vh;
     display: flex;
     align-items: center;
     padding: 7vw 8vw;
     background: linear-gradient(135deg, #f3d9dd, #fffaf8 60%)
 }

 .hero-inner {
     max-width: 900px
 }

 .eyebrow {
     letter-spacing: .14em;
     text-transform: uppercase;
     color: #a54b5d;
     font-weight: 700
 }

 .hero h1 {
     font-size: clamp(2.4rem, 6vw, 5.8rem);
     line-height: 1.05;
     margin: 15px 0;
     color: #71182b
 }

 .hero p {
     font-size: 1.2rem;
     max-width: 800px
 }

 .cta {
     display: inline-block;
     margin-top: 20px;
     padding: 12px 20px;
     background: #8f1d32;
     color: white;
     text-decoration: none;
     border-radius: 8px
 }

 .page {
     max-width: 1000px;
     margin: 0 auto;
     padding: 70px 6vw
 }

 .page h1 {
     font-size: clamp(2rem, 4vw, 3.5rem);
     line-height: 1.15;
     color: #8f1d32
 }

 .lead {
     font-size: 1.15rem
 }

 .meta {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 15px;
     margin: 30px 0
 }

 .card,
 .news-card {
     background: white;
     border: 1px solid #ead5d8;
     border-radius: 14px;
     padding: 24px;
     box-shadow: 0 8px 25px rgba(113, 24, 43, .08)
 }

 .card h3,
 .news-card h2 {
     margin-top: 0;
     color: #8f1d32
 }

 .grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
     gap: 20px
 }

 .team {
     list-style: none;
     padding: 0
 }

 .team li {
     padding: 12px 0;
     border-bottom: 1px solid #ead5d8
 }

 .news-card {
     margin: 20px 0
 }

 .news-card a {
     color: #8f1d32;
     font-weight: 700
 }

 .pager {
     max-width: 1000px;
     margin: 20px auto 70px;
     padding: 0 6vw;
     display: flex;
     justify-content: space-between
 }

 .pager a {
     color: #8f1d32;
     text-decoration: none;
     font-weight: 700
 }

 .section-image {
     display: block;
     width: 100%;
     max-height: 520px;
     object-fit: contain;
     margin: 0 0 24px;
     border-radius: 10px;
     background: #fff
 }

 footer {
     text-align: center;
     padding: 30px;
     color: #8b6870;
     border-top: 1px solid #ead5d8
 }

 @media(max-width:800px) {
     nav {
         align-items: flex-start;
         gap: 10px;
         flex-direction: column
     }

     .navlinks {
         gap: 10px
     }

     .hero {
         min-height: 65vh
     }
 }