.elf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.elf-card {
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    transition: box-shadow 0.2s;
}

.elf-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.elf-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 14px;
}

.elf-photo {
    border-radius: 50%;
    object-fit: cover;
    background: #f4f4f4;
    border: 2px solid #ddd;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.elf-authorblock {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.elf-author-line {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.elf-author {
    font-weight: bold;
    font-size: 1.1em;
    margin: 0;
    white-space: nowrap;
}

.elf-inline-linkedin {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

.elf-username {
    color: #7d7d7d;
    font-size: 0.95em;
}

.elf-text {
    margin-top: 10px;
    font-size: 1em;
    line-height: 1.5;
}

.elf-text .hashtag {
    color: #F6143A;
    font-weight: 500;
    cursor: pointer;
}

.elf-footer {
    margin-top: auto;
    font-size: 0.9em;
    color: #444;
    opacity: 0.75;
    display: flex;
    gap: 10px;
    align-items: center;
}

.elf-loadmore-btn {
    display: block;
    margin: 30px auto 10px auto;
    padding: 10px 30px;
    background: #F6143A;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.elf-loadmore-btn:hover {
    background: #000;
}

@media (max-width: 1024px) {
    .elf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .elf-grid {
        grid-template-columns: 1fr;
    }
}
