/*Authors section*/

.section-title {
font-size: 2.5rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 20px;
}

.section-description {
font-size: 1rem;
color: #555;
line-height: 1.6;
margin-bottom: 50px;
max-width: 900px;
}
.author-details{
display: flex;
gap: 30px;
padding: 30px;
}

.authors-grid {
display: grid;
grid-template-columns: 1fr;
gap: 10px;
}

.author-card {
display: flex;
gap: 30px;
background: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
transition: box-shadow 0.3s ease;
}

.author-card:hover {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.author-image {
flex-shrink: 0;
width: 150px;
height: 150px;
border-radius: 50%;
overflow: hidden;
background: linear-gradient(135deg, #e0e7ff 0%, #f0f4ff 100%);
display: flex;
align-items: center;
justify-content: center;
}

.author-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.author-content {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
}

.author-name {
font-size: 2rem;
color: #FEC214;
font-weight:600;
margin-bottom: 5px;
cursor: pointer;
text-decoration: none;
transition: color 0.3s ease;
display: inline-block;
}

.author-name:hover {
color: #555;
text-decoration: underline;
}

.author-title {
font-size: 1rem;
font-weight: 600;
color: #1a1a1a;
margin-bottom: 8px;
}

.author-experience {
font-size: 0.95rem;
color: #666;
margin-bottom: 15px;
}

.author-links {
display: flex;
gap: 12px;
margin-bottom: 15px;
}

.social-link {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
background-color: #f0f0f0;
border-radius: 50%;
color: #0099cc;
text-decoration: none;
transition: all 0.3s ease;
font-size: 1.1rem;
}

.social-link:hover {
background-color: #0099cc;
color: white;
transform: translateY(-2px);
}

.author-bio {
font-size: 0.95rem;
color: #555;
line-height: 1.6;
margin-top: 10px;
}

.view-more {
color: #FEC214;
text-decoration: none;
font-weight: 600;
margin-left: 4px;
cursor: pointer;
transition: color 0.3s ease;
}

.view-more:hover {
color: #0077aa;
text-decoration: underline;
}

@media (max-width: 768px) {
.author-details {
flex-direction:column;
}
.section-title {
font-size: 1.8rem;
}

.author-card {
flex-direction: column;
align-items: center;
text-align: center;
gap: 20px;
}

.author-image {
width: 120px;
height: 120px;
}

.author-name,
.view-more {
display: block;
}
}
/* Author Profile Section */
.author-profile {
display: flex;
gap: 30px;
margin-bottom: 50px;
background: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.author-image {
flex-shrink: 0;
width: 150px;
height: 150px;
border-radius: 8px;
overflow: hidden;
background: linear-gradient(135deg, #e0e7ff 0%, #f0f4ff 100%);
}

.author-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.author-info {
flex: 1;
}


.author-title {
font-size: 1.1rem;
font-weight: 600;
color: #555;
margin-bottom: 12px;
}

.author-education {
font-size: 0.95rem;
color: #666;
margin-bottom: 12px;
line-height: 1.6;
}

.author-experience {
font-size: 0.95rem;
color: #666;
margin-bottom: 10px;
}

.social-links {
display: flex;
gap: 10px;
}

.social-link {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: #0099cc;
border-radius: 50%;
color: white;
text-decoration: none;
transition: all 0.3s ease;
font-size: 1.2rem;
}

.social-link:hover {
background-color: #0077aa;
transform: translateY(-3px);
box-shadow: 0 4px 12px rgba(0, 153, 204, 0.3);
}

/* Bio Section */
.bio-section {
margin-bottom: 50px;
background: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bio-text {
font-size: 0.95rem;
color: #555;
line-height: 1.8;
text-align: justify;
}

/* Editorial Process Section */
.editorial-section {
margin-bottom: 50px;
background: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-title {
font-size: 1.5rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 20px;
}

.editorial-text {
font-size: 0.95rem;
color: #555;
line-height: 1.8;
text-align: justify;
}

.editorial-link {
color: #0099cc;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}

.editorial-link:hover {
color: #0077aa;
text-decoration: underline;
}

/* Articles Section */
.articles-section {
background: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.articles-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
}

.articles-nav {
display: flex;
gap: 10px;
}

.nav-btn {
width: 40px;
height: 40px;
border: 2px solid #ddd;
background: white;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: #666;
font-size: 1.1rem;
transition: all 0.3s ease;
}

.nav-btn:hover {
border-color: #0099cc;
color: #0099cc;
background-color: #f0f8ff;
}

.articles-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}

.article-card {
background: #f8f9fa;
border-radius: 8px;
overflow: hidden;
transition: all 0.3s ease;
cursor: pointer;
border: 2px solid transparent;
}

.article-card:hover {
border-color: #0099cc;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
transform: translateY(-4px);
}

.article-image {
width: 100%;
height: 180px;
background: linear-gradient(135deg, #ccebf7 0%, #a8dff0 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
color: rgba(0, 153, 204, 0.3);
}

.article-content {
padding: 20px;
}

.article-tag {
display: inline-block;
background-color: #0099cc;
color: white;
padding: 6px 12px;
border-radius: 4px;
font-size: 0.8rem;
font-weight: 600;
margin-bottom: 12px;
}

.article-title {
font-size: 0.95rem;
font-weight: 600;
color: #1a1a1a;
line-height: 1.5;
min-height: 3em;
}

/* Responsive */
@media (max-width: 768px) {
.container {
padding: 20px 15px;
}

.author-profile {
flex-direction: column;
align-items: center;
text-align: center;
gap: 20px;
}

.author-name {
font-size: 1.5rem;
}

.author-image {
width: 120px;
height: 120px;
}

.articles-grid {
grid-template-columns: 1fr;
}

.articles-header {
flex-direction: column;
gap: 15px;
}

.section-title {
font-size: 1.3rem;
}

.editorial-text,
.bio-text {
text-align: left;
}
}
