h1 {
    text-align: center;
}

h2 {
    margin-bottom: 0;
    height: 95px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

p { 
    margin: 0;
}

img {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
}

section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
}

section > div {
    width: 20%;
    padding: 10px 10px 20px;
    background: #F9F6EE;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

section > div > p {
    height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    margin-bottom: 15px;
}

section > div > div:nth-child(4) {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    color: #808080;
}

section > div > div:nth-child(5) {
    text-align: center;
}

section > div > div:nth-child(5) > a {
    color: #fefefe;
    background: #1a73e8;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}