.sn-container {
    display: flex;
    align-items: center;
}
.sn-text-box {
    background-color: #00454F;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 1.2em;
    font-weight: bold;
    margin-right: 15px;
}
.sn-select-box {
    border: 1px solid #00454F;
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.sn-select-box select {
    border: none;
    width: 100%;
    font-size: 1em;
    background: none;
    margin-bottom: 0;
    padding: 9px;
    height: auto;
}
.sn-select-box select:focus-visible,
.sn-select-box select:focus {
    outline: none !important;
    border: none !important;
}

#posts-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 10px 0 0 0;
}
.image {
    flex: 1 1 20%;
    max-width: 20%;
}
.image img {
    width: 100%;
    height: auto;
}
.text {
    flex: 2 1 78%;
}
.date {
    font-size: 14px;
    color: #777;
}
.title {
    font-size: 18px;
    font-weight: bold;
    color: #004f59;
}
.title a,
.date {
    color:#004f59;
}
.content {
    font-size: 14px;
    color: #6e6259;
}
.link {
    font-size: 14px;
    color: #337ab7;
    text-decoration: none;
}
.link:hover {
    text-decoration: underline;
}

/* Cellphone */
@media (max-width: 768px) {
    .sn-container {
        flex-direction: column;
        align-items: stretch;
    }
    .sn-text-box, .sn-select-box {
        margin-bottom: 10px;
        margin-right: 0px;
    }
    #posts-container  {
        flex-direction: column;
        align-items: flex-start;
    }
    .image, .text {
        max-width: 100%;
        flex: 1 1 100%;
    }
}