body.single-resource .container-wrap {
    padding-top: 0px !important;
}

body.single-resource .container-wrap .divider-small-border{
	background-color: #5A697A !important;
	margin-top: 30px !important;
	margin-bottom: 30px !important;
}

.resource-item {
    display: flex;
    align-items: center; 
    gap: 10px;
    margin-bottom: 15px; 
}

.resource-item:last-child {
    margin-bottom: 0; 
}

.resource-svg-wrapper {
    display: flex; 
    align-items: center;
    justify-content: center; 
}

.resource-svg-wrapper img {
	margin-bottom: 0px !important;
}
.resource-author-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.author-thumbnail-wrapper img {
    width: 72px; 
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
	margin-bottom: 0px !important;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.author-designation {
    font-size: 20px;
	line-height: 32px;
    color: rgba(90, 105, 122, 0.6);
    margin: 0;
}

.resource-video-wrapper {
    width: 100% !important;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.resource-video-wrapper iframe {
    width: 100%;
    height: 100%;
}

.resource-thumbnail {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

.resource-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    aspect-ratio: 1 / 1;
    background: var(--nectar-accent-color);
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.3sease;
}

.resource-play-button:hover {
    opacity: 1; 
}

.resource-play-button img {
	margin-bottom: 0px !important;
}

.pdf-buttons {
    display: flex;
    gap: 10px;
}

.download-pdf,
.view-pdf {
	padding: 16px 0px;
}

.download-pdf .nectar-cta .link_wrap .link_text {
    display: inline-flex;
    vertical-align: middle;
}

.download-pdf .download-icon {
	margin-bottom: 0px !important;
    vertical-align: middle;
}
@media (max-width: 767px) {
    .pdf-buttons {
        flex-direction: column;
        gap: 25px; 
    }
}