.attribution {
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  display: block;
}

/* ================= START ===================== */

:root {
  --bg-primary: hsl(30, 38%, 92%);
  --text-primary: hsl(212, 21%, 14%);
  --text-success: hsl(158, 36%, 37%);
  --text-success-dark: hsl(158, 42%, 18%);
  --text-muted: hsl(228, 12%, 48%);
  --text-white: hsl(0, 0%, 100%);
  --border-radius: 10px;

  --mobile-padding: 24px;
  --desktop-padding: 32px;
}

body {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 23px;
  background-color: var(--bg-primary);

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* ================= FONTS ===================== */

.font-overline {
  font-size: 0.75rem;
  font-weight: medium;
  letter-spacing: 5px;
  /* line-height: 12px; */
}

.font-display {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Fraunces", serif;
  line-height: 32px;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-line-through {
  text-decoration: line-through;
}

.text-primary {
  color: var(--text-primary);
}

.text-success {
  color: var(--text-success);
}

.text-secondary {
  color: var(--text-muted);
}

/* ================= PRODUCT ===================== */

.product-card {
  display: flex;
  flex-direction: column;
  background-color: var(--text-white);
  border-radius: var(--border-radius);
  max-width: 21.4375rem;
}


.product-card__image img {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  padding: var(--mobile-padding);
  gap: var(--mobile-padding)
}

.product-card__tag {
  padding-bottom: 16px;
}

.product-card__pricing {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ================= BUTTON ===================== */

.btn {
  border: 0;
  border-radius: 8px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  color: white;
  background-color: var(--text-success);
}

button:hover {
  background-color: var(--text-success-dark);
}

/* ================= MEDIA QUERY ===================== */

@media only screen and (min-width: 1440px) {
  .product-card {
    flex-direction: row;
    max-width: 37.5rem;
  }

  .product-card__body {
    padding: var(--desktop-padding);
    gap: var(--desktop-padding);
  }

  .product-card__image img {
    border-top-right-radius: 0;
    border-bottom-left-radius: var(--border-radius);
    height: 100%;
  }
}