.blog-list { 
    max-width: 900px; 
    margin: 2rem auto; 
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.blog-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    margin-bottom: 1.5rem;
    height: 400px;
    margin-left: 50px;
    width: 250px;
    max-width: 100%;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
}
.blog-splash {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}
.blog-info {
    width: calc(100%-20px);
    margin: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.blog-main-link{
    width: 100%;
    text-decoration: none;
}
.blog-title {
    text-align: center;
    font-size: 1.3rem;
    color: #008D6B;
    margin: 0 0 0.3em 0;
    text-decoration: none;
}
.blog-desc {
    color: #444;
    margin-bottom: 0.5em;
}
.blog-date {
    font-size: 0.95em;
    color: #888;
}
.search-bar {
    max-width: 900px;
    margin: 2rem auto 1.5rem auto;
    display: flex;
}
.search-bar input[type="text"] {
    flex: 1;
    padding: 0.7em 1em;
    border-radius: 6px 0 0 6px;
    border: 1px solid #b6c5b9;
    font-size: 1.05em;
    outline: none;
}
.search-bar button {
    padding: 0.7em 1.3em;
    border-radius: 0 6px 6px 0;
    border: none;
    background: #008D6B;
    color: #fff;
    font-weight: bold;
    font-size: 1.05em;
    cursor: pointer;
}
.search-bar button:hover {
    background: #256b4d;
}
.search-bar .btn-primary{
    margin-left: 20px;
}
.btn-primary {
    display: inline-block;
    padding: 0.7em 1.3em;
    border-radius: 6px;
    border: none;
    background: #008D6B;
    color: #fff;
    font-weight: bold;
    font-size: 1.05em;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    text-align: center;
}
.btn-primary:hover,
.btn-primary:focus {
    background: #256b4d;
    outline: none;
    color: #fff;
    text-decoration: none;
}

.edit-container{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.edit-container .btn-primary{
    width: 50%;
    border-radius: 0;
}