.miner-post.crypto-post {
    padding: 30px 50px 60px;
}

.crypto-post .crypto-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.crypto-post .crypto-logo,
.crypto-post .crypto-logo.wp-post-image {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.crypto-post .crypto-logo-fallback {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    flex-shrink: 0;
}

.crypto-post .crypto-header__main {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.crypto-post .crypto-title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}

.crypto-post .crypto-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px dashed #d1d5db;
    border-radius: 999px;
    background: #f8fafc;
    font-size: 13px;
    color: #374151;
}

.crypto-post .crypto-meta-pill strong {
    font-weight: 600;
}

.crypto-post .crypto-stats-section {
    margin-bottom: 18px;
}

.crypto-post .crypto-stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.crypto-post .crypto-stat {
    border: 1px dashed #d1d5db;
    border-radius: 4px;
    background: #f8fafc;
    padding: 8px 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.crypto-post .crypto-stat--span-1 {
    grid-column: span 1;
}

.crypto-post .crypto-stat__label {
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
}

.crypto-post .crypto-stat__value {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
    word-break: break-word;
}

.crypto-post .crypto-stat__chart-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    margin-left: 4px;
}

.crypto-post .crypto-stat__chart-link:hover {
    text-decoration: underline;
}

.crypto-post .crypto-chart {
    margin-bottom: 24px;
    border: 1px dashed #d1d5db;
    border-radius: 4px;
    background: #fff;
    padding: 12px 12px 8px;
}

.crypto-post .crypto-chart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.crypto-post .crypto-chart__title {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.crypto-post .crypto-chart__external {
    font-size: 12px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.crypto-post .crypto-chart__external:hover {
    text-decoration: underline;
}

.crypto-post .crypto-chart__canvas {
    display: block;
    width: 100%;
    height: 200px;
}

.crypto-post .crypto-updated {
    margin: 0 0 20px;
    font-size: 12px;
    color: #6b7280;
}

.crypto-post .crypto-notice {
    margin-bottom: 20px;
    padding: 12px 16px;
    border: 1px dashed #f59e0b;
    border-radius: 12px;
    background: #fffbeb;
    color: #92400e;
    font-size: 13px;
}

.crypto-post .crypto-content {
    margin-top: 30px;
}

@media (max-width: 950px) {
    .miner-post.crypto-post {
        padding: 24px 20px 40px;
    }

    .crypto-post .crypto-stats-row {
        grid-template-columns: 1fr;
    }

    .crypto-post .crypto-stat--span-1 {
        grid-column: span 1;
    }
}

@media (min-width: 951px) and (max-width: 1200px) {
    .crypto-post .crypto-stats-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
