/* ==========================================================================
   全機能一覧グリッド (Tool Grid) スタイル
   ========================================================================== */
.tool-grid-wrapper {
    /* 背景色を、サイトのボディ色とは少しだけ変える */
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 50px 20px;
}

.tool-grid-section {
    max-width: 1100px; /* メインコンテンツの幅と合わせる */
    margin: 0 auto;
}

.tool-grid-title {
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 24px;
}

.tool-grid {
    display: grid;
    /* 1列の最小幅を200pxとし、自動でカラム数を調整するレスポンシブグリッド */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tool-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #1a73e8;
}

.tool-card-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.tool-card-name {
    font-weight: bold;
}


/* --- ダークモード対応 --- */
.dark-mode .tool-grid-wrapper {
    background-color: #1a1a1a;
    border-top-color: #333;
    border-bottom-color: #333;
}
.dark-mode .tool-card {
    background-color: #252627;
    border-color: #333;
    color: #e0e0e0;
}
.dark-mode .tool-card:hover {
    border-color: #58a6ff;
}