.learning-tools-page {
    margin-top: 60px;
}

/* Header */
.page-header h2 {
    font-size: 2rem;
    font-weight: 600;
}

.page-header p {
    color: #6c757d;
    font-size: 1rem;
}

/* Card */
.tool-card {
    background: #e6e6e6;
    border-radius: 14px;
    padding: 18px 14px 22px;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card a {
    text-decoration: none;
    color: inherit;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* Image Box */
.image-box {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.image-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Titles */
.card-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.card-subtitle {
    font-size: 0.85rem;
    color: #555;
}

/* Coming Soon Styling */
.coming-soon {
    opacity: 0.7;
    cursor: default;
}

.coming-soon:hover {
    transform: none;
    box-shadow: none;
}
