body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
}

.fac-wrapper {
  max-width: 850px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}

.fac-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 2px solid #2aa7a1;   /* teal border */
  border-radius: 10px;
  background: #fff;
}

.fac-card img {
  /*width: 70px;
  height: 80px;*/
  object-fit: cover;
  border-radius: 4px;
}

.name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

/* Responsive */
@media (max-width: 1100px) {
  .faculty-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .faculty-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .faculty-wrapper {
    grid-template-columns: 1fr;
  }
}
/* background strips */
.strip1{background:#f6ecdd;}
.strip2{background:#eef3da;}
.strip3{background:#fdeedb;}

.section{
    max-width: 800px;
    padding:5px 60px;
	margin-left:10px;
}

/* profile box */
.profile{
    display:flex;
    align-items:center;
    gap:50px;
}

.profile.reverse{
    flex-direction:row-reverse;
}

.photo{
    width:160px;
    height:190px;
    border:2px solid #333;
    border-radius:18px;
    background:#ddd;
}

/* text styling */
.text{
    max-width:520px;
}

.name{
    font-weight:bold;
    font-size:17px;
}

.desc{
    font-size:14px;
    line-height:1.4;
}

/* Editorial Desk label */
.editorial-title{
    text-align:center;
    margin:20px 0;
}

.editorial-title span{
    background:#79c8d6;
    padding:6px 20px;
    border-radius:16px;
    font-size:14px;
}

/* editorial profiles */
.editorial-row{
    display:flex;
    justify-content:center;
    gap:120px;
    padding-top:10px;
}

.editorial-card{
    text-align:center;
}

.editorial-card .photo{
	margin-left:40px;
    width:140px;
    height:170px;
}

.editorial-card .name{
    margin-top:8px;
}

/* spacing like image */
.top-space{padding-top:20px;}
.bottom-space{padding-bottom:25px;}

.banner{
    padding:0px 0 10px;
	justify-content:center;
}

.main-title{
    font-size:50px;
    font-weight:900;
    letter-spacing:4px;
    color:#e07b2c;
    text-transform:uppercase;
    text-align:center;
    /* white outline effect */
    text-shadow:
        3px 0 white,
       -3px 0 white,
        0 3px white,
        0 -3px white,
        2px 2px white,
       -2px 2px white,
        2px -2px white,
       -2px -2px white;
}

.subtitle{
    margin-top:8px;
    font-size:26px;
    color: green;  /*#f09a4d;*/
    font-weight:600;
	text-align:center;
}
    /* Header */
    .top-line {
		width:900;
        height: 3px;
        background: #00a0c6;
        margin-bottom: 10px;
		text-align:center;
    }

    .title-badge {
        display: inline-block;
        background: #00a0c6;
        color: #fff;
        padding: 4px 16px;
        border-radius: 20px;
        font-weight: 600;
        margin-bottom: 6px;
		text-align:center;
		margin-left: 275px;
    }

    .sub-title {
        color: #e53935;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin: 5px 0 4px;
        font-size: 14px;
		text-align:center;
    }

    .series-title {
        display: inline-block;
        background: #ffcc80;
        padding: 4px 14px;
        border-radius: 6px;
        font-weight: 700;
        color: #c62828;
        margin-bottom: 12px;
        font-size: 13px;
		text-align:center;
    }

    /* Description box */
    .description {
        background: #3f2ea8;
        color: #fff;
        border-radius: 40px;
        padding: 18px 28px;
        font-size: 14px;
        line-height: 1.5;
        max-width: 1050px;
        margin: 0 auto 30px;
    }

    /* Talks grid */
    .talks-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 26px 20px;
    }

    @media (max-width: 1000px) {
        .talks-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .talks-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Talk card */
    .talk-card {
        position: relative;
        padding-top: 24px;
    }

    .date-badge {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: #f57c00;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 12px;
    }

    .photo-frame {
        width: 140px;
        height: 190px;
        margin: 0 auto 6px;
        border-radius: 80px 80px 20px 20px;
        overflow: hidden;
        background: #ddd;
        border: 2px solid #333;
    }

    .photo-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .talk-no {
        color: #6a1b9a;
        font-weight: 700;
        font-size: 13px;
        margin: 6px 0 4px;
    }

    .speaker {
        font-size: 13px;
        font-weight: 700;
        color: #1565c0;
    }

    .details {
        font-size: 12px;
        line-height: 1.4;
        margin-top: 3px;
    }

    .details span {
        font-weight: 700;
    }