@import url("palette.css");

/* box ********************************************/

.publication_box {
	border: 1px solid var(--palette-very-light-gray);
	border-radius: 5px;
	margin-bottom: 5px;
}

.publication_box_award {
	border: 1px solid var(--palette-dark-gray);
	border-radius: 5px;
	margin-bottom: 5px;
	background: var(--palette-highlight);
}

.publication_box_thumbnail {
    align: left;
    float: left;
    width: 110px;
    padding: 10px; /* padding inside border */
}

.publication_box_content {
	float: right;
	width: calc(100% - 110px);
	padding: 10px; /* padding inside border */
}

.publication_box_footer {
	clear: both;
	width: 100%;
}

@media only screen and (max-width: 700px) {
    .publication_box_thumbnail {
        display: none;
    }
    
    .publication_box_content {
	    width: 100%;
    }
}

/* content ********************************************/

.pub_reference {
	padding-bottom: 7px;
}

.pub_reference a#title {
	color: var(--palette-black);
	text-decoration: none;
	font-weight: bold;
}

.pub_reference a#title:hover {
	color: var(--palette-light-gray);
}

.pub_reference a#link {
	color: var(--palette-light-gray);
	text-decoration: none;
}

.pub_reference a#link:hover {
	color: var(--palette-dark-gray);
}

.pub_links {
	float: left;
}

.pub_award {
	color: var(--palette-red);
	float: right;
}
