	@font-face {
		font-family: 'Futura Light';
		src: url('FuturaLightC.eot');
		src: url('FuturaLightC.eot?#iefix') format('embedded-opentype'),
		url('FuturaLightC.woff') format('woff'),
		url('FuturaLightC.ttf') format('truetype');
		font-weight: normal;
		font-style: normal;
		}

    body {
      margin: 0;
      font-family: 'Futura Light';
      color: #111;
      background: #fafafa;
	  position: relative;
    }

	.header {
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  padding: 25px 5vw;
	  background: #fff;
	  border-bottom: 1px solid #eee;
	}

    header .logo {
      font-size: 1.5rem;
      font-weight: bold;
    }

    header nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #777;
      font-size: 0.9rem;
      text-transform: uppercase;
    }
		
	.logo img {
	  height: 35px;
	  object-fit: contain;
	  display: block;
	}

	.nav {
	  margin-top: 15px;
	}

	.nav a {
	  margin: 0 10px;
	  text-decoration: none;
	  color: #111;
	  font-size: 1.15rem;
	  text-transform: uppercase;
	  letter-spacing: 0.5px;
	  font-weight: 500;
	  transition: opacity 0.2s;
	}

	.nav a:hover {
	  opacity: 0.7;
	}
    .forbes-banner {
      text-align: center;
      padding: 40px 20px;
      background: linear-gradient(to bottom, #f7f7f7 0%, #fff 100%);
    }

    .forbes-banner h2 {
      font-size: 2rem;
      margin: 0;
    }

	.forbes-banner .big {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  height: 100%; 
	}

	.forbes-banner .big img {
	  max-width: 330px;
	  width: 100%;
	  height: auto;
	  display: block;
	}


    .forbes-banner .small {
      font-size: 1rem;
      position: relative;
      top: -10px;
    }
	
	.forbes-subtitle {
	  text-align: center;
	  margin-top: -30px; 
      font-family: 'Futura Light';
	  font-size: 1.6rem;
	  line-height: 0.7;
	  color: #000; 
	}


    #content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      padding: 40px 5vw;
    }

    .person-block {
      display: flex;
      width: 100%;
	  max-width:1200px;
      border-top: 1px solid #7d7d7d;
      border-bottom: 1px solid #7d7d7d;
      overflow: visible;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      background: #fff;
	  border-radius: 0;
    }

    .person-block.left .photo { order: 1; }
    .person-block.left .info { order: 2; }
    .person-block.right .info { order: 1; }
    .person-block.right .photo { order: 2; }

    .person-block .photo,
    .person-block .info {
      width: 50%;
      flex: none;
      overflow: hidden;
    }

    .person-block .photo {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f0f0f0;
      margin-top: -1px;
	  margin-bottom: -1px;
      position: relative;
      z-index: 1;
      height: calc(100% + 3px);
    }

    .person-block.left .photo {
      /*margin-left: -1px;*/
    }

    .person-block.right .photo {
      /*margin-right: -1px;*/
    }

    .person-block .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .person-block .info {
      padding: 30px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      z-index: 0;
      border-top: none;
      border-bottom: none;
    }

    .person-block.left .info {
      border-left: none;
      border-right: 1px solid #7d7d7d;
    }

    .person-block.right .info {
      border-right: none;
      border-left: 1px solid #7d7d7d;
    }

    .info h3 {
      font-size: 1.8rem;
      margin: 0;
    }

    .info hr {
      border: none;
      border-top: 1px solid #7d7d7d;
      margin: 25px 0;
      max-width: 80%;
    }

    .info .meta {
      font-size: 1.6rem;
      color: #555;
      padding-top: 15px;
    }

    .info ul {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      font-size: 1.1rem;
    }

    .info ul li {
      margin-bottom: 10px;
    }

    .info ul li a {
      text-decoration: none;
      color: #9e8663;
    }

    .info ul li a:hover {
      text-decoration: underline;
      opacity: 0.8;
    }
	
@media (max-width: 768px) {
  .person-block {
    flex-direction: column;
    height: auto;
    border: 1px solid #dddddd;
  }

  .person-block .photo,
  .person-block .info {
    width: 100%;
    height: auto;
  }

  .person-block .photo {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .person-block .photo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
  }

  .person-block .info {
    order: 2 !important;
    border: none !important;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    padding: 15px 5vw;
  }

  .nav {
    margin-top: 10px;
  }

  .nav a {
    margin: 0 10px;
    font-size: 1rem;
  }
  
  .forbes-subtitle {
	 font-size: 1.2rem;
    line-height: 0.5; 

  }
}

.page-background {
	position: absolute;
    top: 105px;
    left: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(to top, transparent 0%, #e7e7e7d9 100%);
    z-index: 0;
}

.header,
main,
section,
.forbes-banner {
  position: relative;
  z-index: 1;
  background: transparent;
}
