/* ========================================
   WRAPPER
======================================== */

.mrhost-webman-wrapper {
    width: 100%;
    display: block;
    font-family: "DM Sans", sans-serif;
}

/* ========================================
   GRID
======================================== */

.mrhost-webman-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

@media (max-width: 1024px) {
    .mrhost-webman-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mrhost-webman-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CARD
======================================== */

.mrhost-webman-item {
    background: #F4F5FF6B;
    border: 1px solid #D5DFFF;
    border-radius: 14px;

    padding: 28px;
    min-height: 200px;

    display: flex;
    flex-direction: column;

    transition: 0.25s ease;
}

.mrhost-webman-item:hover {
    background: #F4F5FF;
    border-color: #7253ED;
    transform: translateY(-2px);
}

/* ========================================
   ICON
======================================== */

.mrhost-webman-icon {
    width: 58px;
    height: 58px;
	transition: 0.25s ease;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #D5DFFF;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;
}

.mrhost-webman-icon i {
    font-size: 26px;
    color: #7253ED;
}

.mrhost-webman-item:hover .mrhost-webman-icon {
    border-color: #7253ED;
}

/* ========================================
   TEXT
======================================== */

.mrhost-webman-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #1D1E20;
}

.mrhost-webman-item p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #333;
}