@use "sass:math";
/* media query mixin */
/* get rid of list formatting */
/* prevent long links from breaking out of container */
/* creates a colored circle with an icon in the middle */
/* formats the placeholder text within an input field */
.flickr-album {
  padding: 3.75rem 5.625rem; }
  @media (max-width: 74.9375rem) {
    .flickr-album {
      padding: 3.75rem; } }
  @media (max-width: 47.9375rem) {
    .flickr-album {
      padding: 1.875rem; } }
  .flickr-album__header {
    display: flex;
    margin-bottom: 3.125rem; }
    @media (max-width: 61.9375rem) {
      .flickr-album__header {
        flex-wrap: wrap; } }
    .flickr-album__header-text {
      flex-shrink: 0; }
      @media (max-width: 47.9375rem) {
        .flickr-album__header-text {
          flex-shrink: 1; } }
      .flickr-album__header-text h1 {
        font-size: 3.75rem;
        margin: 0;
        line-height: 1.2; }
        @media (max-width: 47.9375rem) {
          .flickr-album__header-text h1 {
            font-size: 2.25rem; } }

.flickr-photos {
  display: flex;
  flex-wrap: wrap;
  margin: 3.125rem 0;
  gap: 3%; }
  @media (max-width: 74.9375rem) {
    .flickr-photos {
      gap: 2%; } }
  @media (max-width: 900px) {
    .flickr-photos {
      gap: 4%; } }
  .flickr-photos .flickr-photo {
    width: 31.333333%;
    margin-bottom: 1.875rem; }
    @media (max-width: 900px) {
      .flickr-photos .flickr-photo {
        width: 48%; } }
    @media (max-width: 35.9375rem) {
      .flickr-photos .flickr-photo {
        width: 100%; } }

.flickr-photo-item {
  width: 100%;
  height: 100%;
  background: white;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.07);
  border: solid 1px #e0e0e0;
  border-radius: 0.625rem;
  transition: all 500ms ease; }
  .flickr-photo-item:hover, .flickr-photo-item:focus-visible {
    border: 1px solid #ffcf3e;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25); }
  .flickr-photo-item a {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-decoration: none;
    padding: 1.875rem; }
    .flickr-photo-item a:hover {
      text-decoration: none;
      color: #2b2b2b; }
      .flickr-photo-item a:hover .hover-link {
        text-decoration: underline;
        color: #6c6c6c; }
  .flickr-photo-item__image {
    width: 100%;
    aspect-ratio: 1.5;
    border-radius: 0.625rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
    .flickr-photo-item__image img {
      border-radius: 0.625rem; }
  .flickr-photo-item__content {
    height: 100%;
    display: flex;
    flex-direction: column; }
    .flickr-photo-item__content-title {
      font-size: 1.375rem;
      line-height: 1.4;
      font-weight: bold;
      margin-bottom: 1.25rem; }
      @media (max-width: 61.9375rem) {
        .flickr-photo-item__content-title {
          font-size: 1.25rem; } }
    .flickr-photo-item__content-description {
      font-size: 1.125rem;
      margin-bottom: 1.875rem; }

/*# sourceMappingURL=flickr-album.css.map */
