/* ── SGW Related Topics Widget ──────────────────────────── */

.sgw-rt-wrap {
    width: 100%;
    background-color: #f5f5f5;
    padding: 48px 40px;
    box-sizing: border-box;
}

.sgw-rt-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 28px 0;
}

/* Grid */
.sgw-rt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 19px 23px !important;
    width: 100%;
}

/* Button */
.sgw-rt-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 20px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 50px;
    text-decoration: none;
    color: #333333;
    font-size: 14px;
    line-height: 1.4;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.sgw-rt-btn:hover {
    background-color: #f0f0f0;
    color: #000000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-decoration: none;
}

.sgw-rt-text {
    flex: 1 1 auto;
}

/* Arrow icon circle */
.sgw-rt-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1.5px solid #737373;
    border-radius: 50%;
    font-size: 16px;
    color: #737373;
    line-height: 1;
    transition: background-color 0.2s, color 0.2s;
}

.sgw-rt-icon svg path{
    stroke: #737373;
}

.sgw-rt-btn:hover .sgw-rt-icon svg path{
    stroke: #333;
}

.sgw-rt-btn:hover .sgw-rt-icon {
    /*background-color: #333;*/
    color: #333;
    border-color: #333;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .sgw-rt-grid {
        grid-template-columns: 1fr !important;
    }

    .sgw-rt-wrap {
        padding: 32px 20px;
    }
}
