@charset "UTF-8";
.item-card {
    display: flex;
    align-items: flex-start;
    border: 1px solid #ccc;
    padding: 12px;
    margin: 16px 0;
    background: #f9f9f9;
    font-family: sans-serif;
    max-width: 800px;
}
.item-card-image-link {
    display: block;
    width: 120px;
    height: 120px;
    margin-right: 12px;
    flex-shrink: 0;
}
.item-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border: none;
}
.item-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.item-card-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
    text-decoration: none;
    color: #000;
    display: block;
    max-width: 90%;
    word-break: break-word;
}
.item-card-button {
    display: inline-block;
    background-color: #FF9900;
    color: #fff;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    text-align: center;
    width: 100px;
    line-height: 1;
    text-decoration: none;
}