@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.armas-widget {
    font-family: 'Poppins', sans-serif;
    max-width: 1450px;
    margin: 0 auto;
    padding: 16px 24px 24px;
    box-sizing: border-box;
}

/* ── HEADER ── */
.armas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    border: 1px solid #eee;
    box-sizing: border-box;
}

.armas-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.armas-logo-icon {
    display: block;
    flex-shrink: 0;
    width: 17px;
    height: 17px;
}

.armas-label {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.armas-stars {
    display: inline-flex;
    gap: 1px;
    align-items: center;
    margin: 0 2px;
}

.armas-rating {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.armas-pipe {
    color: #ccc;
    font-size: 15px;
    margin: 0 2px;
}

.armas-total {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}
.armas-total:hover { text-decoration: underline; }

.armas-write-btn {
    display: inline-block;
    padding: 9px 20px;
    border: 1.5px solid #bbb;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    white-space: nowrap;
    background: #fff;
    transition: border-color .2s, background .2s;
}
.armas-write-btn:hover {
    border-color: #555;
    background: #f8f8f8;
    color: #111;
    text-decoration: none;
}

/* ── SLIDER ── */
.armas-slider-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.armas-viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
    padding: 8px 4px 14px;
    margin: -8px -4px -14px;
    box-sizing: content-box;
}

.armas-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ── CARD ── */
.armas-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    border: 1px solid #f0f0f0;
    min-width: 0;
    box-sizing: border-box;
}

.armas-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.armas-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    overflow: hidden;
}

.armas-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.armas-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.armas-meta strong {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.armas-meta span {
    font-size: 12px;
    color: #999;
}

.armas-g { flex-shrink: 0; }

.armas-card-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.armas-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.armas-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.armas-text.armas-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.armas-text.armas-expanded {
    display: block;
}

.armas-readmore {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    text-align: left;
}
.armas-readmore:hover { color: #333; }

/* ── ARROWS ── */
.armas-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #333;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background .2s, border-color .2s;
    padding: 0;
}
.armas-arrow:hover { background: #333; }
.armas-arrow:hover svg path { stroke: #fff; }

/* ── DOTS (mobile) ── */
.armas-dots {
    display: none;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
}

.armas-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.armas-dot.active {
    background: #333;
    transform: scale(1.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .armas-arrow { display: none; }
    .armas-dots { display: flex; }
    .armas-header { flex-direction: column; align-items: flex-start; }
    .armas-widget { padding: 12px 16px 20px; }
}
