/*
 Theme Name:   NASA STMD
 Theme URI:    
 Author:       Bright Development
 Author URI:   
 Template:     hello-elementor
 Version:      1.1.0
*/ 




/* Supporting Materials */
.material-item-entry-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
}

.material-item-entry-wrapper:not(:last-child) {
    border-bottom: 1px solid #D1D1D1;
}

/* .material-item-group-container {
    border-left: 12px solid;
    padding-bottom: 30px;
}
.material-item-group-container:last-child{
    padding-bottom: 0;
} */

.material-item-group {
    max-width: var(--container-max-width);
    margin: auto;
}

.material-item-entry-wrapper img {
    width: 64px !important;
    border-radius: 50% !important;
    height: 64px !important;
}

.material-item-entry-wrapper h3 {
    font-size: 20px;
    font-family: var(--e-global-typography-primary-font-family);
    font-weight: var(--e-global-typography-primary-font-weight);
    color: var(--e-global-color-text);
    flex: 0 0 80%;
	margin:0px;
}
.material-item-download-wrapper {
    margin-left: auto;
}
.material-item-entries {
    border: 1px solid #D1D1D1;
    border-right: 0;
    border-left: 0;
    width: 100%;
}
.material-item-group h4 {
    margin-bottom: 20px !important;
    font-family: var(--e-global-typography-primary-font-family);
    font-weight: var(--e-global-typography-primary-font-weight);
}

.material-item-group > p{
    max-width: 930px;
}
.material-item-group-container:not(:first-child) .material-item-group{
    padding-top: 40px;
}

.material-item-download-wrapper a {
    display: inline-block;
    text-align: center;
}

.material-item-download-wrapper a span {
    color: #1c67e3;
    font-size: 12px;
    font-family: var(--e-global-typography-secondary-font-family);
    white-space: nowrap;
    display: block;
}
.material-item-group-container:not(:first-child) .material-item-group {
    padding-top: 10px;
}


@media (max-width: 1024px){

    .material-item-entry-wrapper h3 {
        font-size: 18px;
    }

    .material-item-entry-wrapper img {
        max-width: 80px !important;
    }

    .material-item-entry-wrapper p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .material-item-entry-wrapper {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "image . arrow"
            "title title title";
        align-items: center;
        row-gap: 12px;
    }

    .material-item-entry-wrapper img {
        grid-area: image;
    }

    .material-item-entry-wrapper h3 {
        grid-area: title;
    }

    .material-item-download-wrapper {
        grid-area: arrow;
    }
	.material-item-download-wrapper svg {
		width: 32px;
		height: 32px;
	}
	#download-pdf {
		display: flex;
		justify-content: center;
	}
}