.tmblr {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 50%),
        linear-gradient(to bottom, #3a4d63 0%, #2e3f50 50%, #243343 100%);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
    color: #d4dde6;
}

.tmblr_feed {
    padding: 18px;
}

.tmblr_post {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.tmblr_post:last-child {
    margin-bottom: 0;
}

.tmblr_avatar {
    position: relative;
    flex: 0 0 auto;
}

.tmblr_avatar img {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.tmblr_avatar::after {
    content: "";
    position: absolute;
    top: 16px;
    right: -12px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #ffffff;
}

.tmblr_card {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    border-radius: 5px;
    padding: 16px 18px;
    color: #4a4a4a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.tmblr_card_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
    color: #93a4b5;
}

.tmblr_user {
    font-weight: bold;
}

.tmblr_card h2 {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: #2c3e50;
    font-family: Georgia, serif;
}

.tmblr_card p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.55;
}

.tmblr_card p:last-child {
    margin-bottom: 0;
}

.tmblr_card a {
    color: #577491;
    text-decoration: none;
    background: none;
}

.tmblr_card a:hover {
    text-decoration: underline;
}

.tmblr_card b,
.tmblr_card strong {
    color: #2c3e50;
}

.tmblr_tags {
    margin-top: 12px;
    font-size: 12px;
    color: #8aa0b5;
}

.tmblr_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    align-items: center;
}

.tmblr_grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.tmblr_grid2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    align-items: center;
}

.tmblr_grid2 img {
    width: 100%;
    display: block;
}
