/* =========================
   SKILLS SECTION
========================= */
.skill-group {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #eaeaea;
    background: #ffffff;
    margin-bottom: 5px;
    transition: all 0.25s ease;
}


/* Skill group hover */
.skill-group:hover {
    transform: translateY(-3px);
    border-color: #0099ff;
    box-shadow: 0 10px 26px rgba(0, 153, 255, 0.15);
}

/* Skill header */
.skill-group h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 15px;
}

.skill-group h3 .icon {
    width: 18px;
    height: 18px;
}

/* Skill tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 15px;
    border: 1px solid #ddd;
    background: #ffffff;
    transition: all 0.2s ease;
}

.tags span img {
    width: 14px;
    height: 14px;
    opacity: 0.75;
}

/* Tag hover */
.tags span:hover {
    transform: translateY(-2px);
    border-color: #0099ff;
    box-shadow: 0 6px 16px rgba(0, 153, 255, 0.15);
}

.tags span:hover img {
    opacity: 1;
}

/* =========================
   PROBLEM SOLVING (SKILL-LIKE, REFINED)
========================= */
.problem-group {
    padding: 14px;
    border-radius: 12px;
    background: #fff5ee;
    border: 1px solid #ffd9bf;
    margin-bottom: 12px;
    transition: all 0.25s ease;
}

/* Header */
.problem-group h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    color: #222;
}

/* Bullet points */
.problem-points {
    padding-left: 18px;
    font-size: 13px;
    color: #444;
}

.problem-points li {
    margin-bottom: 6px;
    line-height: 1.55;
}

/* =========================
   LINKS (MATCH SKILL TAGS)
========================= */
.problem-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.problem-links a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid #ddd;
    background: #ffffff;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.problem-links img {
    width: 14px;
    height: 14px;
    opacity: 0.75;
}

/* Hover same behavior as skill tags */
.problem-links a:hover {
    transform: translateY(-2px);
    border-color: #0099ff;
    box-shadow: 0 6px 16px rgba(0, 153, 255, 0.15);
    color: #0099ff;
}

.problem-links a:hover img {
    opacity: 1;
}