/* ============================================================
   TECH LINK CARDS — Professional list style
   Icon badge | Name + URL | Chevron arrow
   ============================================================ */

/* Grid wrapper */
.tech-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    width: 100%;
    padding: 0.25rem 0;
}

/* Individual card */
.tech-link-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
    cursor: default;
    min-width: 0;
}

.tech-link-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Colored icon badge on the left */
.tech-link-card-badge {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
}

/* Text block — name + url */
.tech-link-card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tech-link-card-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.tech-link-card-url {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

/* Chevron hidden */
.tech-link-card-chevron {
    display: none;
}

.tech-link-card:hover .tech-link-card-chevron {
    color: rgba(255, 255, 255, 0.6);
    transform: translateX(2px);
}

/* Responsive — 2 columns on narrow panels */
@media (max-width: 1200px) {
    .tech-link-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .tech-link-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .tech-link-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}