body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.author-profile {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.banner {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 60px;
	margin-top: 20px;
}

.avatar-container {
    position: absolute;
    bottom: -50px;
    left: 40px;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
}

.content {
    padding: 20px 40px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

h1 {
    margin: 0;
    color: inherit;
    font-size: 30px;
	border-bottom: solid 3px #2fb45e;
	padding-bottom: 10px;
}

.job-title {
    margin: 5px 0;
    color: #666;
    font-size: 16px;
}

.contact-btn {
    background-color: #e6007e; 
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}
.contact-btn a{
    color: white;
	text-decoration: none;
}


.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    font-size: 0.9rem;
}

.info-table td {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.info-table td:first-child {
    font-weight: 500;
    color: #444;
}

.info-table td:last-child {
    text-align: right;
    color: #000;
}


.bio p {
    margin-bottom: 20px;
	font-size: 16px;
}

.latest-news h2 {
    font-size: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
	margin-top: 60px;
}

.article-card {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    gap: 20px;
    align-items: center; 
    overflow: hidden; 
	margin-bottom: 20px;
}

.logo-placeholder {
    flex: 0 0 30%; 
    max-width: 30%;
    display: flex;
    justify-content: center; 
}

.logo-placeholder img {
    width: 100%;    
    height: auto; 
    display: block;
    border-radius: 4px; 
}

.article-info {
    flex: 1; 
}

.article-info h3 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

.article-info p {
    margin: 0;
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}
@media (max-width: 600px) {
    .article-card {
        flex-direction: column;
    }
    .logo-placeholder {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
}
@media (max-width: 768px) {
    .header-main {
        flex-direction: column; 
        align-items: flex-start; 
    }

    .contact-btn {
        margin-top: 15px;
        min-width: 160px;
        white-space: nowrap;
    }
}
.view-more {
  margin-top: 30px;
  text-align: right;
  font-size: 15px;
}

.view-more a {
  color: #093;
  text-decoration: none;
  font-size: 1.2rem;
  border-bottom: 1px dashed #093;
}

.view-more a:hover {
  color: #333;
  border-bottom-color: #333;
}