/* info-card.css - 信息卡片样式 */
.info-card {
    width: 100%;
    /* border: 1px solid #919eab;*/
    border-radius: 16px;
    padding: 24px;
    background: #fff;
    display: flex;
    gap: 28px;
    align-items: stretch;
    box-shadow: 0 1px 8px #d7d3e9;
}

/* 左侧图片区域 */
.card-image {
    flex: 0 0 280px;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background: #e8e4f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-image .placeholder {
    font-size: 4rem;
    color: #6959CD;
    font-weight: 700;
}

/* 右侧内容 */
.card-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 标题行 */
.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.card-header .bot-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #673AB7;
    letter-spacing: -0.3px;
}

.card-header .badge {
    background: #6959CD;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 16px;
    border-radius: 40px;
    letter-spacing: 0.4px;
}

.card-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #2d2d44;
    margin: 12px 0 18px 0;
    padding-bottom: 16px;
    border-bottom: 2px dashed #e8e4f5;
}

.card-desc strong {
    color: #1a1a2e;
}

/* 响应式 - 平板及手机 */
@media (max-width: 768px) {
    .info-card {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 18px;
    }

    .card-image {
        flex: 0 0 auto;
        width: 100%;
        height: 240px;
        min-height: auto;
    }

    .card-header .bot-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 14px;
    }
    .card-image {
        height: 180px;
    }
}
.tool-url {
    margin: 4px 0 18px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tool-url .url-badge {
    display: inline-block;
    padding: 0 10px;
    background: #673ab721;
    color: #673AB7;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 10px;
    line-height: 20px;
    letter-spacing: 0.3px;
}

.tool-url a {
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.tool-url a:hover {
    color: #2563eb;
}