/* =========================================
   TRAVIAN TOOLKIT - CARDS
   ========================================= */

.toolGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.toolCard {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 145px;
    padding: 14px;
    background: rgba(10, 13, 13, .92);
    border: 1px solid #76501d;
    border-radius: 8px;
    transition: .2s ease;
}

.toolCard:hover {
    border-color: #e0a94d;
    transform: translateY(-2px);
}

.toolIcon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    object-fit: contain;
}

.toolCardContent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    height: 100%;
}

.toolCard h3 {
    margin: 2px 0 7px;
    color: #e0a94d;
    font: 16px Georgia, serif;
}

.toolCard p {
    margin: 0;
    color: #f1eee7;
    font-size: 13px;
    line-height: 1.4;
}

.toolButton {
    margin-top: auto;
    padding: 7px 13px;
    color: #f1eee7;
    background: #b87922;
    border: 1px solid #d69a3d;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
}

.toolButton:hover {
    background: #d08b29;
}

.toolButton.disabled {
    opacity: .55;
}