/* ==========================================================================
   OTHER COMPETITIONS
   ========================================================================== */
.other-competitions {
    padding: 24px;
}

.other-competitions .box-title {
    margin-bottom: 16px;
}

.other-comp-list {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.other-comp-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.15s ease;
}

.other-comp-row:last-child {
    border-bottom: none;
}

.other-comp-row:hover {
    background-color: var(--color-bg-light);
}

.other-comp-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.other-comp-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-comp-name {
    flex-grow: 1;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary-blue);
}

.other-comp-name strong {
    font-weight: 700;
}

.other-comp-chevron {
    width: 18px;
    height: 18px;
    stroke: var(--color-primary-blue);
    flex-shrink: 0;
}

.other-comp-footer-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-body);
}