.section-content {
    padding-bottom: 16px;
}

/* Cabeceras de secciones */

.section-header {
  	width: 100%;
    box-sizing: border-box;
  	position: relative;
  	gap: 0px;
  	text-align: left;
}
.section-header[name="home-mis-apps"] {
    padding-bottom: 16px;
}
.section-header[type="spaced"] {
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
}
.section-header .title {
  	flex: 1;
  	position: relative;
    color: var(--Colors-Semantics-Text-Primary);
    font-size: 24px;
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 28px;
    
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.section-header .action-text {
    display: none;
  	position: relative;
  	font-size: 14px;
  	line-height: 22px;
  	font-family: var(--font-primary);
  	color: var(--Colors-Semantics-Action-Primary);
    cursor: pointer;
}

@media (min-width: 1100px) {
    .section-header {
        margin-bottom: 0;
    }
    .section-header[name="home-mis-apps"] {
        padding-bottom: 32px;
    }
	.section-header .title {
		font-size: 32px;
		line-height: 32px;
	}
	.section-header .action-text {
		font-size: 14px;
		line-height: 22px;
	}
}
@media (max-width: 1200px) {
    .section-header {
        padding: 0 20px;
    }
}
@media (max-width: 600px) {
    .section-header {
        padding: 0 14px;
    }
}