.hero-section {
    width: 100%;
    padding: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-section {
    width: 80%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
}
.page-header {
    color: #1E3050;
    font-weight: 900;
    font-size: 40px;
    margin-bottom: 10px;
}
.hero-img-wrapper {
    width: 250px;
    height: 250px;
    background-color: #D9D9D9;
    border-radius: 50%;
    overflow: hidden;
}
.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-box {
    border: 2px solid #1eb53a;
    border-radius: 50%;
    padding: 20px;
    background-size: 10px 10px;
    background-image: radial-gradient(circle, #1eb53a 1.5px, rgba(0, 0, 0, 0) 1px);
}
.page-header-sub-text {
    line-height: 25px;
    max-width: 700px;
}
.search-form {
    padding-top: 1.5rem;
}
#search-input {
    font-size: 17px;
    padding: 10px 15px;
    outline: none;
    max-width: 350px;
    width: 100%;
    border: none;
    border: 2px solid #1eb53a;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}
#search-input:focus {
    outline: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15), 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.page-part {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.page-h2 {
    color: #1E3050;
    font-size: 30px;
    position: relative;
    margin-bottom: 30px;
}
.breadcrumbs a {
    text-decoration: none;
    color: black;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 15px;
    margin-bottom: 5px;
}
.breadcrumbs img {
    width: 5px;
}
.article-box {
    max-width: 378px;
    width: 90%;
    text-decoration: none;
    border-radius: 5px;
    overflow: hidden;
    color: black;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1), 0px 4px 6px rgba(0, 0, 0, 0.05);
}
.article-box:hover .article-box-header {
    text-decoration: underline;
}
.article-box-info {
    padding: 15px 25px;
}
.page-section.articles-area {
    flex-direction: column;
    gap: 1rem;
}
.page-top-part {
    width: 100%;
}
.article-box-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.article-box-img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.article-box-header {
    height: 75px;
}
.article-row {
    display: flex;
    gap: 2rem;
} 
.articles-wrapper {
    width: 100%;
}
.articles-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.read-time {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    gap: 10px;
}
.latest-article-wrapper {
    display: flex;
    width: 100%;
    height: 365px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    overflow: hidden;
    align-items: center;
    background-color: #1E3050;
    margin-bottom: 2rem;
}
.latest-article-wrapper:hover .latest-article-header {
    text-decoration: underline;
}
.latest-img-wrapper {
    overflow: hidden;
    height: 100%;
}
.latest-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.latest-info-wrapper {
    width: 60%;
    padding: 25px;
}
.latest-article-desc {
    line-height: 25px;
    margin-top: 10px;
    max-width: 700px;
}
.latest-article-header {
    font-size: 25px;
}
.article-page-num-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
.article-page-numbers {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.article-page-number {
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    transition: background-color .4s ease, color .4s ease;
    text-decoration: none;
    color: black;
}
.article-page-number:hover {
    background-color: #1E3050;
    color: white;
}
.article-page-number.active {
    background-color: #1E3050;
    color: white;
}