﻿/*==========================================================
    POS SECTION
==========================================================*/

.pos-section {
    background: linear-gradient(180deg,#F8FBFF 0%,#FFFFFF 100%);
}

.pos-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 55px;
    align-items: flex-start;
    padding: 40px;
    background: #fff;
    border: 1px solid #E8EEF7;
    box-shadow: 0 18px 55px rgba(15,23,42,.08);
}

/*==========================================================
    LEFT
==========================================================*/

.pos-media {
    position: relative;
}

.pos-monitor {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #E8EEF7;
    background: #0F172A;
    box-shadow: 0 20px 60px rgba(15,23,42,.15);
}

    .pos-monitor video {
        display: block;
        aspect-ratio: 16/10;
        object-fit: cover;
    }

/*==========================================================
    RIGHT
==========================================================*/

.pos-tag {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2F6BFF;
}

.pos-content h2 {
    margin: 0 0 18px;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: #0F172A;
}

.pos-description {
    margin: 0 0 17px;
    font-size: 17px;
    line-height: 1.8;
    color: #667085;
}

/*==========================================================
    FEATURES
==========================================================*/

.pos-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px 30px;
    margin-bottom: 15px;
}

    .pos-features div {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        font-weight: 500;
        color: #334155;
    }

    .pos-features i {
        color: #2563EB;
        font-size: 18px;
    }

/*==========================================================
    BUTTONS
==========================================================*/

.pos-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top:35px;
}

    .pos-actions .btn-primary,
    .pos-actions .btn-secondary {
        display: inline-flex;
        gap: 10px;
        padding: 15px 26px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 700;
        transition: .30s;
    }

    .pos-actions .btn-primary {
        background: #2F6BFF;
        color: #fff;
    }

        .pos-actions .btn-primary:hover {
            background: #1E56E6;
        }

    .pos-actions .btn-secondary {
        border: 2px solid #2F6BFF;
        color: #2F6BFF;
        background: #fff;
    }

        .pos-actions .btn-secondary:hover {
            background: #2F6BFF;
            color: #fff;
        }

/*==========================================================
    FEATURE STRIP
==========================================================*/

.pos-bottom-strip {
    background: #fff;
    border: 1px solid #E8EEF7;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: grid;
    grid-template-columns: repeat(8,1fr);
    overflow: hidden;
}

.pos-strip-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18px 12px;
    border-right: 1px solid #EDF2F7;
    transition: .25s;
}

    .pos-strip-item:last-child {
        border-right: none;
    }

    .pos-strip-item:hover {
        background: #F8FBFF;
    }

    .pos-strip-item i {
        font-size: 26px;
        color: #2F6BFF;
        margin-bottom: 10px;
    }

    .pos-strip-item span {
        font-size: 13px;
        font-weight: 600;
        color: #334155;
    }

/*==========================================================
    RESPONSIVE
==========================================================*/

@media (max-width:1200px) {

    .pos-wrapper {
        grid-template-columns: 1fr;
    }

    .pos-features {
        grid-template-columns: 1fr 1fr;
    }

    .pos-bottom-strip {
        grid-template-columns: repeat(4,1fr);
    }
}

@media (max-width:768px) {

    .pos-section {
        padding: 30px 0 50px;
    }

    .pos-wrapper {
        padding: 28px;
        gap: 35px;
    }

    .pos-content h2 {
        font-size: 34px;
    }

    .pos-description {
        font-size: 15px;
    }

    .pos-features {
        grid-template-columns: 1fr;
    }

    .pos-actions {
        flex-direction: column;
    }

        .pos-actions a {
            
        }

    .pos-bottom-strip {
        grid-template-columns: repeat(2,1fr);
    }
}
