/* Home Tab Styling */

/* Container */
.content {
    padding: 20px;
    max-width: 1100px;
    margin: auto;
}

/* Section Headings */
.content h2 {
    color: #000000;
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: 1px solid #000000;
    padding-bottom: 5px;
    font-weight: 700;
}

.content h3 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 30px;
    color: #171717;
}

/* Paragraph and List Styling */
.content p {
    font-size: 16px;
    line-height: 1.8;
    color: #2c2c2c;
    margin: 10px 0;
}

.content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Strong Text Styling */
.content strong {
    color: #222;
    font-weight: bold;
}


/* About Section */
.about {
    margin-bottom: 20px;
}

/* Open Access Section */
.open-access ul {
    list-style-type: disc;
    color: #444;
}

/* Editors Section */
.editors {
    margin-top: 30px;
}

.editors h3 {
    font-size: 22px;
    margin-top: 15px;
}

.editors p, .editors ul li {
    font-size: 17px;
    line-height: 1.6;
}

/* Expert Editors Grid */
.expert-editors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Editor Card */
.editor-card {
    background-color: white;
    border: 1px solid #636363;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.editor-card h4 {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

.editor-card p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

/* Circular Image Styling for Cards */
.editor-card .editor-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid brown;
    margin-bottom: 10px;
}

