.hero-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 0;
}

.page-section {
    width: 80%;
    max-width: 1200px;
}

.page-section.hero {
    display: flex;
}

.page-header {
    color: #1E3050;
    font-weight: 900;
    font-size: 40px;
    margin-bottom: 10px;
}

.page-h2 {
    color: #1E3050;
    font-size: 30px;
    position: relative;
    margin-bottom: 30px;
}

.hero-sub-text {
    line-height: 25px;
    font-size: 19px;
    max-width: 700px;
}

.page-part {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5rem;
}

.topic {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.topic:hover .topic-img-box {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.topics {
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.topic-img-box {
    display: inline-block;
    border: 2px solid #1eb53a;
    border-radius: 50%;
    padding: 15px;
    background-size: 10px 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-image: radial-gradient(circle, #1eb53a 1.5px, rgba(0, 0, 0, 0) 1px);
}

.topic-img-wrapper {
    width: 200px;
    height: 200px;
    background-color: #D9D9D9;
    border-radius: 50%;
    overflow: hidden;
}

.topic-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topic-info {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

.topic-info h3 {
    color: #1eb53a;
    font-weight: bold;
    font-size: 20px;
}

.article-count {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-count img {
    width: 15px;
}

.posts-wrapper-top {
    display: flex;
    gap: 2rem;
    min-height: 300px;
}

.post-side-large,
.post-side-small-box,
.post {
    text-decoration: none;
    color: inherit;
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
}

.post-side-small-box {
    flex-direction: column;
}

.post-side-large-img {
    width: 60%;
    min-width: 250px;
    max-width: 250px;
    height: 100%;
    overflow: hidden;
}

.post-side-small-img {
    max-width: none;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.post-side-large-img img,
.post-side-small-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.post-side-small-info {
    padding: 20px;
}

.post-header {
    font-size: 18px;
    color: #1E3050;
}

.post-side-small {
    display: flex;
    gap: 2rem;
    width: 50%;
}

.post-side-large {
    width: 70%;
}

.post-side-large-info {
    padding: 20px;
}

.post-description {
    line-height: 20px;
    margin-top: 10px;
    color: #707070;
}

.post-side-small-box:hover .post-header,
.post-side-large:hover .post-header,
.post:hover .post-header {
    text-decoration: underline;
}
.posts-wrapper-bottom {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
}
.post {
    width: 33%;
    flex-direction: column;
}

.post-img {
    max-width: none;
    width: 100%;
    height: 150px;
    overflow: hidden;
}
.post-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.post-info {
    padding: 25px 20px;
}
.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);
}