.feed-main {
    background: url("../assets/martin.jpg") center/cover no-repeat fixed;
    position: relative;
    min-height: 100vh;
    padding: 8rem 0 6rem;
    isolation: isolate;
}

.feed-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(18, 42, 30, 0.75);
    z-index: 0;
}

.feed-main > * {
    position: relative;
    z-index: 1;
}

.feed-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feed-title {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
}

.feed-loading,
.feed-empty {
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 3rem 0;
}

/* POST CARD */
.post-card {
    background: white;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.post-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.2rem;
}

.post-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #c8ddd1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #2f6f4e;
    font-size: 1rem;
    flex-shrink: 0;
}

.post-meta strong {
    display: block;
    font-size: 0.95rem;
    color: #1f2933;
}

.post-meta span {
    font-size: 0.8rem;
    color: #888;
}

.post-type-badge {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    background: #e8f4ee;
    color: #2f6f4e;
}

.post-type-badge.catch {
    background: #fff3e0;
    color: #e67e00;
}

.post-caption {
    padding: 0 1.2rem 1rem;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

/* CATCH REPORT BLOCK */
.catch-block {
    margin: 0 1.2rem 1rem;
    background: #f4f9f6;
    border: 1px solid #d5e8dc;
    border-radius: 10px;
    padding: 1rem;
}

.catch-block-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2f6f4e;
    margin-bottom: 0.75rem;
}

.catch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

.catch-item label {
    display: block;
    font-size: 0.72rem;
    color: #888;
    margin-bottom: 0.1rem;
}

.catch-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2933;
}

.released-tag {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.78rem;
    background: #d4edda;
    color: #1a6b35;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
}

.post-image {
    width: 100%;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

.post-footer {
    border-top: 1px solid #f0f0f0;
    padding: 0.7rem 1.2rem;
    font-size: 0.82rem;
    color: #aaa;
}
