/**
 * ============================================================
 * SOF Communications Workspace
 * ============================================================
 */


/* ------------------------------------------------------------
 * Workspace
 * ------------------------------------------------------------ */

.sof-communications-workspace {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1500px;
    padding: 0 30px 40px;
    width: 100%;
}


/* ------------------------------------------------------------
 * Workspace Header
 * ------------------------------------------------------------ */

.sof-communications-workspace > .sof-workspace-header {
    margin-bottom: 30px;
}

.sof-communications-workspace > .sof-workspace-header h1 {
    margin: 0 0 12px;
}

.sof-communications-workspace > .sof-workspace-header p {
    line-height: 1.6;
    margin: 0;
}


/* ------------------------------------------------------------
 * Workspace Content
 * ------------------------------------------------------------ */

.sof-communications-workspace > .sof-workspace-content {
    width: 100%;
}


/* ------------------------------------------------------------
 * Communication Action Card
 * ------------------------------------------------------------ */

.sof-communication-action-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
    padding: 28px;
}

.sof-communication-action-card .sof-card-header {
    margin-bottom: 20px;
}

.sof-communication-action-card .sof-card-title {
    margin: 0;
}

.sof-communication-action-card .sof-card-content h3 {
    margin: 0 0 12px;
}

.sof-communication-action-card .sof-card-content p {
    line-height: 1.6;
}

.sof-communication-action-card .sof-button {
    margin-top: 10px;
}

.sof-communication-action-card .sof-action-note {
    font-size: 14px;
    margin: 12px 0 0;
}


/* ------------------------------------------------------------
 * Responsive
 * ------------------------------------------------------------ */

@media screen and (max-width: 640px) {

    .sof-communications-workspace {
        padding-left: 18px;
        padding-right: 18px;
    }

    .sof-communication-action-card {
        border-radius: 10px;
        padding: 20px;
    }
}